This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

Nominatim missing way

0
1

Hi,

I'm using Nominatim to reverse geocode an OSM way. However there are some ways that cannot be geocoded. Please see: https://nominatim.openstreetmap.org/reverse?osm_id=126761805&osm_type=W

I'm revisioning this using overpass api (that's where I got the way id from) and it shows some info. https://overpass-turbo.eu/s/HAv

Why does Nominatim return Unable to geocode? Does it mean that Overpass and Nominatim API use different databases? Or is Nominatim cutting off some ways by default?

Thanks,

asked 02 Apr '19, 10:36

Yura's gravatar image

Yura
16113
accept rate: 0%


One Answer:

2

Nominatim only imports features with names or reference numbers. https://wiki.openstreetmap.org/wiki/Nominatim/Development_overview#Tags_processed Overpass might be better suited if you're looking for unnamed ways.

If you run your own instance of Nominatim you can change the defaults to import more (or less) https://github.com/openstreetmap/Nominatim/issues/1340

For lookup of features by OSM type and OSM id, the /lookup endpoint will be faster http://nominatim.org/release-docs/latest/api/Lookup/

answered 02 Apr '19, 10:58

mtmail's gravatar image

mtmail
4.8k1574
accept rate: 27%

Source code available on GitHub .