Skip to content
Snippets Groups Projects
Commit 060c13f2 authored by Alex Reisner's avatar Alex Reisner
Browse files

Add support for Yandex.ru geocoder.

parent 5cc75a90
No related branches found
No related tags found
No related merge requests found
...@@ -233,6 +233,7 @@ Note that the result objects returned by different geocoding services all implem ...@@ -233,6 +233,7 @@ Note that the result objects returned by different geocoding services all implem
* Google: http://code.google.com/apis/maps/documentation/geocoding/#JSON * Google: http://code.google.com/apis/maps/documentation/geocoding/#JSON
* Yahoo: http://developer.yahoo.com/geo/placefinder/guide/responses.html * Yahoo: http://developer.yahoo.com/geo/placefinder/guide/responses.html
* Geocoder.ca: (???) * Geocoder.ca: (???)
* Yandex: http://api.yandex.ru/maps/geocoder/doc/desc/concepts/response_structure.xml
* FreeGeoIP: http://github.com/fiorix/freegeoip/blob/master/README.rst * FreeGeoIP: http://github.com/fiorix/freegeoip/blob/master/README.rst
=== API Keys === API Keys
...@@ -241,10 +242,11 @@ To use your Google API key or Yahoo app ID: ...@@ -241,10 +242,11 @@ To use your Google API key or Yahoo app ID:
Geocoder::Configuration.api_key = "..." Geocoder::Configuration.api_key = "..."
To obtain an API key (not required): To obtain an API key:
* Yahoo: https://developer.apps.yahoo.com/wsregapp * Yahoo: https://developer.apps.yahoo.com/wsregapp (not required)
* Google: http://code.google.com/apis/maps/signup.html * Google: http://code.google.com/apis/maps/signup.html (not required)
* Yandex: http://api.yandex.ru/maps/intro/concepts/intro.xml#apikey (required)
=== Timeout === Timeout
......
...@@ -125,7 +125,7 @@ module Geocoder ...@@ -125,7 +125,7 @@ module Geocoder
# Array of valid Lookup names. # Array of valid Lookup names.
# #
def valid_lookups def valid_lookups
[:google, :yahoo, :geocoder_ca, :freegeoip] [:google, :yahoo, :geocoder_ca, :yandex, :freegeoip]
end end
## ##
......
require 'geocoder/lookups/base'
require "geocoder/results/yandex"
module Geocoder::Lookup
class Yandex < Base
private # ---------------------------------------------------------------
def results(query, reverse = false)
return [] unless doc = fetch_data(query, reverse)
if doc = doc['response']['GeoObjectCollection']
meta = doc['metaDataProperty']['GeocoderResponseMetaData']
return meta['found'].to_i > 0 ? doc['featureMember'] : []
else
warn "Yandex Geocoding API error: unexpected response format."
return []
end
end
def query_url(query, reverse = false)
params = {
:geocode => query,
:format => "json",
:plng => "#{Geocoder::Configuration.language}", # supports ru, uk, be
:key => Geocoder::Configuration.api_key
}
"http://geocode-maps.yandex.ru/1.x/?" + hash_to_query(params)
end
end
end
require 'geocoder/results/base'
module Geocoder::Result
class Yandex < Base
def coordinates
@data['GeoObject']['Point']['pos'].split(' ').map(&:to_f)
end
def address(format = :full)
@data['GeoObject']['metaDataProperty']['GeocoderMetaData']['text']
end
def city
address_details['Locality']['LocalityName']
end
def country
address_details['CountryName']
end
def country_code
address_details['CountryNameCode']
end
def postal_code
""
end
def premise_name
address_details['Locality']['Premise']['PremiseName']
end
private # ----------------------------------------------------------------
def address_details
@data['GeoObject']['metaDataProperty']['GeocoderMetaData']['AddressDetails']['Country']
end
end
end
{
"response": {
"GeoObjectCollection": {
"metaDataProperty": {
"GeocoderResponseMetaData": {
"request": "Кремль, Moscow, Russia",
"found": "1",
"results": "10"
}
},
"featureMember": [
{
"GeoObject": {
"metaDataProperty": {
"GeocoderMetaData": {
"kind": "vegetation",
"text": "Россия, Москва, Московский Кремль",
"precision": "other",
"AddressDetails": {
"Country": {
"CountryNameCode": "RU",
"CountryName": "Россия",
"Locality": {
"LocalityName": "Москва",
"Premise": {
"PremiseName": "Московский Кремль"
}
}
}
}
}
},
"name": "Московский Кремль",
"boundedBy": {
"Envelope": {
"lowerCorner": "37.584182 55.733361",
"upperCorner": "37.650064 55.770517"
}
},
"Point": {
"pos": "37.617123 55.751943"
}
}
}
]
}
}
}
{
"response": {
"GeoObjectCollection": {
"metaDataProperty": {
"GeocoderResponseMetaData": {
"request": "blah",
"found": "0",
"results": "10"
}
},
"featureMember": [
]
}
}
}
...@@ -80,6 +80,15 @@ module Geocoder ...@@ -80,6 +80,15 @@ module Geocoder
end end
end end
class Yandex < Base
private #-----------------------------------------------------------------
def fetch_raw_data(query, reverse = false)
raise TimeoutError if query == "timeout"
file = query == "no results" ? :no_results : :kremlin
read_fixture "yandex_#{file}.json"
end
end
class GeocoderCa < Base class GeocoderCa < Base
private #----------------------------------------------------------------- private #-----------------------------------------------------------------
def fetch_raw_data(query, reverse = false) def fetch_raw_data(query, reverse = false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment