3 #=======================================================================
7 # ©opyleft 2002– Øyvind A. Holm <sunny@sunbase.org>
8 # License: GNU General Public License, see end of file for legal stuff.
9 #=======================================================================
18 our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
21 push(@main::version_array
, $rcs_id);
22 $VERSION = ($rcs_id =~ / (\d+) /, $1);
25 @EXPORT = qw(&trackpoint);
33 # Receive a hash and return a trackpoint as a string {{{
36 defined($Dat{'type'}) || return(undef);
37 defined($Dat{'format'}) || return(undef);
38 defined($Dat{'error'}) || return(undef);
40 defined($Dat{'year'}) || ($Dat{'year'} = 0);
41 defined($Dat{'month'}) || ($Dat{'month'} = 0);
42 defined($Dat{'day'}) || ($Dat{'day'} = 0);
43 defined($Dat{'hour'}) || ($Dat{'hour'} = "");
44 defined($Dat{'min'}) || ($Dat{'min'} = "");
45 defined($Dat{'sec'}) || ($Dat{'sec'} = "");
50 !length($Dat{'hour'}) ||
51 !length($Dat{'min'}) ||
56 ("$Dat{'year'}$Dat{'month'}$Dat{'day'}$Dat{'hour'}$Dat{'min'}" =~
57 /[^\d]/) || ($Dat{'sec'} =~ /[^\d\.]/)
61 "$Dat{'lat'}$Dat{'lon'}" =~ /[^\d\.\-\+]/ && return(undef);
63 defined($Dat{'lat'}) || ($Dat{'lat'} = "");
64 defined($Dat{'lon'}) || ($Dat{'lon'} = "");
65 defined($Dat{'ele'}) || ($Dat{'ele'} = "");
66 defined($Dat{'desc'}) || ($Dat{'desc'} = "");
67 defined($Dat{'extensions'}) || ($Dat{'extensions'} = "");
71 if ($Dat{'type'} eq "tp") {
72 my $err_str = length($Dat{'error'}) ?
$Dat{'error'} : "";
73 if ($Dat{'format'} eq "gpsml") {
75 my $Elem = length($err_str) ?
"etp" : "tp";
78 ?
sprintf("<time>%04u-%02u-%02uT" .
79 "%02u:%02u:%02gZ</time> ",
80 $Dat{'year'}, $Dat{'month'}, $Dat{'day'},
81 $Dat{'hour'}, $Dat{'min'}, $Dat{'sec'}*1.0
85 ?
"<lat>" . $Dat{'lat'}*1.0 . "</lat> "
88 ?
"<lon>" . $Dat{'lon'}*1.0 . "</lon> "
91 ?
"<ele>" . $Dat{'ele'}*1.0 . "</ele> "
93 (length($Dat{'desc'}))
94 ?
sprintf("<desc>%s</desc> ",
99 ($Retval = sprintf("<%s%s> %s</%s>\n",
101 length($err_str) ?
" err=\"$err_str\"" : "",
106 } elsif($Dat{'format'} eq "gpx") {
108 my $lat_str = length($Dat{'lat'}) ?
" lat=\"$Dat{'lat'}\"" : "";
109 my $lon_str = length($Dat{'lon'}) ?
" lon=\"$Dat{'lon'}\"" : "";
110 if (length("$lat_str$lon_str$Dat{'ele'}")) {
113 "$Spc$Spc$Spc$Spc$Spc$Spc",
114 "<trkpt$lat_str$lon_str>",
117 ?
"<ele>$Dat{'ele'}</ele>$Spc"
121 "$Dat{'year'}-$Dat{'month'}-$Dat{'day'}T" .
122 "$Dat{'hour'}:$Dat{'min'}:$Dat{'sec'}Z" .
125 length($Dat{'extensions'})