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

I have this query to get hot_water_tanks:

[out:json][timeout:85];

(

  node["man_made"="hot_water_tank"]({{bbox}});
  way["man_made"="hot_water_tank"]({{bbox}});

);

out body;
>;
out skel qt;

and here to get industrial building or landuse.

[out:json][timeout:85];

(

node["landuse"="industrial"]({{bbox}});
  way["landuse"="industrial"]({{bbox}});
rel["landuse"="industrial"]({{bbox}});


);

out body;
>;
out skel qt;

How can i get only landuse=industrial where there is a hot_water_tank?

asked 04 Oct '16, 14:56

JsonKh's gravatar image

JsonKh
26224
accept rate: 0%

edited 04 Oct '16, 15:48

Not sure how to do this in overpass, but you could easily do this within a GIS tool like QGIS.

(06 Oct '16, 09:08) joost schouppe
Be the first one to answer this question!
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:

×483
×228
×65
×54

question asked: 04 Oct '16, 14:56

question was seen: 3,231 times

last updated: 06 Oct '16, 09:36

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