From 5ab61dffa052f864a6d58c1351c526f56ff31d1c Mon Sep 17 00:00:00 2001 From: germainaugsburger Date: Thu, 10 Jan 2019 21:52:55 +0100 Subject: [PATCH] Add '/hydro-operator-groupe-e.json' Query elements with "operator" that contains "Groupe E": (case insensitive does not work) (node["operator"~"Groupe E"]["generator:source"="hydro"]; node["operator"~"Groupe E"]["plant:source"="hydro"]; way["operator"~"Groupe E"]["generator:source"="hydro"]; way["operator"~"Groupe E"]["plant:source"="hydro"]; relation["operator"~"Groupe E"]["generator:source"="hydro"]; relation["operator"~"Groupe E"]["plant:source"="hydro"];) --- hydro-operator-groupe-e.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 hydro-operator-groupe-e.json diff --git a/hydro-operator-groupe-e.json b/hydro-operator-groupe-e.json new file mode 100644 index 0000000..9e0f584 --- /dev/null +++ b/hydro-operator-groupe-e.json @@ -0,0 +1,18 @@ +{ + "type": "overpass", + "name": { + "en": "Hydro power plants - Groupe E", + "de": "Wasserkraftwerke - Groupe E", + "fr": "Centrales hydroélectriques - Groupe E" + }, + "query": { + "5": [ + "(node[\"operator\"~\"Groupe E\"][\"generator:source\"=\"hydro\"];", + "node[\"operator\"~\"Groupe E\"][\"plant:source\"=\"hydro\"];", + "way[\"operator\"~\"Groupe E\"][\"generator:source\"=\"hydro\"];", + "way[\"operator\"~\"Groupe E\"][\"plant:source\"=\"hydro\"];", + "relation[\"operator\"~\"Groupe E\"][\"generator:source\"=\"hydro\"];", + "relation[\"operator\"~\"Groupe E\"][\"plant:source\"=\"hydro\"];)" + ] + } +}