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

I'm newbie on Overpass Turbo.

In JOSM I entered following query:

area["name"="Arboga kommun"];
nwr["amenity"="parking"](area);
out;

But it only returns parking's mapped on nodes, but not parking areas. All of these have tag "amenity=parking".

What do I wrong?

asked 23 Jul '22, 15:03

Msiipola's gravatar image

Msiipola
227171826
accept rate: 0%

edited 23 Jul '22, 18:36


out on its own doesn't download the lat/lon for nodes that make up ways, so can't display them.

area[name="Arboga kommun"];
nwr[amenity=parking](area);
(._;>;); out meta;
permanent link

answered 23 Jul '22, 18:09

DaveF's gravatar image

DaveF
3.3k8498133
accept rate: 16%

Thanks for the clarification! I knew I had missed something!

(23 Jul '22, 18:35) Msiipola
Your answer
toggle preview

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:

×228

question asked: 23 Jul '22, 15:03

question was seen: 771 times

last updated: 23 Jul '22, 18:36

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