[GIS] Converting OSM_ID to coordinates

coordinatesopenstreetmap

I have downloaded some open street map data from Webgeo, but instead of coordinates it came with an "OSM_ID". I cannot seem to find any data dictionary or information about this variable on the web. Does anyone know what it is and how do I convert it to coordinates? An example of the data is as follows:

osm_id,access,addr:housename,addr:housenumber,addr:interpolation,admin_level,aerialway,aeroway,amenity,area,barrier,bicycle,brand,bridge,boundary,building,capital,construction,covered,culvert,cutting,denomination,disused,ele,embankment,foot,generator:source,harbour,highway,historic,horse,intermittent,junction,landuse,layer,leisure,lock,man_made,military,motorcar,name,natural,office,oneway,operator,place,poi,population,power,power_source,public_transport,railway,ref,religion,route,service,shop,sport,surface,toll,tourism,tower:type,tunnel,water,waterway,wetland,width,wood,z_order
1432784186,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,St Aubin,,,,,village,,,,,,,,,,,,,,,,,,,,,,,
1787222125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,London Berth,,,,,locality,,,,,,,,,,,,,,,,,,,,,,,
1787082727,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,South Pier,,,,,locality,,,,,,,,,,,,,,,,,,,,,,,

Thanks for any help

Best Answer

If you don't want to reload the whole data, you can query the Overpass API http://www.overpass-api.de/query_form.html with

<osm-script>
  <id-query ref="507464799" type="node"/>
  <print/>
</osm-script>

for the OSM_IDs you got.

Related Question