I have the Magellan GPS Companion, which is a Springboard module for my Visor Edge (but really any Palm thingy).
I've been having a bit of fun taking it around Chicago, and even on trips. Now I have a bunch of waypoints, but until last night they were stuck on my Visor. The software lets me beam waypoints, presumably to other thingys with the same module, but I don't see any way to export them to something like text.
No matter. Perl can do it just fine. I started with the Palm::PDB module, wrote my own concrete class for the factory, and shazam!: Palm::Magellan::NavCompanion. It's a developer's release right now, but you should be able to access your waypoints even if the module is a bit ugly and incomplete. It should make its way around CPAN in a day or so.
use Palm::Magellan::NavCompanion;
my $pdb = Palm::Magellan::NavCompanion->new; $pdb->Load( $file );
my $waypoints = $pdb->{records};
$, = ", "; foreach my $wp ( @$waypoints ) { print $wp->name, $wp->latitude, $wp->longitude; print "\n"; }
Springboard is some weird Visor-only thing, and definitely not for "any Palm thingy".
Re:Visor oddness
brian_d_foy on 2004-08-31T08:18:47
Hmmm, maybe so. I guess the actual Palms don't do this sort of thing.