The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Geo::Coordinates::Converter::Format::IArea - get center point from iArea

SYNOPSIS

  use Geo::Coordinates::Converter;

  my $geo = Geo::Coordinates::Converter->new( formats => [qw/ iArea /], format => 'iarea', areacode => '00205' )
  my $point = $geo->convert('degree' => 'wgs84');

  Geo::Coordinates::Converter->add_default_formats('iArea');
  my $geo = Geo::Coordinates::Converter->new(  format => 'iarea', areacode => '00205' )
  my $point = $geo->convert('degree' => 'wgs84');

DESCRIPTION

Geo::Coordinates::Converter::Format::IArea is utilities for DoCoMo iArea.

easy to get the center point of area.

EXPORT METHODS

Geo::Coordinates::Converter->areacode

areacode accessor

Geo::Coordinates::Converter::Point->areacode

areacode accessor

DATA FILE FORMAT

    areacode,lat,lng

csv format.

Note

This module very slow. But, this module is only for small edge case. This modules is called by very old obsolete DoCoMo phones, called MOVA.

Please use posinfo=1 when user's phone is FOMA.

AUTHOR

Kazuhiro Osawa

SEE ALSO

Geo::Coordinates::Converter::iArea, Location::Area::DoCoMo::iArea

LICENSE

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