-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b73ac47
commit 4c3cdcc
Showing
9 changed files
with
122 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
Yahoo | ||
===== | ||
|
||
Yahoo PlaceFinder is a geocoding Web service that helps developers make | ||
their applications location-aware by converting street addresses or | ||
place names into geographic coordinates (and vice versa). | ||
Using Geocoder you can retrieve Yahoo's geocoded data from Yahoo BOSS Geo Services. | ||
|
||
Examples | ||
~~~~~~~~ | ||
|
||
Basic Geocoding | ||
--------------- | ||
|
||
.. code-block:: python | ||
>>> import geocoder | ||
>>> g = geocoder.yahoo('San Francisco, CA') | ||
>>> g.json | ||
... | ||
Command Line Interface | ||
---------------------- | ||
|
||
.. code-block:: bash | ||
$ geocode 'San Francisco, CA' --provider yahoo --out geojson | ||
Parameters | ||
~~~~~~~~~~ | ||
|
||
- `location`: Your search location you want geocoded. | ||
- `method`: (default=geocode) Use the following: | ||
|
||
- geocode | ||
|
||
References | ||
~~~~~~~~~~ | ||
|
||
- `Yahoo BOSS Geo Services <https://developer.yahoo.com/boss/geo/>`_ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
Yandex | ||
====== | ||
|
||
Yandex (Russian: Яндекс) is a Russian Internet company which operates the | ||
largest search engine in Russia with about 60% market share in that country. | ||
|
||
The Yandex home page has been rated as the most popular website in Russia. | ||
|
||
Examples | ||
~~~~~~~~ | ||
|
||
Basic Geocoding | ||
--------------- | ||
|
||
.. code-block:: python | ||
>>> import geocoder | ||
>>> g = geocoder.yandex('Moscow Russia') | ||
>>> g.json | ||
... | ||
Reverse Geocoding | ||
----------------- | ||
|
||
.. code-block:: python | ||
>>> import geocoder | ||
>>> g = geocoder.mapbox([55.95, 37.96], method='reverse') | ||
>>> g.json | ||
... | ||
Command Line Interface | ||
---------------------- | ||
|
||
.. code-block:: bash | ||
$ geocode 'Moscow Russia' --provider yandex --out geojson | ||
$ geocode '55.95, 37.96' --provider yandex --method reverse | ||
Parameters | ||
---------- | ||
|
||
- `location`: Your search location you want geocoded. | ||
- `location`: Your search location you want geocoded. | ||
- `lang`: Chose the following language: | ||
|
||
- **ru-RU** — Russian (by default) | ||
- **uk-UA** — Ukrainian | ||
- **be-BY** — Belarusian | ||
- **en-US** — American English | ||
- **en-BR** — British English | ||
- **tr-TR** — Turkish (only for maps of Turkey) | ||
|
||
- `kind`: Type of toponym (only for reverse geocoding): | ||
|
||
- **house** — house or building | ||
- **street** — street | ||
- **metro** — subway station | ||
- **district** — city district | ||
- **locality** — locality (city, town, village, etc.) | ||
|
||
- `method`: (default=geocode) Use the following: | ||
|
||
- geocode | ||
- reverse | ||
|
||
References | ||
---------- | ||
|
||
- `Yandex API Reference <http://api.yandex.com/maps/doc/geocoder/desc/concepts/input_params.xml>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
__title__ = 'geocoder' | ||
__author__ = 'Denis Carriere' | ||
__author_email__ = '[email protected]' | ||
__version__ = '1.5.3' | ||
__version__ = '1.6.0' | ||
__license__ = 'MIT' | ||
__copyright__ = 'Copyright (c) 2013-2015 Denis Carriere' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters