query-f3cf3300d66db9e49f983fbcff8a909b

rq turtle/ttl

TODO

Use at

PREFIX osmt: <https://wiki.openstreetmap.org/wiki/Key:>
PREFIX osmm: <https://www.openstreetmap.org/meta/>
#defaultView:Map
SELECT ?item ?coordenadas {
  SERVICE <https://sophox.org/sparql> {
    ?item
      osmt:amenity "recycling";
      osmt:recycling:plastic_bottles "yes";
      osmm:loc ?coordenadas.
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?coordenadas"):::projected v1("?item"):::projected c5(["yes"]):::literal c3(["recycling"]):::literal subgraph s1["https://sophox.org/sparql"] style s1 stroke-width:4px; v1 --https://wiki.openstreetmap.org/wiki/Key:amenity--> c3 v1 --https://wiki.openstreetmap.org/wiki/Key:recycling:plastic_bottles--> c5 v1 --https://www.openstreetmap.org/meta/loc--> v2 end