Thread geo::gpx - hilfe bei verwendung (8 answers)
Opened by jan999 at 2010-01-06 15:22

jan999
 2010-01-06 15:22
#130130 #130130
User since
2009-04-02
109 Artikel
BenutzerIn
[default_avatar]
Moin !

nachdem ich in http://www.perl-community.de/bat/poard/thread/1445... nun das Package installiert habe kam der Versuch eines Mustercodes auszuführen.

Aus der Anleitung habe ich mir folgendes zusammengebaut:
Code (perl): (dl )
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";
  }


... bekomme aber bei der Ausführung folgende Meldung:
Quote
D:\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.


Ist das ein Problem was mit meiner Installation zusammenhängen kann oder fehlt da noch ein Paket (ISO8601.pm)????

Gruß Jan :-)

View full thread geo::gpx - hilfe bei verwendung