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

Hello, I would like to download amenities of a certain type and area, preferably in kmz format. For example I would like to have a kmz file of amenity=drinking_water in Berlin (more or less). How to do it?

asked 24 Aug '21, 12:35

Leszek's gravatar image

Leszek
11112
accept rate: 0%

I'm still looking for the answer.

(28 Oct '21, 09:08) Leszek

You can use overpass turbo to retrieve specific POIs from OSM.

The following query will search for all drinking water POIs in the currently visible area:

[out:json][timeout:25];
// gather results
(
  nwr["amenity"="drinking_water"]({{bbox}});
  nwr["drinking_water"="yes"]({{bbox}});
);
// print results
out body;
>;
out skel qt;

You can run it here. Hit run. Then go to Export -> Save as KML.

permanent link

answered 28 Oct '21, 10:11

scai's gravatar image

scai ♦
33.3k21309459
accept rate: 23%

Thank you very much!

(28 Oct '21, 10:16) Leszek

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:

×315
×275
×7

question asked: 24 Aug '21, 12:35

question was seen: 1,388 times

last updated: 28 Oct '21, 10:16

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