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


Geo-GeoPo documentation Contained in the Geo-GeoPo distribution.

Index


Code 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 Contained in the Geo-GeoPo distribution.

package Geo::Formatter::Format::GeoPo;

use strict;
use warnings;
use Carp;
use Geo::GeoPo;
use base qw(Geo::Formatter::FormatBase::Single);

use version; our $VERSION = qv('0.0.1');

sub encode {
    my ($class,$lat,$lng,$opt) = @_;

    $opt ||= {};

    my $scale         = delete $opt->{scale}  || croak "Scale value must be set";

    latlng2geopo( $lat, $lng, $scale, $opt );
}

sub decode {
    my $class = shift;

    geopo2latlng( @_ );
}

1;
__END__