x

Ansatz alle Renault-Werkstätten in einem bestimmten Gebiet zu finden


Geschrieben von tagtheworld (Gast) am 07. August 2016 14:24:53: [flux]

hallo community,

ich bin auf der Suche nach einem Ansatz alle Renault-Werkstätten in einem bestimmten Gebiet zu finden. Dazu geh ich wie folgt vor:

"node"shop"="car
"service"="dealer"
"service"="repair"
"brand"="renault";

resp, sieht das dann so aus

/*
This query looks for nodes, ways and relations
with the given key/value combination.
Choose your region and hit the Run button above!

  • /

[out:json][timeout:25];
// gather results
(
// query part for: “shop=car”
node["shop"="car"]({{bbox}});
node["service"="dealer"]({{bbox}});
//node["service"="repair"]({{bbox}});
node["brand"="renault"]({{bbox}});
);
// print results
out body;

;

out skel qt;

würdet ihr es anders versuchen...

btw: wenn ich das Ergebnis dann in CSV ausgeben will - dann muss alles nur noch geringfügig umformulieren...


Antworten: