Movatterモバイル変換


[0]ホーム

URL:


Jane Frazier, profile picture
Uploaded byJane Frazier
140 views

VALA Tech Camp 2017: Intro to Wikidata & SPARQL

The document is an introduction to Wikidata and SPARQL, focusing on RDF, linked open data, and examples of using SPARQL for querying. It covers essential concepts such as unique identifiers for objects, the importance of semantic data, and the interoperability of data across platforms. Additionally, it includes hands-on examples and resources for further exploration of SPARQL and data accessibility.

Related topics:

Embed presentation

Download to read offline
Intro to WikiData & SPARQLVALA Tech Camp W4aJane FrazierOntology Operations LeadSEEK@mignon1915Peter NeishResearch Data CuratorUniversity of Melbourne@peterneish
AgendaWhat is RDF?What is Linked Open Data?What is SPARQL?Examples and hands-onThis presentation >>> http://bit.ly/vala_sparql
What is RDF?RDFresource description frameworkSKOSsimple knowledgeorganization systemOWLweb ontologylanguageSPARQLSPARQL protocoland RDF querylanguageTriplestoredatabase for RDFdatastandards
http://iam.beyonce.com/post/99742478639
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpgis interested insubjectpredicateobjectTriples
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpgBeyoncehttp://dbpedia.org/resource/BeyoncéUniform Resource Identifiers (URIs)Resources can be…● People● Places● Things● Documents● Data● Publications● Relationships
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpgBeyoncehttp://dbpedia.org/resource/BeyoncéURI(shortened)URIURIUniform Resource Identifiers (URIs)
Beyoncehttp://dbpedia.org/resource/Beyoncéhttp://dbpedia.org/resource/Jay_ZJay Z1981-09-04adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
Beyoncehttp://dbpedia.org/resource/Beyoncéhttp://dbpedia.org/resource/Jay_ZJay Z1981-09-04adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpgTriplestoredatabase for RDF dataDifferent from arelationaldatabase!
What is Linked Open Data?semantically linked structured data on the open web
BUT HOW?https://media.npr.org/assets/img/2015/10/24/gettyimages-493665354-e46c4f072368e3ce66c74da604812c80b20b168a.jpg
5-Star Open Datahttp://5stardata.infoMake your stuff available on theWeb (whatever format) under anopen license
5-Star Open Datahttp://5stardata.infoMake it available as structureddata (e.g., Excel instead ofimage scan of a table)
5-Star Open Datahttp://5stardata.infoMake it available in anon-proprietary open format(e.g., CSV instead of Excel)
5-Star Open Datahttp://5stardata.infoUse URIs to denote things, sothat people can point at yourstuff
5-Star Open Datahttp://5stardata.infoLink your data to other data toprovide context
Why is this stuff important?● W3C approved standards for representing knowledge graphs○ Lots of tools are built upon the same formats● Each object is identified by a globally-unique machine-readable ID instead of a human-readable word orphrase○ Human-readable word or phrase can change when necessary without disrupting use○ Can capture data in any language● Any object can relate to any other object & relationship types are standard (i.e. SKOS) OR customisable(i.e. OWL)● Data (& the relationships between them) can be reused by people (human consumption) & products(machine consumption) all over the web● Can easily leverage other open data based on the same standards○ schema.org○ Geonames○ Getty vocabularies (AAT, etc.)○ Wikidata● Lay the framework for international (multilingual & multicultural) interoperability
What is SPARQL?● SPARQL Protocol and RDF Query Language● Allows us to translate interlinked graph data into normalised tabular data that youcan do something with (eg graph or visualise)● Is *kind of* like SQL● Is used through a SPARQL endpoint
ExampleSELECT ?paintingWHERE {?painting <has medium> <oil on canvas>}subject predicate object
WikidataWikidata is a free, collaborative, multilingual, secondary database, collecting structureddata to provide support for Wikipedia, Wikimedia Commons, the other wikis of theWikimedia movement, and to anyone in the world.https://www.wikidata.orgSPARQL endpoint: https://query.wikidata.org/
Items and Propertieshttps://www.slideshare.net/_Emw/an-ambitious-wikidata-tutorial
Example: Melbourne (Q3141)
Build things on wikidatahttp://histropedia.com/timeline/vz1ndyv56m/Apple-Computers
Hands onStart with this cats example1. Go to query.wikidata.org2. Choose examples3. Click on catsSELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q146.SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }}Play along at home at http://bit.ly/vala_sparql
Wikidata Query page
Modifying Wikidata query1. Search for instance of library instead of cata. Change cat to libraryb. Click run2. Search for libraries in Australiaa. Click on +Filter and search for Australiab. Click on instance of and change to countryc. Click run - seems a bit low - why don’t we get lots of libraries? (hint)
Improving our queryOur Query would work better if we found all librariesSELECT ?item ?itemLabel WHERE {?item wdt:P31/wdt:P279* wd:Q7075.SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }?item wdt:P17 wd:Q408.}http://tinyurl.com/y7ysrngp
Adding columnsStart with http://tinyurl.com/y7ysrngp from the last step1. Click on +Show2. Search for inception3. Click on +Show4. Search for imageShould now look like http://tinyurl.com/y8r3rp8tNote the default behaviour is a table, check out the image grid and timeline
Accessing data● Through the query page using query helper or sparql● Through the download on the query page● Using Linked Data content negotiation: http://www.wikidata.org/entity/Q42● Using data url: http://www.wikidata.org/wiki/Special:EntityData/Q42.json● Database dumps in rdf, json and xml● SPARQL endpoint GET and POST requests. Eg cats as json
Further Resources● This presentation: http://bit.ly/vala_sparql● 5-Star Open Data: http://5stardata.info/en/● Wikidata query manual:https://www.mediawiki.org/wiki/Wikidata_query_service/User_Manual● Wikidata properties: https://www.wikidata.org/wiki/Wikidata:List_of_properties● Reasonator: https://tools.wmflabs.org/reasonator/● Histropedia: http://histropedia.com● Programming Historian - Linked Open Data lesson:http://programminghistorian.org/lessons/graph-databases-and-SPARQL● Comparison of SQL and SPARQL:http://www.cambridgesemantics.com/semantic-university/sparql-vs-sql-intro

