SlideShare a Scribd company logo
1 of 31
Download to read offline
Intro to WikiData & SPARQL
VALA Tech Camp W4a
Jane Frazier
Ontology Operations Lead
SEEK
@mignon1915
Peter Neish
Research Data Curator
University of Melbourne
@peterneish
Agenda
What is RDF?
What is Linked Open Data?
What is SPARQL?
Examples and hands-on
This presentation >>> http://bit.ly/vala_sparql
What is RDF?
RDF
resource description framework
SKOS
simple knowledge
organization system
OWL
web ontology
language
SPARQL
SPARQL protocol
and RDF query
language
Triple
store
database for RDF
data
standards
http://iam.beyonce.com/post/99742478639
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
is interested in
subject
predicate
object
Triples
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
Beyonce
http://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.jpg
Beyonce
http://dbpedia.org/resource/Beyoncé
URI
(shortened)URI
URI
Uniform Resource Identifiers (URIs)
Beyonce
http://dbpedia.org/resource/Beyoncé
http://dbpedia.org/resource/Jay_Z
Jay Z
1981-09-04
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
Beyonce
http://dbpedia.org/resource/Beyoncé
http://dbpedia.org/resource/Jay_Z
Jay Z
1981-09-04
adapted from https://www.w3.org/TR/rdf11-primer/example-graph-iris.jpg
Triple
store
database for RDF data
Different from a
relational
database!
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 Data
http://5stardata.info
Make your stuff available on the
Web (whatever format) under an
open license
5-Star Open Data
http://5stardata.info
Make it available as structured
data (e.g., Excel instead of
image scan of a table)
5-Star Open Data
http://5stardata.info
Make it available in a
non-proprietary open format
(e.g., CSV instead of Excel)
5-Star Open Data
http://5stardata.info
Use URIs to denote things, so
that people can point at your
stuff
5-Star Open Data
http://5stardata.info
Link your data to other data to
provide 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 or
phrase
○ 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 you
can do something with (eg graph or visualise)
● Is *kind of* like SQL
● Is used through a SPARQL endpoint
Example
SELECT ?painting
WHERE {
?painting <has medium> <oil on canvas>
}
subject predicate object
Wikidata
Wikidata is a free, collaborative, multilingual, secondary database, collecting structured
data to provide support for Wikipedia, Wikimedia Commons, the other wikis of the
Wikimedia movement, and to anyone in the world.
https://www.wikidata.org
SPARQL endpoint: https://query.wikidata.org/
Items and Properties
https://www.slideshare.net/_Emw/an-ambitious-wikidata-tutorial
Example: Melbourne (Q3141)
Build things on wikidata
http://histropedia.com/timeline/vz1ndyv56m/Apple-Computers
Hands on
Start with this cats example
1. Go to query.wikidata.org
2. Choose examples
3. Click on cats
SELECT ?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 query
1. Search for instance of library instead of cat
a. Change cat to library
b. Click run
2. Search for libraries in Australia
a. Click on +Filter and search for Australia
b. Click on instance of and change to country
c. Click run - seems a bit low - why don’t we get lots of libraries? (hint)
Improving our query
Our Query would work better if we found all libraries
SELECT ?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 columns
Start with http://tinyurl.com/y7ysrngp from the last step
1. Click on +Show
2. Search for inception
3. Click on +Show
4. Search for image
Should now look like http://tinyurl.com/y8r3rp8t
Note 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

More Related Content

What's hot

Semantic Web introduction
Semantic Web introductionSemantic Web introduction
Semantic Web introductionGraphity
 
Semantic Pipes and Semantic Mashups
Semantic Pipes and Semantic MashupsSemantic Pipes and Semantic Mashups
Semantic Pipes and Semantic Mashupsgiurca
 
Trying SPARQL Anything with MEI
Trying SPARQL Anything with MEITrying SPARQL Anything with MEI
Trying SPARQL Anything with MEIEnrico Daga
 
Knowledge graph construction with a façade - The SPARQL Anything Project
Knowledge graph construction with a façade - The SPARQL Anything ProjectKnowledge graph construction with a façade - The SPARQL Anything Project
Knowledge graph construction with a façade - The SPARQL Anything ProjectEnrico Daga
 
The SPARQL Anything project
The SPARQL Anything projectThe SPARQL Anything project
The SPARQL Anything projectEnrico Daga
 
Web Data Management with RDF
Web Data Management with RDFWeb Data Management with RDF
Web Data Management with RDFM. Tamer Özsu
 
A Little SPARQL in your Analytics
A Little SPARQL in your AnalyticsA Little SPARQL in your Analytics
A Little SPARQL in your AnalyticsDr. Neil Brittliff
 
Flagis linked open_data_stijn_goedertier
Flagis linked open_data_stijn_goedertierFlagis linked open_data_stijn_goedertier
Flagis linked open_data_stijn_goedertierFlagis VZW
 
Debunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative FactsDebunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative FactsNeo4j
 
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panicoDiego Valerio Camarda
 
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italianiDiego Valerio Camarda
 
(Enterprise) Linked Data Platform a new standard to manage LOD
(Enterprise) Linked Data Platform a new standard to manage LOD(Enterprise) Linked Data Platform a new standard to manage LOD
(Enterprise) Linked Data Platform a new standard to manage LODDiego Valerio Camarda
 
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...Fabrizio Orlandi
 
Web Archive Profiling Through Fulltext Search
Web Archive Profiling Through Fulltext SearchWeb Archive Profiling Through Fulltext Search
Web Archive Profiling Through Fulltext SearchSawood Alam
 
Theory behind Image Compression and Semantic Search
Theory behind Image Compression and Semantic SearchTheory behind Image Compression and Semantic Search
Theory behind Image Compression and Semantic SearchSanti Adavani
 
SHACL: Shaping the Big Ball of Data Mud
SHACL: Shaping the Big Ball of Data MudSHACL: Shaping the Big Ball of Data Mud
SHACL: Shaping the Big Ball of Data MudRichard Cyganiak
 
Two graph data models : RDF and Property Graphs
Two graph data models : RDF and Property GraphsTwo graph data models : RDF and Property Graphs
Two graph data models : RDF and Property Graphsandyseaborne
 

What's hot (20)

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

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

Intro to-technologies-Green-City-Hackathon-Athens
Intro to-technologies-Green-City-Hackathon-AthensIntro to-technologies-Green-City-Hackathon-Athens
Intro to-technologies-Green-City-Hackathon-AthensStoitsis Giannis
 
Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012François Belleau
 
Linked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryLinked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryRuben Schalk
 
Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013François Belleau
 
Linked Open Data: A simple how-to
Linked Open Data: A simple how-toLinked Open Data: A simple how-to
Linked Open Data: A simple how-tonvitucci
 
Making the semantic web work
Making the semantic web workMaking the semantic web work
Making the semantic web workPaul Houle
 
Exploring the Semantic Web
Exploring the Semantic WebExploring the Semantic Web
Exploring the Semantic WebRoberto García
 
The nature.com ontologies portal: nature.com/ontologies
The nature.com ontologies portal: nature.com/ontologiesThe nature.com ontologies portal: nature.com/ontologies
The nature.com ontologies portal: nature.com/ontologiesTony Hammond
 
State of the Semantic Web
State of the Semantic WebState of the Semantic Web
State of the Semantic WebIvan Herman
 
Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...
Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...
Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...OpenAIRE
 
Data Integration And Visualization
Data Integration And VisualizationData Integration And Visualization
Data Integration And VisualizationIvan Ermilov
 
2009 0807 Lod Gmod
2009 0807 Lod Gmod2009 0807 Lod Gmod
2009 0807 Lod GmodJun Zhao
 
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)net2-project
 
Informal presentation about RES
Informal presentation about RESInformal presentation about RES
Informal presentation about RESChristophe Guéret
 
Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016Martin Necasky
 
The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015Michele Pasin
 
Research Objects for improved sharing and reproducibility
Research Objects for improved sharing and reproducibilityResearch Objects for improved sharing and reproducibility
Research Objects for improved sharing and reproducibilityOscar Corcho
 
Why I don't use Semantic Web technologies anymore, event if they still influe...
Why I don't use Semantic Web technologies anymore, event if they still influe...Why I don't use Semantic Web technologies anymore, event if they still influe...
Why I don't use Semantic Web technologies anymore, event if they still influe...Gautier Poupeau
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeDan Brickley
 

Similar to VALA Tech Camp 2017: Intro to Wikidata & SPARQL (20)

Intro to-technologies-Green-City-Hackathon-Athens
Intro to-technologies-Green-City-Hackathon-AthensIntro to-technologies-Green-City-Hackathon-Athens
Intro to-technologies-Green-City-Hackathon-Athens
 
Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012
 
Linked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryLinked Open Data Utrecht University Library
Linked Open Data Utrecht University Library
 
Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013
 
Linked Open Data: A simple how-to
Linked Open Data: A simple how-toLinked Open Data: A simple how-to
Linked Open Data: A simple how-to
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
Making the semantic web work
Making the semantic web workMaking the semantic web work
Making the semantic web work
 
Exploring the Semantic Web
Exploring the Semantic WebExploring the Semantic Web
Exploring the Semantic Web
 
The nature.com ontologies portal: nature.com/ontologies
The nature.com ontologies portal: nature.com/ontologiesThe nature.com ontologies portal: nature.com/ontologies
The nature.com ontologies portal: nature.com/ontologies
 
