Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dex4er/perl-geo-coder-geocodefarm
- Owner: dex4er
- Created: 2013-06-25T12:08:29.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-09-23T17:05:47.000Z (over 2 years ago)
- Last Synced: 2024-10-28T09:01:59.702Z (3 months ago)
- Language: Perl
- Size: 250 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README
- Changelog: Changes
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/issuesThe code repository is available at
http://github.com/dex4er/perl-Geo-Coder-GeocodeFarmAUTHOR
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