99
edits
ChristianSW (talk | contribs) m (...) |
ChristianSW (talk | contribs) m (...) |
||
(10 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Observations by | == Observations by observer with links to iNaturalist == | ||
<sparql tryit | <sparql tryit="1"> | ||
PREFIX wbt: <http://biodiversity.wiki.opencura.com/prop/direct/> | PREFIX wbt: <http://biodiversity.wiki.opencura.com/prop/direct/> | ||
PREFIX | PREFIX observer: <https://www.inaturalist.org/people/> | ||
SELECT | SELECT ?iNatlink WHERE { | ||
?observation wbt:P3 | ?observation wbt:P3 observer:christiansw . | ||
?observation wbt:P6 ?iNatlink . | ?observation wbt:P6 ?iNatlink . | ||
} | } | ||
Line 12: | Line 11: | ||
== Single observation with location and link to iNaturalist == | == Single observation with location and link to iNaturalist == | ||
<sparql tryit | <sparql tryit="1"> | ||
#defaultView:Map | #defaultView:Map | ||
Line 26: | Line 25: | ||
== Link to German Wikipedia == | == Link to German Wikipedia == | ||
<sparql tryit | <sparql tryit="1"> | ||
#defaultView:Map | #defaultView:Map | ||
Line 33: | Line 32: | ||
SELECT ?location ?iNatlink ?wikipedia WHERE { | SELECT ?location ?iNatlink ?wikipedia WHERE { | ||
VALUES ?observation {wb: | VALUES ?observation {wb:Q124625} | ||
?observation wbt:P8 ?location ; | ?observation wbt:P8 ?location ; | ||
wbt:P6 ?iNatlink ; | wbt:P6 ?iNatlink ; | ||
Line 47: | Line 46: | ||
== Link to Wikispecies == | == Link to Wikispecies == | ||
<sparql tryit | <sparql tryit="1"> | ||
#defaultView:Map | #defaultView:Map | ||
Line 63: | Line 62: | ||
?wikispecies schema:isPartOf <https://species.wikimedia.org/> . | ?wikispecies schema:isPartOf <https://species.wikimedia.org/> . | ||
} | } | ||
} | |||
</sparql> | |||
== My ladybirds == | |||
<sparql tryit="1"> | |||
#defaultView:Map{"hide":"?location"} | |||
PREFIX wb: <http://biodiversity.wiki.opencura.com/entity/> | |||
PREFIX wbt: <http://biodiversity.wiki.opencura.com/prop/direct/> | |||
PREFIX observer: <https://www.inaturalist.org/people/> | |||
SELECT DISTINCT ?location ?iNatlink ?layer WHERE { | |||
?observation wbt:P3 observer:christiansw ; | |||
wbt:P8 ?location ; | |||
wbt:P6 ?iNatlink ; | |||
wbt:P9 ?scientific_name . | |||
?scientific_name wbt:P11 ?wikidata_mapping . | |||
FILTER(?scientific_name IN (wb:Q5053, wb:Q5526, wb:Q97245, wb:Q128695, wb:Q96351)). | |||
SERVICE <https://query.wikidata.org/sparql> { | |||
?wikidata_mapping rdfs:label ?label FILTER (lang(?label) = "de") . | |||
BIND(?label AS ?layer). | |||
} | |||
} | } | ||
</sparql> | </sparql> |
edits