Hi to all, Is it possible to get point of interest data from openstreetmap using nominatim? asked 15 Dec '15, 09:19 Rajavelu_M |
Nominatim is a geocoder. It is designed to convert addresses into locations (geocoding) and locations back into addresses (reverse geocoding). Nominatim can handle some basic POI searches via special keywords, like "bakery near Altstadt, Dresden". Yet there might be better suited tools for your job, like Overpass API where you can search for specific tags. See the language guide for various examples. answered 16 Dec '15, 08:03 scai ♦ @scai: Thanks for your answer. I have osm_data (database & tables created through nominatim) in my server. Can I use same database for overpass api?
(16 Dec '15, 09:53)
Rajavelu_M
2
No, Overpass API requires different data and performs different queries. Hence it needs its own database.
(16 Dec '15, 10:15)
scai ♦
|
Yes and no. What kind of data are you looking for exactly?
@scai: i want to get hospitals/restaurants/theatres/etc for a particular region
@rajavelu: is there a particular reason why you want to use nominatim?
@aseerel4c26: I am already using nominatim for get geocode&reverse geocode. So I expect any options to get poi data with same tool.