query-b685d46f55d6f9ae273ccd3c45a108f0

rq turtle/ttl

. Double-check that it says "OSM Planet" and not "Wikidata" in the upper left corner. Now click on "examples" and select the first one "All buildings in Stühlinger". You can click on "Map view" to get map view as well. Have fun and play around with it. If you need something more advanced such as federating against Wikidata, that should be possible, but at least for now this should get you started. You can have a look at which data is contained in the relation you mentioned using the following query, since QLever doesn't support DESCRIBE queries yet.https://qlever.cs.uni-freiburg.de/osm-planetThe same people that built the tool I mentioned also put up the resulting triplestore so that you can query for geometry there. This opens up some nice opportunities. Go to the QLever public demo at

Use at

PREFIX osmrel: <https://www.openstreetmap.org/relation/>
SELECT * WHERE {
osmrel:157715 ?p ?o .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?o"):::projected v1("?p"):::projected c1([https://www.openstreetmap.org/relation/157715]):::iri c1 -->v1--> v2