State of the Semantic Web
State of the Semantic WebState of the Semantic Web
State of the Semantic Web
 
Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...
Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...
Making Use of the Linked Open Data Services for OpenAIRE (DI4R 2016 tutorial ...
 
Data Integration And Visualization
Data Integration And VisualizationData Integration And Visualization
Data Integration And Visualization
 
2009 0807 Lod Gmod
2009 0807 Lod Gmod2009 0807 Lod Gmod
2009 0807 Lod Gmod
 
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
 
Informal presentation about RES
Informal presentation about RESInformal presentation about RES
Informal presentation about RES
 
Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016Linked Open Data - Masaryk University in Brno 8.11.2016
Linked Open Data - Masaryk University in Brno 8.11.2016
 
The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015
 
Research Objects for improved sharing and reproducibility
Research Objects for improved sharing and reproducibilityResearch Objects for improved sharing and reproducibility
Research Objects for improved sharing and reproducibility
 
Why I don't use Semantic Web technologies anymore, event if they still influe...
Why I don't use Semantic Web technologies anymore, event if they still influe...Why I don't use Semantic Web technologies anymore, event if they still influe...
Why I don't use Semantic Web technologies anymore, event if they still influe...
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in Practice
 

More from Jane Frazier

Ontology Modelling 101
Ontology Modelling 101Ontology Modelling 101
Ontology Modelling 101Jane Frazier
 
Research Vocabularies Australia: vocabularies as a national service
Research Vocabularies Australia: vocabularies as a national serviceResearch Vocabularies Australia: vocabularies as a national service
Research Vocabularies Australia: vocabularies as a national serviceJane Frazier
 
Day in the life of a data librarian [presentation for ANU 23Things group]
Day in the life of a data librarian [presentation for ANU 23Things group]Day in the life of a data librarian [presentation for ANU 23Things group]
Day in the life of a data librarian [presentation for ANU 23Things group]Jane Frazier
 
Intro to metadata, RIF-CS, RDA records [ANU 2016]
Intro to metadata, RIF-CS, RDA records [ANU 2016]Intro to metadata, RIF-CS, RDA records [ANU 2016]
Intro to metadata, RIF-CS, RDA records [ANU 2016]Jane Frazier
 
Research data and output management
Research data and output managementResearch data and output management
Research data and output managementJane Frazier
 
Controlled vocabularies for health & medicine
Controlled vocabularies for health & medicineControlled vocabularies for health & medicine
Controlled vocabularies for health & medicineJane Frazier
 
CSIRO Summer of Vocabularies
CSIRO Summer of VocabulariesCSIRO Summer of Vocabularies
CSIRO Summer of VocabulariesJane Frazier
 
Flying solo: data librarians working outside (traditional) libraries
Flying solo: data librarians working outside (traditional) librariesFlying solo: data librarians working outside (traditional) libraries
Flying solo: data librarians working outside (traditional) librariesJane Frazier
 
Subject tagging: Recommendations for Dryad curators and scientists
Subject tagging: Recommendations for Dryad curators and scientistsSubject tagging: Recommendations for Dryad curators and scientists
Subject tagging: Recommendations for Dryad curators and scientistsJane Frazier
 
Data curation at Dryad Digital Repository: A former curator's perspective
Data curation at Dryad Digital Repository: A former curator's perspectiveData curation at Dryad Digital Repository: A former curator's perspective
Data curation at Dryad Digital Repository: A former curator's perspectiveJane Frazier
 
Toward linked data: Library of Congress Medium of Performance Thesaurus
Toward linked data: Library of Congress Medium of Performance Thesaurus Toward linked data: Library of Congress Medium of Performance Thesaurus
Toward linked data: Library of Congress Medium of Performance Thesaurus Jane Frazier
 
A Bibliographic Overview of English-Language Opera Translation
A Bibliographic Overview of English-Language Opera TranslationA Bibliographic Overview of English-Language Opera Translation
A Bibliographic Overview of English-Language Opera TranslationJane Frazier
 
Music Information Retrieval: A Literature Review
Music Information Retrieval: A Literature ReviewMusic Information Retrieval: A Literature Review
Music Information Retrieval: A Literature ReviewJane Frazier
 
The Library of Congress Medium of Performance Thesaurus: Deployment through t...
The Library of Congress Medium of Performance Thesaurus: Deployment through t...The Library of Congress Medium of Performance Thesaurus: Deployment through t...
The Library of Congress Medium of Performance Thesaurus: Deployment through t...Jane Frazier
 

More from Jane Frazier (14)

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

Recently uploaded

FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxolyaivanovalion
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfLars Albertsson
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingNeil Barnes
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxfirstjob4
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionfulawalesam
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystSamantha Rae Coolbeth
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxolyaivanovalion
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 

Recently uploaded (20)

FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptx
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdf
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data Storytelling
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptx
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interaction
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data Analyst
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptx
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 

VALA Tech Camp 2017: Intro to Wikidata & SPARQL