Fire and Rescue stations in Kerala
How to Map
Tag the outline of the fire station
with amenity=fire_station and name=*. Then tag the building (or maybe multiple buildings) with building=fire_station.

Kerala fire and rescue services
Tags to use in combination
- operator=*
- Address
- phone=*
- website=http://fire.kerala.gov.in/
- operator:wikidata=Q16133774
- Overpass query:-http://overpass-turbo.eu/s/NJ4
- Information (firefox or IE)
try it yourself in overpass-turbo
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“"amenity"="fire_station" in India”
*/
[out:json][timeout:250];
// fetch area “India” to search in
area["name"="Kerala"]->.searchArea;
// gather results
(
// query part for: “amenity=fire_station”
node["amenity"="fire_station"](area.searchArea);
way["amenity"="fire_station"](area.searchArea);
relation["amenity"="fire_station"](area.searchArea);
);
// print results
out body;
>;
out skel qt;
try it yourself in overpass-turbo
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“"amenity"="fire_station" in India”
*/
[out:csv(::type,::id,network,type,name)][timeout:250];
// fetch area “India” to search in
area["name"="Kerala"]->.searchArea;
// gather results
(
// query part for: “amenity=fire_station”
node["amenity"="fire_station"](area.searchArea);
way["amenity"="fire_station"](area.searchArea);
relation["amenity"="fire_station"](area.searchArea);
);
// print results
out body;
This article is issued from Openstreetmap. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.