Difference between revisions of "SimpleGraph Semantic Media Wiki Module"

From BITPlan E-Bike Wiki
Jump to navigation Jump to search
(Created page with "<source lang='sparql'> # Find Italian hot springs using the Wikidata Query service # taken from # http://wiki.bitplan.com/index.php/SPARQL#Hotsprings_worldwide # Created 2018-...")
 
Line 2: Line 2:
 
# Find Italian hot springs using the Wikidata Query service
 
# Find Italian hot springs using the Wikidata Query service
 
# taken from
 
# taken from
# http://wiki.bitplan.com/index.php/SPARQL#Hotsprings_worldwide
+
# http://wiki.bitplan.com/index.php/SPARQL#Hotsprings_in_Italy
 
# Created 2018-11 by Wolfgang Fahl BITPlan GmbH
 
# Created 2018-11 by Wolfgang Fahl BITPlan GmbH
 
#  
 
#  

Revision as of 13:49, 7 December 2018

# Find Italian hot springs using the Wikidata Query service
# taken from
# http://wiki.bitplan.com/index.php/SPARQL#Hotsprings_in_Italy
# Created 2018-11 by Wolfgang Fahl BITPlan GmbH
# 
# display the results as a map
#defaultView:Map
#
# select the hot spring and its coordinates
SELECT ?hotspring ?coord ?range WHERE {
  ?hotspring wdt:P31 wd:Q177380.
  ?hotspring ?range wd:Q38.
  ?hotspring wdt:P625 ?coord.
}