query-06c38b633f3ba8648d2dd13bfc809128

rq turtle/ttl

Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Mapa a seznam obcí v Nizozemsku Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Carte et liste des municipalités des Pays-Bas Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Mappa e lista dei comuni dei Paesi Bassi Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Kaart en lijst van gemeenten in Nederland Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Karta och lista över kommuner i Nederländerna Map and list of municipalities in The Netherlands Map and list of municipalities in The Netherlands Мапа та список муніципалітетів Нідерландів Map and list of municipalities in The Netherlands 荷兰城市的地图和名单

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Concise list & map of the 355 Dutch municipalities, their geo coordinates and their provinces, per 1-1-2019
#See also:
#https://almanak.overheid.nl/organisaties/Gemeenten/ - 355 in aantal
#https://nl.wikipedia.org/wiki/Lijst_van_Nederlandse_gemeenten - 355 in aantal

#defaultView:Map
SELECT ?muni ?muniLabel ?location where {
  ?muni p:P31 ?instanceOf; # Get statement because we need this later
        wdt:P625 ?location. # And location
  ?instanceOf ps:P31 wd:Q2039348. # P31 should be 'municipality of the Netherlands'
  MINUS { ?muni wdt:P31 wd:Q7265977. } # Don't show former municipalities
  MINUS { ?instanceOf pq:P582 ?endTime. } # And don't show municipalities that have an end time
  SERVICE wikibase:label { bd:serviceParam wikibase:language "nl". } # Show names in Dutch
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?endTime") v2("?instanceOf") v3("?location"):::projected v1("?muni"):::projected c9(["bd:serviceParam"]):::iri c6(["wd:Q7265977"]):::iri c4(["wd:Q2039348"]):::iri c11(["nl"]):::literal v1 --"p:P31"--> v2 v1 --"p:direct/P625"--> v3 v2 --"p:statement/P31"--> c4 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"p:direct/P31"--> c6 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v2 --"p:qualifier/P582"--> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end