query-a9a24671f946f7a4b75ae3251d8f3a14

rq turtle/ttl

Example query 2 Wikidata map of places with links to iNaturalist

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT DISTINCT ?item ?itemLabel ?pic ?coord ?iNatlink WHERE {
  ?item wdt:P7471 ?iNat .
  ?item wdt:P625 ?coord .
  OPTIONAL { ?item wdt:P18 ?pic . }
  BIND(URI(CONCAT("https://www.inaturalist.org/observations?subview=grid&view=species&place_id=", STR(?iNat))) AS ?iNatlink)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coord"):::projected v2("?iNat") v5("?iNatlink"):::projected v1("?item"):::projected v4("?pic"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P7471"--> v2 v1 --"wdt:P625"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v4 end bind0[/"concat('https://www.inaturalist.org/observations?subview=grid&view=species&place_id=',str(?iNat))"/] v2 --o bind0 bind0 --as--o v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end