Difference between revisions of "SimpleGraph Semantic Media Wiki Module"
Jump to navigation
Jump to search
m (Wf moved page Thermalbath to SimpleGraph Semantic Media Wiki Module without leaving a redirect) |
|||
Line 7: | Line 7: | ||
</slideshow> | </slideshow> | ||
==⌘⌘ Intro == | ==⌘⌘ Intro == | ||
− | |||
[[File:Saturnia_Cascate_del_Mulino.jpg|800px]] | [[File:Saturnia_Cascate_del_Mulino.jpg|800px]] | ||
Von Markus Bernet - Eigenes Werk, CC BY-SA 2.5, [https://commons.wikimedia.org/w/index.php?curid=1137376 File:Saturnia Cascate del Mulino.jpg] | Von Markus Bernet - Eigenes Werk, CC BY-SA 2.5, [https://commons.wikimedia.org/w/index.php?curid=1137376 File:Saturnia Cascate del Mulino.jpg] | ||
+ | === ⌘⌘ Wolfgang Fahl === | ||
+ | [[File:Wfjuggling.png|left]] | ||
+ | * [http://semantic-mediawiki.org/wiki/User:WolfgangFahl Wolfgang] [mailto:wf@bitplan.com wf@bitplan.com] is from germany. | ||
+ | * He is a teacher for software architecture | ||
+ | * He has been working with MediaWiki since 2007 | ||
+ | * He has started learning english in England | ||
+ | === ⌘⌘ Previous SMW Talks === | ||
+ | # [http://royal-family.bitplan.com/index.php?title=WikiCMS&action=slide SMWCon Fall 2017 Rotterdam - WikiCMS] | ||
+ | |||
===⌘⌘ Agenda === | ===⌘⌘ Agenda === | ||
* What is Apache TinkerPop/Gremlin? | * What is Apache TinkerPop/Gremlin? |
Revision as of 06:48, 8 December 2018
<slideshow style="bitplan" headingmark="⌘⌘" incmark="…" scaled="true" font="Comic Sans MS, Calibri, cursive" >
- title
SimpleGraph Semantic Media Wiki Module- author
- Wolfgang Fahl info@bitplan.com
- footer
- Integrating Semantic Media Wiki with multiple other systems via Apache TinkerPop/Gremlin
- subfooter
- SMW CON Fall 2018 Regensburg
</slideshow>
⌘⌘ Intro
Von Markus Bernet - Eigenes Werk, CC BY-SA 2.5, File:Saturnia Cascate del Mulino.jpg
⌘⌘ Wolfgang Fahl
- Wolfgang wf@bitplan.com is from germany.
- He is a teacher for software architecture
- He has been working with MediaWiki since 2007
- He has started learning english in England
⌘⌘ Previous SMW Talks
⌘⌘ Agenda
- What is Apache TinkerPop/Gremlin?
- What is SimpleGraph?
- Example: Planning a bike tour to tuscany thermal baths
⌘⌘ SPARQL Query
# 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.
}
Hotsprings in Tuscany
# Find Tuscany hot springs using the Wikidata Query service
# taken from
# http://wiki.bitplan.com/index.php/SPARQL#Hotsprings_tuscany
# Created 2018-12-07 by Wolfgang Fahl BITPlan GmbH
#
# display the results as a map
#defaultView:Map
#
# select the hot spring and its coordinates
SELECT ?hotspring ?coord WHERE {
# Ravenna
wd:Q13364 wdt:P625 ?NECorner .
# Aleria Corsica
wd:Q212399 wdt:P625 ?SWCorner .
?hotspring wdt:P31 wd:Q177380.
?hotspring wdt:P625 ?coord.
SERVICE wikibase:box {
?item wdt:P625 ?coord .
bd:serviceParam wikibase:cornerSouthWest ?SWCorner .
bd:serviceParam wikibase:cornerNorthEast ?NECorner .
}
}
⌘⌘ Thermal Baths