I released Geo::Coordinates::Converter 0.02.
this distribution is framework of the geometric transformation.
It newly made it though the relapse discernment of the wheel because there was no thing mounted
in the form of the framework.
SYNOPSIS
use strict; use warnings;
use Geo::Coordinates::Converter;
my $geo = Geo::Coordinates::Converter->new( lat => '35.65580', lng => '139.65580', datum => 'wgs84' ); my $point = $geo->convert( dms => 'tokyo' ); print $point->lat; print $point->lng; print $point->datum; print $point->format;
my $clone = $point->clone; my $geo2 = Geo::Coordinates::Converter->new( point => $clone ); my $point2 = $geo->convert( degree => 'wgs84' ); print $point2->lat; print $point2->lng; print $point2->datum; print $point2->format;