Recommended

PPTX
RDF data model
PDF
Graph databases & data integration v2
PPTX
Introduction to RDF Data Model
PDF
Data quality in Real Estate
PDF
20110728 datalift-rpi-troy
PPT
Semantic web and Drupal: an introduction
PDF
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
PDF
PhD thesis defense: Large-scale multilingual knowledge extraction, publishin...
PDF
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
PPT
Semantic Pipes and Semantic Mashups
 
PDF
The SPARQL Anything project
PDF
Knowledge graph construction with a façade - The SPARQL Anything Project
PDF
Two graph data models : RDF and Property Graphs
PDF
Debunking some “RDF vs. Property Graph” Alternative Facts
 
PPTX
SHACL: Shaping the Big Ball of Data Mud
PDF
Jesús Barrasa
PDF
Trying SPARQL Anything with MEI
PPTX
A Little SPARQL in your Analytics
ODP
Semantic Web introduction
PPTX
Getting triples from records: the role of ISBD
PDF
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
PDF
Flagis linked open_data_stijn_goedertier
PDF
Web Archive Profiling Through Fulltext Search
PDF
Web Data Management with RDF
PDF
(Enterprise) Linked Data Platform a new standard to manage LOD
PDF
Keynote session - LOD2014 W3C event
PDF
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
PDF
Theory behind Image Compression and Semantic Search
PPTX
Knowledge Technologies: Opportunities and Challenges
PDF
SFScon 2020 - Peter Hopfgartner - Open Data de luxe

More Related Content

PPTX
RDF data model
PDF
Graph databases & data integration v2
PPTX
Introduction to RDF Data Model
PDF
Data quality in Real Estate
PDF
20110728 datalift-rpi-troy
PPT
Semantic web and Drupal: an introduction
PDF
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
PDF
PhD thesis defense: Large-scale multilingual knowledge extraction, publishin...
RDF data model
Graph databases & data integration v2
Introduction to RDF Data Model
Data quality in Real Estate
20110728 datalift-rpi-troy
Semantic web and Drupal: an introduction
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
PhD thesis defense: Large-scale multilingual knowledge extraction, publishin...

What's hot

PDF
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
PPT
Semantic Pipes and Semantic Mashups
 
PDF
The SPARQL Anything project
PDF
Knowledge graph construction with a façade - The SPARQL Anything Project
PDF
Two graph data models : RDF and Property Graphs
PDF
Debunking some “RDF vs. Property Graph” Alternative Facts
 
PPTX
SHACL: Shaping the Big Ball of Data Mud
PDF
Jesús Barrasa
PDF
Trying SPARQL Anything with MEI
PPTX
A Little SPARQL in your Analytics
ODP
Semantic Web introduction
PPTX
Getting triples from records: the role of ISBD
PDF
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
PDF
Flagis linked open_data_stijn_goedertier
PDF
Web Archive Profiling Through Fulltext Search
PDF
Web Data Management with RDF
PDF
(Enterprise) Linked Data Platform a new standard to manage LOD
PDF
Keynote session - LOD2014 W3C event
PDF
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
PDF
Theory behind Image Compression and Semantic Search
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Semantic Pipes and Semantic Mashups
 
The SPARQL Anything project
Knowledge graph construction with a façade - The SPARQL Anything Project
Two graph data models : RDF and Property Graphs
Debunking some “RDF vs. Property Graph” Alternative Facts
 
SHACL: Shaping the Big Ball of Data Mud
Jesús Barrasa
Trying SPARQL Anything with MEI
A Little SPARQL in your Analytics
Semantic Web introduction
Getting triples from records: the role of ISBD
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
Flagis linked open_data_stijn_goedertier
Web Archive Profiling Through Fulltext Search
Web Data Management with RDF
(Enterprise) Linked Data Platform a new standard to manage LOD
Keynote session - LOD2014 W3C event
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
Theory behind Image Compression and Semantic Search

Similar to VALA Tech Camp 2017: Intro to Wikidata & SPARQL

PPTX
Knowledge Technologies: Opportunities and Challenges
PDF
SFScon 2020 - Peter Hopfgartner - Open Data de luxe
PDF
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...
PPTX
21-RDF and triplestores in NOSql database.pptx
PDF
Querying the Wikidata Knowledge Graph
PPTX
Semantic MediaWiki - a Linked Open Data Platform
ODP
State of the Semantic Web
PPTX
GDG Meets U event - Big data & Wikidata - no lies codelab
PDF
Querying Linked Data with SPARQL (2010)
PPT
Re-using Media on the Web: Media fragment re-mixing and playout
PDF
Linked Open Data for Digital Humanities
PDF
Querying Linked Data with SPARQL
PDF
Visualize open data with Plone - eea.daviz PLOG 2013
PPTX
Triplestore and SPARQL
PDF
Querying the Wikidata Knowledge Graph
PDF
Hala skafkeynote@conferencedata2021
PDF
Wikidata as a hub for the linked data cloud
PPTX
SWT Lecture Session 4 - SW architectures and SPARQL
PPTX
4 sw architectures and sparql
PDF
Linked Data and Knowledge Graphs -- Constructing and Understanding Knowledge ...
Knowledge Technologies: Opportunities and Challenges
SFScon 2020 - Peter Hopfgartner - Open Data de luxe
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...
21-RDF and triplestores in NOSql database.pptx
Querying the Wikidata Knowledge Graph
Semantic MediaWiki - a Linked Open Data Platform
State of the Semantic Web
GDG Meets U event - Big data & Wikidata - no lies codelab
Querying Linked Data with SPARQL (2010)
Re-using Media on the Web: Media fragment re-mixing and playout
Linked Open Data for Digital Humanities
Querying Linked Data with SPARQL
Visualize open data with Plone - eea.daviz PLOG 2013
Triplestore and SPARQL
Querying the Wikidata Knowledge Graph
Hala skafkeynote@conferencedata2021
Wikidata as a hub for the linked data cloud
SWT Lecture Session 4 - SW architectures and SPARQL
4 sw architectures and sparql
Linked Data and Knowledge Graphs -- Constructing and Understanding Knowledge ...

More from Jane Frazier

PDF
CSIRO Summer of Vocabularies
PDF
Day in the life of a data librarian [presentation for ANU 23Things group]
PDF
Ontology Modelling 101
PDF
Data curation at Dryad Digital Repository: A former curator's perspective
PDF
The Library of Congress Medium of Performance Thesaurus: Deployment through t...
PDF
Subject tagging: Recommendations for Dryad curators and scientists
PDF
Scaling Taxonomy Expertise: Helping Product Teams Navigate Taxonomy Adoption ...
PDF
Music Information Retrieval: A Literature Review
PDF
Intro to metadata, RIF-CS, RDA records [ANU 2016]
PDF
Flying solo: data librarians working outside (traditional) libraries
PDF
Toward linked data: Library of Congress Medium of Performance Thesaurus
PDF
Research data and output management
PDF
Research Vocabularies Australia: vocabularies as a national service
PDF
Controlled vocabularies for health & medicine
PDF
A Bibliographic Overview of English-Language Opera Translation
CSIRO Summer of Vocabularies
Day in the life of a data librarian [presentation for ANU 23Things group]
Ontology Modelling 101
Data curation at Dryad Digital Repository: A former curator's perspective
The Library of Congress Medium of Performance Thesaurus: Deployment through t...
Subject tagging: Recommendations for Dryad curators and scientists
Scaling Taxonomy Expertise: Helping Product Teams Navigate Taxonomy Adoption ...
Music Information Retrieval: A Literature Review
Intro to metadata, RIF-CS, RDA records [ANU 2016]
Flying solo: data librarians working outside (traditional) libraries
Toward linked data: Library of Congress Medium of Performance Thesaurus
Research data and output management
Research Vocabularies Australia: vocabularies as a national service
Controlled vocabularies for health & medicine
A Bibliographic Overview of English-Language Opera Translation

Recently uploaded

PPTX
MC25104 - Data structures and algorithms using python Python_OOP_Theory_and_P...
PPT
Data Structures in java programing and ICT.ppt
PDF
Starting with SPSS.pdf spss software by ibm
PPT
Java Swing in java object oriented progaming.ppt
PPT
Transportation Management Plan (Effectiveness Study).ppt
PPTX
Understanding purpose, audience MSDA .pptx
PPTX
spam detacting system.pptx for mca students
DOCX
Leadership as a Catalyst How Nutrition Leadership Influences Health Financing...
PPT
(7) Qualitative Research Methodology (overview).ppt
PDF
MariaDB Monitoring for Enhancing Performance, Availability, and Security
PDF
2022.05.20_Presentazione_Luca-Ginnari-Satriani_Impurities.pdf
PDF
The Hidden Risks in Linux Power Monitoring and How to Fix Them
PDF
System Center 2025 Migration: Preparing for a Smooth Transition
PPTX
ammonia process.pptx Amisha Group 7.pptxAmisha Group 7.pptxAmisha Group 7.pptx
PDF
What the Insurance Industry Considers “High-Risk” Dog Breeds
PPT
atomic structure2.ppt qwgdwgdwidgqwuidg wdhwgdwgwydg qwgdwydgwydg87
PPTX
Pollution_Assignment_GurveerKaur_1112.pptx
PPTX
Chinese economy in the era a modern world
PPTX
MASS INTERPRETATION OF ORGANIC COMPOUNDS
PPTX
Approach to Intra-Hepatic Cholestasis.pptx
MC25104 - Data structures and algorithms using python Python_OOP_Theory_and_P...
Data Structures in java programing and ICT.ppt
Starting with SPSS.pdf spss software by ibm
Java Swing in java object oriented progaming.ppt
Transportation Management Plan (Effectiveness Study).ppt
Understanding purpose, audience MSDA .pptx
spam detacting system.pptx for mca students
Leadership as a Catalyst How Nutrition Leadership Influences Health Financing...
(7) Qualitative Research Methodology (overview).ppt
MariaDB Monitoring for Enhancing Performance, Availability, and Security
2022.05.20_Presentazione_Luca-Ginnari-Satriani_Impurities.pdf
The Hidden Risks in Linux Power Monitoring and How to Fix Them
System Center 2025 Migration: Preparing for a Smooth Transition
ammonia process.pptx Amisha Group 7.pptxAmisha Group 7.pptxAmisha Group 7.pptx
What the Insurance Industry Considers “High-Risk” Dog Breeds
atomic structure2.ppt qwgdwgdwidgqwuidg wdhwgdwgwydg qwgdwydgwydg87
Pollution_Assignment_GurveerKaur_1112.pptx
Chinese economy in the era a modern world
MASS INTERPRETATION OF ORGANIC COMPOUNDS
Approach to Intra-Hepatic Cholestasis.pptx

VALA Tech Camp 2017: Intro to Wikidata & SPARQL


[8]ページ先頭

©2009-2025 Movatter.jp