Main Page: Difference between revisions

From DREAMS
Jump to navigation Jump to search
Line 16: Line 16:
== Graphs ==
== Graphs ==
* Endpoint: https://dreams.wiki.opencura.com/query/
* Endpoint: https://dreams.wiki.opencura.com/query/
* [https://tinyurl.com/y7jzsap9 All items and properties]
* [tinyurl.com/y7jzsap9 All items and properties]
* [tinyurl.com/yhvzw8p7 Geographical map]
 
=== Example ===
<pre>
#defaultView:Map
PREFIX dreams: <http://dreams.wiki.opencura.com/entity/>
PREFIX dreamst: <http://dreams.wiki.opencura.com/prop/direct/>
 
SELECT ?report ?reportLabel ?location ?locationLabel ?geo {
  ?report dreamst:P12 ?location .
  ?location dreamst:P13 ?geo
  SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en". }
}
</pre>

Revision as of 18:03, 10 November 2021

Dokuments

Ontology

Items

Properties

Graphs

Example

#defaultView:Map
PREFIX dreams: <http://dreams.wiki.opencura.com/entity/>
PREFIX dreamst: <http://dreams.wiki.opencura.com/prop/direct/>

SELECT ?report ?reportLabel ?location ?locationLabel ?geo {
  ?report dreamst:P12 ?location .
  ?location dreamst:P13 ?geo
  SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en". }
}