From a2e328455894e5733878e1f128d6aef86903952c Mon Sep 17 00:00:00 2001 From: germainaugsburger Date: Mon, 7 Jan 2019 13:05:14 +0100 Subject: [PATCH] Update 'power-plants.json' Query 'node' elements with 'power' key and 'plant' tag or 'station' tag : (node[power=plant]; node[power=station]; way[power=plant]; way[power=station];) N.B.: power=plant should not be used on nodes See https://wiki.openstreetmap.org/wiki/Tag:power%3Dplant N.B.: power=station is deprecated and should not be used for power plants See https://taginfo.openstreetmap.org/tags/power=station#wiki --- power-plants.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/power-plants.json b/power-plants.json index ff814f6..22accc9 100644 --- a/power-plants.json +++ b/power-plants.json @@ -3,11 +3,13 @@ "name": { "en": "power-plants", "de": "kraftwerke", - "fr": "centrales-électrique" + "fr": "centrales-électriques" }, "query": { "7": [ - "(way[power=plant];", + "(node[power=plant];", + "node[power=station];", + "way[power=plant];", "way[power=station];)" ] }