/usr/share/perl5/Geo/Gpx.pm is in libgeo-gpx-perl 0.26-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 | package Geo::Gpx;
use warnings;
use strict;
use Carp;
use DateTime::Format::ISO8601;
use DateTime;
use HTML::Entities qw( encode_entities encode_entities_numeric );
use Scalar::Util qw( blessed );
use Time::Local;
use XML::Descent;
=head1 NAME
Geo::Gpx - Create and parse GPX files.
=head1 VERSION
This document describes Geo::Gpx version 0.26
=head1 SYNOPSIS
# Version 0.10 compatibility
use Geo::Gpx;
my $gpx = Geo::Gpx->new( @waypoints );
my $xml = $gpx->xml;
# New API, generate GPX
my $gpx = Geo::Gpx->new();
$gpx->waypoints( \@wpt );
my $xml = $gpx->xml( '1.0' );
# Parse GPX
my $gpx = Geo::Gpx->new( xml => $xml );
my $waypoints = $gpx->waypoints();
my $tracks = $gpx->tracks();
# Parse GPX from open file
my $gpx = Geo::Gpx->new( input => $fh );
my $waypoints = $gpx->waypoints();
my $tracks = $gpx->tracks();
=head1 DESCRIPTION
The original goal of this module was to produce GPX/XML files which were
parseable by both GPX Spinner and EasyGPS. As of version 0.13 it has
been extended to support general parsing and generation of GPX data. GPX
1.0 and 1.1 are supported.
=cut
use vars qw ($VERSION);
$VERSION = '0.26';
# Values that are encoded as attributes
my %AS_ATTR = (
wpt => qr{^lat|lon$},
rtept => qr{^lat|lon$},
trkpt => qr{^lat|lon$},
email => qr{^id|domain$},
link => qr{^href$}
);
my %KEY_ORDER = (
wpt => [
qw(
ele time magvar geoidheight name cmt desc src link sym type fix
sat hdop vdop pdop ageofdgpsdata dgpsid extensions
)
],
);
# Map hash keys to GPX names
my %XMLMAP = (
waypoints => { waypoints => 'wpt' },
routes => {
routes => 'rte',
points => 'rtept'
},
tracks => {
tracks => 'trk',
segments => 'trkseg',
points => 'trkpt'
}
);
my @META;
my @ATTR;
BEGIN {
@META = qw( name desc author time keywords copyright link );
@ATTR = qw( waypoints tracks routes version );
# Generate accessors
for my $attr ( @META, @ATTR ) {
no strict 'refs';
*{ __PACKAGE__ . '::' . $attr } = sub {
my $self = shift;
$self->{$attr} = shift if @_;
return $self->{$attr};
};
}
}
sub _parse_time {
my ( $self, $str ) = @_;
my $dt = DateTime::Format::ISO8601->parse_datetime( $str );
return $self->{use_datetime} ? $dt : $dt->epoch;
}
sub _format_time {
my ( $self, $tm, $legacy ) = @_;
unless ( blessed $tm && $tm->can( 'strftime' ) ) {
return $self->_format_time(
DateTime->from_epoch(
epoch => $tm,
time_zone => 'UTC'
),
$legacy
);
}
my $ts = $tm->strftime(
$legacy
? '%Y-%m-%dT%H:%M:%S.%7N%z'
: '%Y-%m-%dT%H:%M:%S%z'
);
$ts =~ s/(\d{2})$/:$1/;
return $ts;
}
# For backwards compatibility
sub _init_legacy {
my $self = shift;
$self->{keywords} = [qw(cache geocache groundspeak)];
$self->{author} = {
name => 'Groundspeak',
email => {
id => 'contact',
domain => 'groundspeak.com'
}
};
$self->{desc} = 'GPX file generated by Geo::Gpx';
$self->{schema} = [
qw(
http://www.groundspeak.com/cache/1/0
http://www.groundspeak.com/cache/1/0/cache.xsd
)
];
require Geo::Cache;
$self->{handler} = {
create => sub {
return Geo::Cache->new( @_ );
},
time => sub {
return $self->_format_time( $_[0], 1 );
},
};
}
sub _init_shiny_new {
my ( $self, $args ) = @_;
$self->{use_datetime} = $args->{use_datetime} || 0;
$self->{schema} = [];
$self->{handler} = {
create => sub {
return {@_};
},
time => sub {
return $self->_format_time( $_[0], 0 );
},
};
}
=head1 INTERFACE
=head2 C<new( { args } )>
The original purpose of C<Geo::Gpx> was to allow an array of
L<Geo::Cache> objects to be converted into a GPX file. This behaviour is
maintained by this release:
use Geo::Gpx;
my $gpx = Geo::Gpx->new( @waypoints );
my $xml = $gpx->xml;
New applications can use C <Geo::Gpx> to parse a GPX file :
my $gpx = Geo::Gpx->new( xml => $gpx_document );
or from an open filehandle :
my $gpx = Geo::Gpx->new( input => $fh );
or can create an empty container to which waypoints, routes and tracks
can then be added:
my $gpx = Geo::Gpx->new();
$gpx->waypoints( \@wpt );
The following additional options can be specified:
=over
=item C< use_datetime >
If true time values in parsed GPX will be L<DateTime> objects rather
than epoch times.
=back
=cut
sub new {
my ( $class, @args ) = @_;
my $self = bless( {}, $class );
# CORE::time because we have our own time method.
$self->{time} = CORE::time();
# Has to handle same calling convention as previous
# version.
if ( blessed $args[0] && $args[0]->isa( 'Geo::Cache' ) ) {
$self->_init_legacy();
$self->{waypoints} = \@args;
}
elsif ( @args % 2 == 0 ) {
my %args = @args;
$self->_init_shiny_new( \%args );
if ( exists $args{input} ) {
$self->_parse( $args{input} );
}
elsif ( exists $args{xml} ) {
$self->_parse( \$args{xml} );
}
}
else {
croak( "Invalid arguments" );
}
return $self;
}
# Not a method
sub _trim {
my $str = shift;
$str =~ s/^\s+//;
$str =~ s/\s+$//;
$str =~ s/\s+/ /g;
return $str;
}
sub _parse {
my $self = shift;
my $source = shift;
my $p = XML::Descent->new( { Input => $source } );
$p->on(
gpx => sub {
my ( $elem, $attr ) = @_;
$p->context( $self );
my $version = $self->{version} = ( $attr->{version} || '1.0' );
my $parse_deep = sub {
my ( $elem, $attr ) = @_;
my $ob = $attr; # Get attributes
$p->context( $ob );
$p->walk();
return $ob;
};
# Parse a point
my $parse_point = sub {
my ( $elem, $attr ) = @_;
my $pt = $parse_deep->( $elem, $attr );
return $self->{handler}->{create}->( %{$pt} );
};
$p->on(
'*' => sub {
my ( $elem, $attr, $ctx ) = @_;
$ctx->{$elem} = _trim( $p->text() );
},
time => sub {
my ( $elem, $attr, $ctx ) = @_;
my $tm = $self->_parse_time( _trim( $p->text() ) );
$ctx->{$elem} = $tm if defined $tm;
}
);
if ( _cmp_ver( $version, '1.1' ) >= 0 ) {
# Handle 1.1 metadata
$p->on(
metadata => sub {
$p->walk();
},
[ 'link', 'email', 'author' ] => sub {
my ( $elem, $attr, $ctx ) = @_;
$ctx->{$elem} = $parse_deep->( $elem, $attr );
}
);
}
else {
# Handle 1.0 metadata
$p->on(
url => sub {
my ( $elem, $attr, $ctx ) = @_;
$ctx->{link}->{href} = _trim( $p->text() );
},
urlname => sub {
my ( $elem, $attr, $ctx ) = @_;
$ctx->{link}->{text} = _trim( $p->text() );
},
author => sub {
my ( $elem, $attr, $ctx ) = @_;
$ctx->{author}->{name} = _trim( $p->text() );
},
email => sub {
my ( $elem, $attr, $ctx ) = @_;
my $em = _trim( $p->text() );
if ( $em =~ m{^(.+)\@(.+)$} ) {
$ctx->{author}->{email} = {
id => $1,
domain => $2
};
}
}
);
}
$p->on(
bounds => sub {
my ( $elem, $attr, $ctx ) = @_;
$ctx->{$elem} = $parse_deep->( $elem, $attr );
},
keywords => sub {
my ( $elem, $attr ) = @_;
$self->{keywords}
= [ map { _trim( $_ ) } split( /,/, $p->text() ) ];
},
wpt => sub {
my ( $elem, $attr ) = @_;
push @{ $self->{waypoints} }, $parse_point->( $elem, $attr );
},
[ 'trkpt', 'rtept' ] => sub {
my ( $elem, $attr, $ctx ) = @_;
push @{ $ctx->{points} }, $parse_point->( $elem, $attr );
},
rte => sub {
my ( $elem, $attr ) = @_;
my $rt = $parse_deep->( $elem, $attr );
push @{ $self->{routes} }, $rt;
},
trk => sub {
my ( $elem, $attr ) = @_;
my $tk = {};
$p->context( $tk );
$p->on(
trkseg => sub {
my ( $elem, $attr ) = @_;
my $seg = $parse_deep->( $elem, $attr );
push @{ $tk->{segments} }, $seg;
}
);
$p->walk();
push @{ $self->{tracks} }, $tk;
}
);
$p->walk();
}
);
$p->walk();
}
=head2 C<add_waypoint( waypoint ... )>
Add one or more waypoints. Each waypoint must be a reference to a
hash. Each waypoint must include the keys C<lat> and C<lon> and may
include others:
my $wpt = {
lat => 54.786989,
lon => -2.344214,
ele => 512,
time => 1164488503,
magvar => 0,
geoidheight => 0,
name => 'My house & home',
cmt => 'Where I live',
desc => '<<Chez moi>>',
src => 'Testing',
link => {
href => 'http://hexten.net/',
text => 'Hexten',
type => 'Blah'
},
sym => 'pin',
type => 'unknown',
fix => 'dgps',
sat => 3,
hdop => 10,
vdop => 10,
pdop => 10,
ageofdgpsdata => 45,
dgpsid => 247
};
$gpx->add_waypoint( $wpt );
Time values may either be an epoch offset or a L<DateTime>. If you wish
to specify the timezone use a L<DateTime>.
=cut
sub add_waypoint {
my $self = shift;
for my $wpt ( @_ ) {
eval { keys %$wpt };
croak "waypoint argument must be a hash reference"
if $@;
croak "'lat' and 'lon' keys are mandatory in waypoint hash"
unless exists $wpt->{lon} && exists $wpt->{lat};
push @{ $self->{waypoints} }, $wpt;
}
}
# Not a method
sub _iterate_points {
my $pts = shift || []; # array ref
unless ( defined $pts ) {
return sub {
return;
};
}
my $max = scalar( @{$pts} );
my $pos = 0;
return sub {
return if $pos >= $max;
return $pts->[ $pos++ ];
};
}
# Not a method
sub _iterate_iterators {
my @its = @_;
return sub {
for ( ;; ) {
return undef unless @its;
my $next = $its[0]->();
return $next if defined $next;
shift @its;
}
}
}
=head2 C<iterate_waypoints()>
Get an iterator that visits all the waypoints in a C<Geo::Gpx>.
=cut
sub iterate_waypoints {
my $self = shift;
return _iterate_points( $self->{waypoints} );
}
=head2 C<iterate_routepoints()>
Get an iterator that visits all the routepoints in a C<Geo::Gpx>.
=cut
sub iterate_routepoints {
my $self = shift;
my @iter = ();
if ( exists( $self->{routes} ) ) {
for my $rte ( @{ $self->{routes} } ) {
push @iter, _iterate_points( $rte->{points} );
}
}
return _iterate_iterators( @iter );
}
=head2 C<iterate_trackpoints()>
Get an iterator that visits all the trackpoints in a C<Geo::Gpx>.
=cut
sub iterate_trackpoints {
my $self = shift;
my @iter = ();
if ( exists( $self->{tracks} ) ) {
for my $trk ( @{ $self->{tracks} } ) {
if ( exists( $trk->{segments} ) ) {
for my $seg ( @{ $trk->{segments} } ) {
push @iter, _iterate_points( $seg->{points} );
}
}
}
}
return _iterate_iterators( @iter );
}
=head2 C<iterate_points()>
Get an iterator that visits all the points in a C<Geo::Gpx>. For example
my $iter = $gpx->iterate_points();
while ( my $pt = $iter->() ) {
print "Point: ", join( ', ', $pt->{lat}, $pt->{lon} ), "\n";
}
=cut
sub iterate_points {
my $self = shift;
return _iterate_iterators(
$self->iterate_waypoints(),
$self->iterate_routepoints(),
$self->iterate_trackpoints()
);
}
=head2 C<bounds( [ $iterator ] )>
Compute the bounding box of all the points in a C<Geo::Gpx> returning
the result as a hash reference. For example:
my $gpx = Geo::Gpx->new( xml => $some_xml );
my $bounds = $gpx->bounds();
returns a structure like this:
$bounds = {
minlat => 57.120939,
minlon => -2.9839832,
maxlat => 57.781729,
maxlon => -1.230902
};
C<$iterator> defaults to C<$self-E<gt>iterate_points>.
=cut
sub bounds {
my ( $self, $iter ) = @_;
$iter ||= $self->iterate_points;
my $bounds = {};
while ( my $pt = $iter->() ) {
$bounds->{minlat} = $pt->{lat}
if !defined $bounds->{minlat} || $pt->{lat} < $bounds->{minlat};
$bounds->{maxlat} = $pt->{lat}
if !defined $bounds->{maxlat} || $pt->{lat} > $bounds->{maxlat};
$bounds->{minlon} = $pt->{lon}
if !defined $bounds->{minlon} || $pt->{lon} < $bounds->{minlon};
$bounds->{maxlon} = $pt->{lon}
if !defined $bounds->{maxlon} || $pt->{lon} > $bounds->{maxlon};
}
return $bounds;
}
sub _enc {
return encode_entities_numeric( $_[0] );
}
sub _tag {
my $name = shift;
my $attr = shift || {};
my @tag = ( '<', $name );
# Sort keys so the tests can depend on hash output order
for my $n ( sort keys %{$attr} ) {
my $v = $attr->{$n};
push @tag, ' ', $n, '="', _enc( $v ), '"';
}
if ( @_ ) {
push @tag, '>', @_, '</', $name, ">\n";
}
else {
push @tag, " />\n";
}
return join( '', @tag );
}
sub _xml {
my $self = shift;
my $name = shift;
my $value = shift;
my $name_map = shift || {};
my $tag = $name_map->{$name} || $name;
if ( blessed $value && $value->can( 'xml' ) ) {
# Handles legacy Gpx::Cache objects that can
# render themselves. Note that Gpx::Cache->xml
# adds the <wpt></wpt> wrapper - so this won't
# work correctly for trkpt and rtept
return $value->xml( $name );
}
elsif ( defined( my $enc = $self->{encoder}->{$name} ) ) {
return $enc->( $name, $value );
}
elsif ( ref $value eq 'HASH' ) {
my $attr = {};
my @cont = ( "\n" );
my $as_attr = $AS_ATTR{$name};
# Shallow copy so we can delete keys as we output them
my %v = %{$value};
for my $k ( @{ $KEY_ORDER{$name} || [] }, sort keys %v ) {
if ( defined( my $vv = delete $v{$k} ) ) {
if ( defined $as_attr && $k =~ $as_attr ) {
$attr->{$k} = $vv;
}
else {
push @cont, $self->_xml( $k, $vv, $name_map );
}
}
}
return _tag( $tag, $attr, @cont );
}
elsif ( ref $value eq 'ARRAY' ) {
return join '',
map { $self->_xml( $tag, $_, $name_map ) } @{$value};
}
else {
return _tag( $tag, {}, _enc( $value ) );
}
}
sub _cmp_ver {
my ( $v1, $v2 ) = @_;
my @v1 = split( /[.]/, $v1 );
my @v2 = split( /[.]/, $v2 );
while ( @v1 && @v2 ) {
my $cmp = ( shift @v1 <=> shift @v2 );
return $cmp if $cmp;
}
return @v1 <=> @v2;
}
=head2 C<xml( [ $version ] )>
Generate GPX XML.
my $gpx10 = $gpx->xml( '1.0' );
my $gpx11 = $gpx->xml( '1.1' );
If the version is omitted it defaults to the value of the C<version>
attibute. Parsing a GPX document sets the version. If the C<version>
attribute is unset defaults to 1.0.
C<Geo::Gpx> version 0.10 used L<Geo::Cache> to render each of the
points. L<Geo::Cache> generates a number of hardwired values to suit the
original application of that module which aren't appropriate for general
purpose GPX manipulation. Legacy mode is triggered by passing a list of
L<Geo::Cache> points to the constructor; this should probably be avoided
for new applications.
=cut
sub xml {
my $self = shift;
my $version = shift || $self->{version} || '1.0';
my @ret = ();
push @ret, qq{<?xml version="1.0" encoding="utf-8"?>\n};
$self->{encoder} = {
time => sub {
my ( $n, $v ) = @_;
return _tag( $n, {}, _enc( $self->{handler}->{time}->( $v ) ) );
},
keywords => sub {
my ( $n, $v ) = @_;
return _tag( $n, {}, _enc( join( ', ', @{$v} ) ) );
}
};
# Limit to the latest version we know about
if ( _cmp_ver( $version, '1.1' ) >= 0 ) {
$version = '1.1';
}
else {
# Modify encoder
$self->{encoder}->{link} = sub {
my ( $n, $v ) = @_;
my @v = ();
push @v, $self->_xml( 'url', $v->{href} )
if exists( $v->{href} );
push @v, $self->_xml( 'urlname', $v->{text} )
if exists( $v->{text} );
return join( '', @v );
};
$self->{encoder}->{email} = sub {
my ( $n, $v ) = @_;
if ( exists( $v->{id} ) && exists( $v->{domain} ) ) {
return _tag( 'email', {},
_enc( join( '@', $v->{id}, $v->{domain} ) ) );
}
else {
return '';
}
};
$self->{encoder}->{author} = sub {
my ( $n, $v ) = @_;
my @v = ();
push @v, _tag( 'author', {}, _enc( $v->{name} ) )
if exists( $v->{name} );
push @v, $self->_xml( 'email', $v->{email} )
if exists( $v->{email} );
return join( '', @v );
};
}
# Turn version into path element
( my $vpath = $version ) =~ s{[.]}{/}g;
my $ns = "http://www.topografix.com/GPX/$vpath";
my $schema = join( ' ', $ns, "$ns/gpx.xsd", @{ $self->{schema} } );
push @ret, qq{<gpx xmlns:xsd="http://www.w3.org/2001/XMLSchema" },
qq{xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" },
qq{version="$version" creator="Geo::Gpx" },
qq{xsi:schemaLocation="$schema" }, qq{xmlns="$ns">\n};
my @meta = ();
for my $fld ( @META ) {
if ( exists( $self->{$fld} ) ) {
push @meta, $self->_xml( $fld, $self->{$fld} );
}
}
my $bounds = $self->bounds( $self->iterate_points() );
if ( %{$bounds} ) {
push @meta, _tag( 'bounds', $bounds );
}
# Version 1.1 nests metadata in a metadata tag
if ( _cmp_ver( $version, '1.1' ) >= 0 ) {
push @ret, _tag( 'metadata', {}, "\n", @meta );
}
else {
push @ret, @meta;
}
for my $k ( sort keys %XMLMAP ) {
if ( exists( $self->{$k} ) ) {
push @ret, $self->_xml( $k, $self->{$k}, $XMLMAP{$k} );
}
}
push @ret, qq{</gpx>\n};
return join( '', @ret );
}
=head2 C<TO_JSON>
For compatibility with L<JSON> modules. Converts this object to a hash
with keys that correspond to the above methods. Generated ala:
my %json = map { $_ => $self->$_ }
qw(name desc author keywords copyright
time link waypoints tracks routes version );
$json{bounds} = $self->bounds( $iter );
With one difference: the keys will only be set if they are defined.
=cut
sub TO_JSON {
my $self = shift;
my %json; #= map {$_ => $self->$_} ...
for my $key ( @META, @ATTR ) {
my $val = $self->$key;
$json{$key} = $val if defined $val;
}
if ( my $bounds = $self->bounds ) {
$json{bounds} = $self->bounds;
}
return \%json;
}
#### Legacy methods from 0.10
=head2 C<gpx>
Synonym for C<xml()>. Provided for compatibility with version 0.10.
=cut
sub gpx {
my $self = shift;
return $self->xml( @_ );
}
=head2 C<loc>
Provided for compatibility with version 0.10.
=cut
sub loc {
my $self = shift;
my @ret = ();
push @ret, qq{<?xml version="1.0" encoding="ISO-8859-1"?>\n};
push @ret, qq{<loc version="1.0" src="Groundspeak">\n};
if ( exists( $self->{waypoints} ) ) {
for my $wpt ( @{ $self->{waypoints} } ) {
push @ret, $wpt->loc();
}
}
push @ret, qq{</loc>\n};
return join( '', @ret );
}
=head2 C<gpsdrive>
Provided for compatibility with version 0.10.
=cut
sub gpsdrive {
my $self = shift;
my @ret = ();
if ( exists( $self->{waypoints} ) ) {
for my $wpt ( @{ $self->{waypoints} } ) {
push @ret, $wpt->gpsdrive();
}
}
return join( '', @ret );
}
1;
__END__
=head2 C<name( [ $newname ] )>
Accessor for the <name> element of a GPX. To get the name:
my $name = $gpx->name();
and to set it:
$gpx->name( 'My big adventure' );
=head2 C<desc( [ $newdesc ] )>
Accessor for the <desc> element of a GPX. To get the the description:
my $desc = $gpx->desc();
and to set it:
$gpx->desc('Got lost, wandered around for ages, got cold, got hungry.');
=head2 C<author( [ $newauthor ] )>
Accessor for the author structure of a GPX. The author information is stored
in a hash that reflects the structure of a GPX 1.1 document:
my $author = $gpx->author();
$author = {
link => {
text => 'Hexten',
href => 'http://hexten.net/'
},
email => {
domain => 'hexten.net',
id => 'andy'
},
name => 'Andy Armstrong'
},
When setting the author data a similar structure must be supplied:
$gpx->author({
name => 'Me!'
});
The bizarre encoding of email addresses as id and domain is a
feature of GPX.
=head2 C<time( [ $newtime ] )>
Accessor for the <time> element of a GPX. The time is converted to a
Unix epoch time when a GPX document is parsed unless the C<use_datetime>
option is specified in which case times will be represented as
L<DateTime> objects.
When setting the time you may supply either an epoch time or a
L<DateTime> object.
=head2 C<keywords( [ $newkeywords ] )>
Access for the <keywords> element of a GPX. Keywords are stored as an
array reference:
$gpx->keywords(['bleak', 'cold', 'scary']);
my $k = $gpx->keywords();
print join(', ', @{$k}), "\n";
prints
bleak, cold, scary
=head2 C<copyright( [ $newcopyright ] )>
Access for the <copyright> element of a GPX.
$gpx->copyright('(c) You Know Who');
print $gpx->copyright(), "\n";
prints
You Know Who
=head2 C<link>
Accessor for the <link> element of a GPX. Links are stored in a hash
like this:
$link = {
'text' => 'Hexten',
'href' => 'http://hexten.net/'
};
For example:
$gpx->link({ href => 'http://google.com/', text => 'Google' });
=head2 C<waypoints( [ $newwaypoints ] )>
Accessor for the waypoints array of a GPX. Each waypoint is a hash
(which may also be a L<Geo::Cache> instance in legacy mode):
my $wpt = {
# All standard GPX fields
lat => 54.786989,
lon => -2.344214,
ele => 512,
time => 1164488503,
magvar => 0,
geoidheight => 0,
name => 'My house & home',
cmt => 'Where I live',
desc => '<<Chez moi>>',
src => 'Testing',
link => {
href => 'http://hexten.net/',
text => 'Hexten',
type => 'Blah'
},
sym => 'pin',
type => 'unknown',
fix => 'dgps',
sat => 3,
hdop => 10,
vdop => 10,
pdop => 10,
ageofdgpsdata => 45,
dgpsid => 247
};
All fields apart from C<lat> and C<lon> are optional. See the GPX
specification for an explanation of the fields. The waypoints array is
an anonymous array of such points:
$gpx->waypoints([ { lat => 57.0, lon => -2 },
{ lat => 57.2, lon => -2.1 } ]);
=head2 C<routes( [ $newroutes ] )>
Accessor for the routes array. The routes array is an array of hashes
like this:
my $routes = [
{
'name' => 'Route 1'
'points' => [
{
'lat' => '54.3286193447719',
'name' => 'WPT1',
'lon' => '-2.38972155527137'
},
{
'lat' => '54.6634365629388',
'name' => 'WPT2',
'lon' => '-2.55373552512617'
},
{
'lat' => '54.7289259665049',
'name' => 'WPT3',
'lon' => '-3.05196861273443'
}
],
},
{
'name' => 'Route 2'
'points' => [
{
'lat' => '54.4165154835049',
'name' => 'WPT4',
'lon' => '-2.56153453279676'
},
{
'lat' => '54.6670126167344',
'name' => 'WPT5',
'lon' => '-2.69526089464403'
}
],
}
];
$gpx->routes($routes);
Each of the points in a route may have any of the atttibutes that are
legal for a waypoint.
=head2 C<tracks( [ $newtracks ] )>
Accessor for the tracks array. The tracks array is an array of hashes
like this:
my $tracks = [
{
'name' => 'Track 1',
'segments' => [
{
'points' => [
{
'lat' => '54.5182217145253',
'lon' => '-2.62191579018834'
},
{
'lat' => '54.1507759448355',
'lon' => '-3.05774931478646'
},
{
'lat' => '54.6016296784874',
'lon' => '-3.40418920968631'
}
]
},
{
'points' => [
{
'lat' => '54.6862790450185',
'lon' => '-3.68760108982739'
}
]
}
]
},
{
'name' => 'Track 2',
'segments' => [
{
'points' => [
{
'lat' => '54.9927807628549',
'lon' => '-4.04712811256436'
},
{
'lat' => '55.1148395198045',
'lon' => '-4.33623533555793'
},
{
'lat' => '54.6214174046189',
'lon' => '-4.26293674042878'
},
{
'lat' => '55.0540816059084',
'lon' => '-4.42261020671926'
},
{
'lat' => '55.4451622411372',
'lon' => '-4.32873765338'
}
]
}
]
}
];
=head2 C<version( [ $newversion ] )>
Accessor for the schema version of a GPX document. Versions 1.0 and 1.1
are supported.
print $gpx->version();
prints
1.0
=head1 DIAGNOSTICS
=over
=item C<< Invalid arguments >>
Invalid arguments passed to C<new()>.
=item C<< Undefined accessor method: %s >>
The various accessor methods are implemented as an AUTOLOAD handler.
This error is thrown if an attempt is made to call an accessor other
than C<name>, C<desc>, C<author>, C<time>, C<keywords>, C<copyright>,
C<link>, C<waypoints>, C<tracks>, C<routes> or C<version>.
=back
=head1 DEPENDENCIES
L<DateTime::Format::ISO8601>,
L<DateTime>,
L<HTML::Entities>,
L<Scalar::Util>,
L<Time::Local>,
L<XML::Descent> and optionally L<Geo::Cache>
=head1 INCOMPATIBILITIES
None reported.
=head1 SEE ALSO
L<Geo::Cache>, L<JSON>
=head1 BUGS AND LIMITATIONS
No bugs have been reported.
Please report any bugs or feature requests to
C<bug-geo-gpx@rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org>.
=head1 AUTHOR
Originally by Rich Bowen C<< <rbowen@rcbowen.com> >>.
This version by Andy Armstrong C<< <andy@hexten.net> >>.
=head1 LICENCE AND COPYRIGHT
Copyright (c) 2007-2009, Andy Armstrong C<< <andy@hexten.net> >>. All
rights reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See L<perlartistic>.
=head1 DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
NECESSARY SERVICING, REPAIR, OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE
LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR
THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER
SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
=cut
|