Leser: 17
1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/perl use strict; use warnings; use Geo::Gpx; my $gpx_document = "test.gpx"; my $gpx = Geo::Gpx->new( input => $gpx_document); my $iter = $gpx->iterate_trackpoints(); while (my $pt = $iter ()){ print "Point: ", join(', ', $pt->{lat}, $pt->{lon}),"\n"; }
QuoteD:\DATEN\JAN\openstreetmap\Perl_4osm\gpx-filter>perl gpxsym4garmin.pl
Can't locate DateTime/Format/ISO8601.pm in @INC (@INC contains: C:/Perl/site/lib C:/Perl/lib .) at C:/Perl/lib/Geo/Gpx.pm line 7.
BEGIN failed--compilation aborted at C:/Perl/lib/Geo/Gpx.pm line 7.
Compilation failed in require at gpxsym4garmin.pl line 4.
BEGIN failed--compilation aborted at gpxsym4garmin.pl line 4.
2010-01-06T14:22:13 jan999Ist das ein Problem was mit meiner Installation zusammenhängen kann oder fehlt da noch ein Paket (ISO8601.pm)????
1
2
3
4
5
6
7
8
'DateTime' => 0,
'DateTime::Format::ISO8601' => 0,
'HTML::Entities' => 0,
'Scalar::Util' => 0,
'Test::More' => 0,
'Time::Local' => 0,
'XML::Descent' => '1.01',
'version' => 0,