query-832fe54977f688b17d0e52491f6223b3

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?CRS ?CRSLabel ?id WHERE {
  # a CRS that has an EPSG CRS id
  ?CRS wdt:P1338 ?id .

  SERVICE wikibase:label {
     bd:serviceParam wikibase:language "en" .
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?CRS"):::projected v2("?id"):::projected c3(["bd:serviceParam"]):::iri c5(["en"]):::literal v1 --"wdt:P1338"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end