Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dex4er/perl-geo-coder-geocodefarm

Geo::Coder::GeocodeFarm - Geocode addresses with the GeocodeFarm API
https://github.com/dex4er/perl-geo-coder-geocodefarm

Last synced: 23 days ago
JSON representation

Geo::Coder::GeocodeFarm - Geocode addresses with the GeocodeFarm API

Awesome Lists containing this project

README

        

NAME

Geo::Coder::GeocodeFarm - Geocode addresses with the GeocodeFarm API

SYNOPSIS

use Geo::Coder::GeocodeFarm;

my $geocoder = Geo::Coder::GeocodeFarm->new(
key => '3d517dd448a5ce1c2874637145fed69903bc252a',
);
my $result = $geocoder->geocode(
location => '530 W Main St Anoka MN 55303 US',
lang => 'en',
count => 1,
);
printf "%f,%f",
$result->{RESULTS}{COORDINATES}{latitude},
$result->{RESULTS}{COORDINATES}{longitude};

DESCRIPTION

The Geo::Coder::GeocodeFarm module provides an interface to the
geocoding functionality of the GeocodeFarm API v3.

SEE ALSO

https://www.geocode.farm/

BUGS

If you find the bug or want to implement new features, please report it
at https://github.com/dex4er/perl-Geo-Coder-GeocodeFarm/issues

The code repository is available at
http://github.com/dex4er/perl-Geo-Coder-GeocodeFarm

AUTHOR

Piotr Roszatycki

LICENSE

Copyright (c) 2013, 2015 Piotr Roszatycki .

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

See http://dev.perl.org/licenses/artistic.html