The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Location::GeoTool::Plugin::Locapoint - Plugin for Location::GeoTool to access Locapoint GIS data format

SYNOPSIS

  use Location::GeoTool qw/Locapoint/;
  
  my $loc = Location::GeoTool->create_locapoint('SD7.XC0.GF5.TT8');
  my ($lat,$long) = $loc->format_degree->array;
  # $lat => 35.606954, $long => 139.567109

  # or inverse:

  my $loc = Location::GeoTool->create_coord(35.606954,139.567109,'wgs84','degree');
  my ($locapo) = $loc->get_locapoint;
  # $locapo => 'SD7.XC0.GF5.TT8'

DESCRIPTION

Location::GeoTool::Plugin::Locapoint is a extension plugin for Location::GeoTool module. This gives two methods: create_locapoint and get_locapoint to Location::GeoTool. Please see SYNOPSIS to know how to use.

EXPORT

None.

SEE ALSO

Location::GeoTool

Locapoint official site: http://www.locapoint.com/

Specification of Locapoint: http://www.locapoint.com/en/spec.htm

Support this module in Kokogiko web site : http://kokogiko.net/

AUTHOR

OHTSUKA Ko-hei, <nene@kokogiko.net>

COPYRIGHT AND LICENSE

Copyright (C) 2005-2007 by Kokogiko!

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.1 or, at your option, any later version of Perl 5 you may have available.