I have server with installed Nominatim. I would like to use it without setting up a website. Is it possible to make direct (without using HTTP) request to Nominatim on own server? What I need to do it? Thank you. asked 12 Jan '15, 14:09 yaahor |
There is a small command line tool answered 12 Jan '15, 16:53 lonvia |
The Geocoder that extracts information from Nominatim's database is written in PHP, so you could use that library in your code. Alternatively, you could extract the SQL statements the library uses to use in your own library if you want to reimplement it in another language. In either case you would import the OSM data using answered 12 Jan '15, 16:02 Jonathan Ben... |