NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

Hi there! Say I have an arbitrary OSM entity which I want to display on a third party map (Google maps for arguments sake)..

Say I want to display London Heathrow airport on my map. This is how I would like it highlighted here: London Heathrow Airport

Now, my server uses the awesome Overpass API, so if I want the bounds of the airport, I can get them like so: Raw Data from Overpass API for Heathrow Airport

Now this is the problem, I now have the ways and nodes that consist of the airport BUT the ways/ nodes are NOT in the correct order to outline. So how can I outline the data from the second link, like it is in the first one??

Or if this isnt easy/ trivial, is there any way to embed just the map section from the first link on a webpage?!

Thanks in advance!

asked 15 Jun '15, 21:47

gmeister41's gravatar image

gmeister41
16335
accept rate: 0%


There's a misconception here: the nodes are in fact not in the wrong order, as the sequence information is stored in another location. You'd need to look at the node ids as they're listed in the way section of the Overpass API response. This will tell you in which sequence all nodes appear:

Here's the relevant part:

  "type": "way",
  "id": 185882029,
  "nodes": [
    1216282838,
    2899060375,
    26352035,
    1215188013,
    1215188011,
    1215188014,
    1215188019,
    1215188093,
   [...]

I'd suggest to try following alternative, which might be easier for you to parse: all nodes belonging to a way are put in place in the right order.

[out:json];
way(185882029);
out tags geom;

Overpass Turbo Link: http://overpass-turbo.eu/s/9WS

Please don't forget about correct OSM attribution, when embedding OSM data in other maps!

permanent link

answered 15 Jun '15, 22:08

mmd's gravatar image

mmd
5.7k15388
accept rate: 37%

1

The geom command was exactly what I was after, thanks mmd. I have of course made appropriate references to the OSM data. You're the best!

(17 Jun '15, 21:16) gmeister41

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×710
×535
×483
×362
×12

question asked: 15 Jun '15, 21:47

question was seen: 3,843 times

last updated: 17 Jun '15, 21:16

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum