Geo::Formatter::Format::GeoPo - Add GeoPo format to Geo::Formatter


Geo-GeoPo documentation  | view source Contained in the Geo-GeoPo distribution.

Index


NAME

Top

Geo::Formatter::Format::GeoPo - Add GeoPo format to Geo::Formatter

SYNOPSIS

Top

  use Geo::Formatter qw(GeoPo);

  my ( $lat, $lng, $scale ) = format2latlng( 'geopo', 'Z4RHXX' );
  # 35.658578, 139.745447, 6

  my ( $lat, $lng, $scale ) = format2latlng( 'geopo', 'http://geopo.at/Z4RHXX' );
  # Same result

  my $geopo = latlng2format( 'geopo', 35.658578, 139.745447, { scale => 6 } );
  # Z4RHXX

  my $geopo = latlng2format( 'geopo', 35.658578, 139.745447, { scale => 6, as_url => 1 } );
  # http://geopo.at/Z4RHXX




DESCRIPTION

Top

Geo::Formatter::Format::GeoPo adds GeoPo format to Geo::Formatter.

METHOD

Top

* encode
* decode

AUTHOR

Top

OHTSUKA Ko-hei <nene@kokogiko.net>

SEE ALSO

Top

* Geo::Formatter
* Geo::GeoPo

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


Geo-GeoPo documentation  | view source Contained in the Geo-GeoPo distribution.