N
N
Nikidze2020-04-17 13:52:49
Geolocation
Nikidze, 2020-04-17 13:52:49

What is a free service for geocoding Russian names?

Tell me a service where you can feed the address, and he would give out the latitude and longitude. OpenStreetMaps is not suitable, sometimes it does not find addresses, in whatever format they are transmitted.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Andrew, 2020-04-17
@Nikidze

a service where you can feed an address, and it would give out latitude and longitude

There is a DaData
service Per day 10,000 requests for free.
spoiler
# Пример для подсказок по адресам
curl -X POST \
    -H "Content-Type: application/json" \
    -H "Accept: application/json" \
    -H "Authorization: Token 8c5d6b2cc555ea8eeee27d71a95c6cf48a7d55b2" \
    -d '{ "query": "москва хабар", "count": 10 }' \
    https://suggestions.dadata.ru/suggestions/api/4_1/rs/suggest/address

В ответе присутствует:
data.geo_lat	Координаты: широта
data.geo_lon	Координаты: долгота

There is a Yandex Maps Geocoder
with a total of no more than 25 thousand requests per day
requests can be cached for up to 30 days
Restrictions for free use:
  • The API should only be used in open source projects
  • You can not use the API in commercial projects
  • etc.

K
Konstantin Nagibovich, 2020-04-17
@nki

Have you tried Yandex.Maps? They had something similar.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question