Questions tagged [nominatim]

Nominatim is an address search engine for OpenStreetMap. It is open source and offers geocoding as well as reverse geocoding.

Nominatim is the most popular address search engine for OpenStreetMap. It is open source, providing geocoding as well as reverse geocoding.

Further Reading

  1. Nominatim in the OpenStreetMap Wiki
  2. Source code
223 questions
3
votes
1 answer

Nominatim application error PHP

I have PHP app which sends url request for geocoding as: http://nominatim.openstreetmap.org/reverse?format=xml&lat=33&lon=34&addressdetails=1 when I copy to browser returns XML respond. When same url sending from PHP file have response…
Vitali
  • 85
  • 1
  • 1
  • 6
3
votes
2 answers

Destination coordinates in leaflet routing

I am using nominatim for leaflet routing. The routing works perfectly as i want-a user can input from and destination location in search box and the map shows the route between the two points as in the picture below. But I want to get the…
user3303274
  • 609
  • 2
  • 6
  • 20
3
votes
2 answers

How many calls I can make to OSM's Nominatim instance?

I am developing mobile application which using google maps and I want to find users current address with device latitude and longitude (Reverse geocoding). Google have some limits and it will charge me once I go beyond it. Now I am looking on…
3
votes
1 answer

Local nominatim openstreemap with Speed limits

I'm currently running a local copy of the nominatim maps of openstreetmap on PostGIS. Is there a way i can get the speed limits into this database so i can return that information as well. I've found that this data is available when querying…
3
votes
2 answers

What does the dedupe parameter do in the Nominatim Search API?

It seem like it's doing more than just removing duplicates but I can't find any good documentation on it. The API docs currently just say: dedupe=[0|1]     No explanation yet. I'm running my own Nominatim that's been forked from the original a…
Justin Harris
  • 1,362
  • 17
  • 23
3
votes
3 answers

reverse geocoding using nominatim in asp.net

I'm using nominatim for reverse geocoding in my asp.net website (Visual Studio 2010, C#). I'm getting answer in XML or json format on another webpage like below: json xml I cant read this address using XML reader or HTTP response. Need help to…
netX
  • 134
  • 3
  • 12
3
votes
1 answer

OpenStreetMap Nominatim schema: neighborhood, suburb, city, state_district, etc

I am trying out the OpenStreetMap Nominatim reverse-geocoder RESTFul API. Is there a definitive explanation of the address schema returned from the API? Some locations have different attributes in the 'addressparts' block. For example, for Seattle,…
stackoverflowuser2010
  • 29,060
  • 31
  • 142
  • 184
3
votes
1 answer

Openstreetmaps and Nominatim: Do I install both or does Nominatim include openstreetmaps?

Just poking around with my own Openstreetmaps server and came up against a few questions. 1) I followed these instruction: http://wiki.openstreetmap.org/wiki/The_Rails_Port to install Openstreetmaps, and I followed some other instructions:…
Jahkobi Digital
  • 728
  • 10
  • 23
3
votes
2 answers

How to implement geocoding using nominatim

Hi I am new to openstreet map and nomintim....I have found what I was looking for in the following link.....But I am not sure how to implement it...I just need to get the geocoding details like if we search a place I need to get the lat and long and…
rajmohan
  • 1,568
  • 1
  • 13
  • 32
3
votes
2 answers

Obtain road type from nominatim

Is there a way of obtaining the type of road an object is settled in from a request via nominatim? For example http://nominatim.openstreetmap.org/reverse?format=xml&lat=52.5487429714954&lon=-1.81602098644987&zoom=18&addressdetails=1 does provide me…
Seb
  • 4,990
  • 7
  • 25
  • 46
3
votes
2 answers

ERROR: function make_standard_name(unknown) does not exist while installing OSM-nominatim API

I am installing nominatim on my own server using the guidence of http://wiki.openstreetmap.org/wiki/Nominatim/Installation... But I am facing problem while adding country phrases / codes to my pgsql DB. I am doing this with following command as…
user987346
2
votes
1 answer

ModuleNotFoundError: No module named 'geopy.geocoders'; 'geopy' is not a package

I am using VS and I am trying to run geopy, I installed all the prerequisites and get this error "ModuleNotFoundError: No module named 'geopy.geocoders'; 'geopy' is not a package" from geopy.geocoders import Nominatim geolocator =…
IguanaBot
  • 23
  • 4
2
votes
0 answers

Why does geocoding accuracy differ when granular data is provided?

I am geocoding addresses as well as the accuracy of the output (lat,longs) based on the address field. For some reason, the accuracy I receive is ironically lower when I specify a full street address as opposed to providing just a city name. My…
user10007925
  • 227
  • 2
  • 7
2
votes
1 answer

why does my geolocation it is not working?

The duty of my function is to calculate the distance from my business to any address (at the end (print fucntion) I put an example of an address)). I don´t know why it is not working, it says something about traceback error. The first part of my…
2
votes
1 answer

Use Nominatim db to connect with any OSM router/direction engine

I was just wondering if anyone knows about how to work OSM routing/direction/navigation engine (OSM Router Engine Wiki) with existing local Nominatim posgresql DB. I have already installed Nominatim and its relevant DB in my server and since its…
1
2
3
14 15