This is a static archive of our old OSM Help Site. Please post any new questions and answers at community.openstreetmap.org.

Download amenities kmz file

0

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

One Answer:

1

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.

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