I am currently working on a list of available hotels in the Republic of Georgia. As the OSM-Database has lots of POIs, is it possible to access this data for that purpose? I would like to run a query to retrieve hotels with addresses, phone numbers and other details that are entered. The coordinates would not matter for my purpose. The result should be an Excel-file or similar table format. How can I do this? All help appreciated! asked 08 May '12, 12:26 moszkva ter |
You can get the data in JSON format in two steps from Overpass API: First, obtain the area by pasting the following request
into the Overpass API query form. From the result, you can read off the area with name "Georgia" that the relevant area id is 3600028699. Now you can query for the really wanted data, again on Overpass API query form:
This results in a 92 KB big JSON file containing all information about nodes or ways in Georgia tagged with Note that some elements have addresses and phone numbers and others have not, depending on how they have been mapped in the database. answered 08 May '12, 14:17 Roland Olbricht |