query-c42f96f456848e2a93a9adccbe916544

rq turtle/ttl

& This returns the streets in Haarlem in the BAG:

Use at

SELECT ?item ?weg ?baglabel {
  SERVICE <http://lov.okfn.org/dataset/lov/sparql> {
  SERVICE <https://data.pdok.nl/sparql> {
    select ?weg ?baglabel
where {
  ?weg <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://bag.basisregistraties.overheid.nl/def/bag#OpenbareRuimte> .
  #?weg <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://bag.basisregistraties.overheid.nl/def/bag#Weg> .
  ?weg <http://bag.basisregistraties.overheid.nl/def/bag#status> <http://bag.basisregistraties.overheid.nl/id/begrip/NaamgevingUitgegeven> .
  ?weg <http://www.w3.org/2000/01/rdf-schema#label> ?baglabel .
  ?weg <http://bag.basisregistraties.overheid.nl/def/bag#bijbehorendeWoonplaats> <http://bag.basisregistraties.overheid.nl/bag/id/woonplaats/2907>
} 
  }
    }
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?baglabel"):::projected v1("?weg"):::projected c4([http://bag.basisregistraties.overheid.nl/def/bag#OpenbareRuimte]):::iri c9([http://bag.basisregistraties.overheid.nl/bag/id/woonplaats/2907]):::iri c6([http://bag.basisregistraties.overheid.nl/id/begrip/NaamgevingUitgegeven]):::iri subgraph s1["http://lov.okfn.org/dataset/lov/sparql"] style s1 stroke-width:4px; subgraph s2["https://data.pdok.nl/sparql"] style s2 stroke-width:4px; v1 --"a"--> c4 v1 --http://bag.basisregistraties.overheid.nl/def/bag#status--> c6 v1 --http://www.w3.org/2000/01/rdf-schema#label--> v2 v1 --http://bag.basisregistraties.overheid.nl/def/bag#bijbehorendeWoonplaats--> c9 end end