
Geo::Gpx - Create and parse Groundspeak/Geocaching GPX files.

# Should work now
use Geo::Gpx;
my $gpx = Geo::Gpx->new( @waypoints );
my $xml = $gpx->xml;
# Might work later
my $gpx = Geo::Gpx->new( xml => $xml );
my @waypoints = $gps->waypoints;

The goal of this module is to produce GPX/XML files which are parseable by both GPX Spinner and EasyGPS.

Rich Bowen
rbowen@rcbowen.com

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.