SlideShare a Scribd company logo
1 of 79
Data integration and
visualization
Ivan Ermilov
University of Leipzig
USING RDF
Agenda
• Data discovery
• Data conversion
• Data integration
Linked Data Lifecycle
http://stack.lod2.eu/blog/
DATA DISCOVERY
Data Discovery
• Ontologies
• Vocabularies
• Documents
Data Discovery: Ontologies
Specification of a conceptualization
Data Discovery: Ontologies
Data Discovery: Ontologies
http://swoogle.umbc.edu/
http://watson.kmi.open.ac.uk/WatsonWUI/
Data Discovery: Vocabularies
FOAF – Friend of a Friend:
• A Semantic Web Vocabulary used to describe people,
their activities and their relationships between one
another.
• It is becoming very popular for people who discover this
to setup and have their own FOAF profile.
• This vocabulary is the base from which other
vocabularies are extended.
Data Discovery: Vocabularies
http://xmlns.com/foaf/spec/
Data Discovery: Vocabularies
Data Discovery: Vocabularies
http://lov.okfn.org/dataset/lov/
Data Discovery: Documents
<http://www.linkedin.com/in/timbl> <http://purl.org/dc/terms/title> "Tim Berners-Lee - LinkedIn"@en .
_:node0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Address> .
_:node0 <http://www.w3.org/2006/vcard/ns#locality> "Greater Boston Area" .
<http://www.linkedin.com/in/timbl> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
<http://www.w3.org/2002/12/cal/icaltzd#vcalendar> .
_:node1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/12/cal/icaltzd#Vevent> .
_:node1 <http://www.w3.org/2002/12/cal/icaltzd#summary> "MIT" .
_:node1 <http://www.w3.org/2002/12/cal/icaltzd#description>
"Director, World Wide Web ConsortiumnnAlso, part time Prof in ECS at Southampton University, UK" .
Data Discovery: Documents
http://sindice.com/
Data Catalogs
• Community maintained registry exists
• Contains 362 data catalogs (growing)
• Based on CKAN data catalog platform
http://datacatalogs.org/
Data Catalogs
http://datacatalogs.org/
What is CKAN?
• Metadata repository with crowd-sourcing enabled
• Everybody can register and publish data about their datasets
• Developer-friendly web application
• Provides a well-documented API
• Easy to install, easy to use as your own metadata
repository
CKAN Architecture
Packages Resources
contain
And you can search
for them
The Data Hub
The Data Hub
Hub of Data
Hub of Data
CKAN API
• Well-documented
• http://docs.ckan.org/en/latest/api.html
• Covers everything you can do with the web interface
• You can write your own web interface
• OKFN maintained library for accessing API
• ckanclient (python)
CKAN API: Methods
• Retrieving data
• Creating new data
• Update existing data
• Delete existing data
• Data is: packages, resources, groups, tags, users etc.
CKAN API: Examples
ckan = CkanClient(base_location=ckan_api_url,
api_key=ckan_api_key)
package_list = ckan.package_list()
formats = []
for package in package_list:
resource_list = package[‘resources’]
for resource in resource_list:
if(not resource['format'] in formats):
formats.append(resource['format'])
return sorted(formats)
https://github.com/okfn/ckanclient
Use Case: CSV2RDF Conversion
• Framework for CSV2RDF conversion
• Crowd-sourcing enabled
• RDF Visualizations
https://github.com/earthquakesan/CSV2RDF-WIKI
CSV2RDF Conversion: Why CSV?
CSV2RDF Conversion: Data Quality
Data conversion
Data Conversion
• Structured: Relational Databases
• Semi structured: XML, HTML, XLS, CSV, APIs
• Unstructured: Raw text
PublicData.eu Statistics
XML
RDB
Spreadsheet
?
How does government
spending in certain sectors
relates to my company’s
earnings?
How does the historic
spending relates to the
current figures?
Give me report about all of
my customers across the
whole organization
Data Conversion
Custom
scripts
XML
RDB
Spreadsheet
?
Data Conversion
XPath
SQL
Result
aggregation
Merging data with RDF
XML
RDB
Spreadsheet
Once in RDF:
 Easily integrate your
data
 Concepts can be
mapped to one
another
 Query everything with
one W3C standard
language (SPARQL)
Merging Data with RDF: Example
• Blue App has model
• Red App has model
• Need to integrate Red & Blue models
Merging Data with RDF: Example
• Step 1: Merge RDF
• Same nodes (URIs) join automatically
Merging Data with RDF: Example
• Step 2: Add relationships and rules
• (Relationships are also RDF)
Merging Data with RDF: Example
• Step 3: Define Green model
• (Making use of Red
• & Blue models)
Merging Data with RDF: Example
• What the Blue app sees:
• No difference!
Merging Data with RDF: Example
• What the Red app sees
• No difference!
Merging Data with RDF: Example
RDF helps bridge other formats/models
• Producers and consumers may use different formats/models
• Rules can specify transformations
• Inference engine finds path to desired result model
RDF
Model
Transform
A1
A2
A3
B1
B2
C1
C2
X
Y
Z Ontologies
& Rules
Ontologies
& Rules
Ontologies
& Rules
RDB2RDF
Extract, Transform, Load (ETL)
Automatic Mapping
Semi-Automatic Mapping
R2RML
Sparqlify: Examples
Sparqlify: Examples
Sparqlify: Examples
Sparqlify: Examples
Sparqlify: Examples
Sparqlify: CSV2RDF
Prefix pdd: <http://data.publicdata.eu/>
Prefix pdo: <http://wiki.publicdata.eu/ontology/>
Create View Template DefaultMapping As
Construct {
?s ?p1 ?o1 ;
?p2 ?o2 ...
}
With
?s = uri(concat(pdd:,’csv-path/’,?rowId))
?p1 = uri(concat(pdo:, ?headingName1))
?o1 = plainLiteral(?1)
?p2 = ...
http://sparqlify.org/
Raw Text Processing: ConTEXT
●
No installation and configuration required.
●
Access content from a variety of sources
●
Instantly show the results of text analysis to users in a variety
of visualizations.
●
Allow refinement of automatic annotations and take feedback
into account
●
Provide a generic architecture where different modules for
content acquisition, natural language processing and
visualization can be plugged together.
http://rdface.aksw.org/nlp/hub.php
Processing Raw Text: ConTEXT
Data Integration
Definition
• In general, integration of multiple information systems
aims at combining selected systems so that they form
a unified new whole and give users the illusion of
interacting with one single information system
Semantic Data Integration
Federated SPARQL Queries
• Query processing involving multiple distributed data
sources, e.g. Linked Open Data cloud
DBpedia
New York
Times
Query both data collections in an integrated
way
Federated Query Processing
Federation mediator at the server
Virtual integration of (remote) data sources
Communication via SPARQL protocol
SPARQL
Data
Source
SPARQL
Data
Source
Federation
Mediator
SPARQL
Data
Source
Query
Federated Query Engines
Engine Name Implementation
language
License
FedX Java GNU A.G.P.L
SPLENDID Java L.G.P.L
LHD Java MIT
DARQ Java GPL
ANAPSID Python GNU G.P.L
ADERIS Java Apache
Data Visualization
LD Visualization Techniques
LD Visualization Techniques
LD Visualization Techniques
LD Visualization Techniques
Classification of Visualization
Techniques
Comparison of Values/Attributeshttp://goo.gl/IvsGbU
http://goo.gl/JeFhlM
Analysis of Relationships and
Hierarchies
Analysis of Relationships and
Hierarchies
http://rhizomik.net/dbpedia/treemap.jsp
http://lov.okfn.org/dataset/lov/
Analysis of Temporal and
Geographical Events http://lov.okfn.org/dataset/lov/details/vocabulary_dcterms.html
Analysis of Multidimensional Data
http://mbostock.github.io/protovis/ex/cars.html
Other Visualization Techniques
Applications of LD Visualization
Techniques
Tool Types
Tool Types
CubeViz
Facete
Thank you
Ivan Ermilov
iermilov@informatik.uni-leipzig.de
University of Leipzig
FOR YOUR ATTENTION

More Related Content

What's hot

Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...Olaf Hartig
 
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
 
Semantic Web
Semantic WebSemantic Web
Semantic Webhardchiu
 
Wi2015 - Clustering of Linked Open Data - the LODeX tool
Wi2015 - Clustering of Linked Open Data - the LODeX toolWi2015 - Clustering of Linked Open Data - the LODeX tool
Wi2015 - Clustering of Linked Open Data - the LODeX toolLaura Po
 
Microtask Crowdsourcing Applications for Linked Data
Microtask Crowdsourcing Applications for Linked DataMicrotask Crowdsourcing Applications for Linked Data
Microtask Crowdsourcing Applications for Linked DataEUCLID project
 
Linked Open Data Visualization
Linked Open Data VisualizationLinked Open Data Visualization
Linked Open Data VisualizationLaura Po
 
RDB2RDF, an overview of R2RML and Direct Mapping
RDB2RDF, an overview of R2RML and Direct MappingRDB2RDF, an overview of R2RML and Direct Mapping
RDB2RDF, an overview of R2RML and Direct MappingBoris Villazón-Terrazas
 
Semantic Pipes and Semantic Mashups
Semantic Pipes and Semantic MashupsSemantic Pipes and Semantic Mashups
Semantic Pipes and Semantic Mashupsgiurca
 
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...Olaf Hartig
 
Federated SPARQL query processing over the Web of Data
Federated SPARQL query processing over the Web of DataFederated SPARQL query processing over the Web of Data
Federated SPARQL query processing over the Web of DataMuhammad Saleem
 
Federated SPARQL Query Processing ISWC2015 Tutorial
Federated SPARQL Query Processing ISWC2015 TutorialFederated SPARQL Query Processing ISWC2015 Tutorial
Federated SPARQL Query Processing ISWC2015 TutorialMuhammad Saleem
 
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLioDo it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLioOpen Knowledge Belgium
 
Mon norton tut_queryinglinkeddata02
Mon norton tut_queryinglinkeddata02Mon norton tut_queryinglinkeddata02
Mon norton tut_queryinglinkeddata02eswcsummerschool
 
FedX - Optimization Techniques for Federated Query Processing on Linked Data
FedX - Optimization Techniques for Federated Query Processing on Linked DataFedX - Optimization Techniques for Federated Query Processing on Linked Data
FedX - Optimization Techniques for Federated Query Processing on Linked Dataaschwarte
 
Efficient source selection for sparql endpoint federation
Efficient source selection for sparql endpoint federationEfficient source selection for sparql endpoint federation
Efficient source selection for sparql endpoint federationMuhammad Saleem
 
Federated Query Formulation and Processing Through BioFed
Federated Query Formulation and Processing Through BioFedFederated Query Formulation and Processing Through BioFed
Federated Query Formulation and Processing Through BioFedMuhammad Saleem
 
Re-using Media on the Web: Media fragment re-mixing and playout
Re-using Media on the Web: Media fragment re-mixing and playoutRe-using Media on the Web: Media fragment re-mixing and playout
Re-using Media on the Web: Media fragment re-mixing and playoutMediaMixerCommunity
 

What's hot (20)

Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...
 
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
 
Semantic Web Technology
Semantic Web TechnologySemantic Web Technology
Semantic Web Technology
 
Semantic Web
Semantic WebSemantic Web
Semantic Web
 
Wi2015 - Clustering of Linked Open Data - the LODeX tool
Wi2015 - Clustering of Linked Open Data - the LODeX toolWi2015 - Clustering of Linked Open Data - the LODeX tool
Wi2015 - Clustering of Linked Open Data - the LODeX tool
 
Microtask Crowdsourcing Applications for Linked Data
Microtask Crowdsourcing Applications for Linked DataMicrotask Crowdsourcing Applications for Linked Data
Microtask Crowdsourcing Applications for Linked Data
 
Linked Open Data Visualization
Linked Open Data VisualizationLinked Open Data Visualization
Linked Open Data Visualization
 
RDB2RDF, an overview of R2RML and Direct Mapping
RDB2RDF, an overview of R2RML and Direct MappingRDB2RDF, an overview of R2RML and Direct Mapping
RDB2RDF, an overview of R2RML and Direct Mapping
 
Semantic Pipes and Semantic Mashups
Semantic Pipes and Semantic MashupsSemantic Pipes and Semantic Mashups
Semantic Pipes and Semantic Mashups
 
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 1 (...
 
Federated SPARQL query processing over the Web of Data
Federated SPARQL query processing over the Web of DataFederated SPARQL query processing over the Web of Data
Federated SPARQL query processing over the Web of Data
 
Federated SPARQL Query Processing ISWC2015 Tutorial
Federated SPARQL Query Processing ISWC2015 TutorialFederated SPARQL Query Processing ISWC2015 Tutorial
Federated SPARQL Query Processing ISWC2015 Tutorial
 
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLioDo it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
 
Mon norton tut_queryinglinkeddata02
Mon norton tut_queryinglinkeddata02Mon norton tut_queryinglinkeddata02
Mon norton tut_queryinglinkeddata02
 
FedX - Optimization Techniques for Federated Query Processing on Linked Data
FedX - Optimization Techniques for Federated Query Processing on Linked DataFedX - Optimization Techniques for Federated Query Processing on Linked Data
FedX - Optimization Techniques for Federated Query Processing on Linked Data
 
Efficient source selection for sparql endpoint federation
Efficient source selection for sparql endpoint federationEfficient source selection for sparql endpoint federation
Efficient source selection for sparql endpoint federation
 
Federated Query Formulation and Processing Through BioFed
Federated Query Formulation and Processing Through BioFedFederated Query Formulation and Processing Through BioFed
Federated Query Formulation and Processing Through BioFed
 
Re-using Media on the Web: Media fragment re-mixing and playout
Re-using Media on the Web: Media fragment re-mixing and playoutRe-using Media on the Web: Media fragment re-mixing and playout
Re-using Media on the Web: Media fragment re-mixing and playout
 
Linked data life cycles
Linked data life cyclesLinked data life cycles
Linked data life cycles
 
RDFa Tutorial
RDFa TutorialRDFa Tutorial
RDFa Tutorial
 

Viewers also liked

Englekirk News
Englekirk NewsEnglekirk News
Englekirk Newskimtanouye
 
Inanimate Alice episode 5 by Daniel & Matteo
Inanimate Alice episode 5 by Daniel & MatteoInanimate Alice episode 5 by Daniel & Matteo
Inanimate Alice episode 5 by Daniel & MatteoMrsPrentice
 
Summary. “DO SPANISH JOURNALISTS CARE ABOUT ASSET MANAGEMENT COMPANIES INFORM...
Summary. “DO SPANISH JOURNALISTS CARE ABOUT ASSET MANAGEMENT COMPANIES INFORM...Summary. “DO SPANISH JOURNALISTS CARE ABOUT ASSET MANAGEMENT COMPANIES INFORM...
Summary. “DO SPANISH JOURNALISTS CARE ABOUT ASSET MANAGEMENT COMPANIES INFORM...lau_db
 
Morgana matariki pp presentation
Morgana matariki pp presentationMorgana matariki pp presentation
Morgana matariki pp presentationlesleymccardle
 
Smsvideoconferencing slideshare
Smsvideoconferencing slideshareSmsvideoconferencing slideshare
Smsvideoconferencing slideshareEleanor Schuster
 
Purua school children's waipoua and moirai gallery inspired
Purua school children's waipoua and moirai gallery inspiredPurua school children's waipoua and moirai gallery inspired
Purua school children's waipoua and moirai gallery inspiredlesleymccardle
 
Ch. 10 -_motivation and engagement
Ch. 10 -_motivation and engagementCh. 10 -_motivation and engagement
Ch. 10 -_motivation and engagementPeapod Ledesma
 
長野市放課後子ども総合プラン有料化の方針
長野市放課後子ども総合プラン有料化の方針長野市放課後子ども総合プラン有料化の方針
長野市放課後子ども総合プラン有料化の方針長野市議会議員小泉一真
 
Lampiran sk dirjen pendis nomor 3932 th 2016 madrasah k13 tp 2016 2017
Lampiran sk dirjen pendis nomor 3932 th 2016 madrasah k13 tp 2016 2017Lampiran sk dirjen pendis nomor 3932 th 2016 madrasah k13 tp 2016 2017
Lampiran sk dirjen pendis nomor 3932 th 2016 madrasah k13 tp 2016 2017Wenni Meliana
 
Goede leiders zijn goede verhalenvertellers - Hans Donckers - Beanmachine
Goede leiders zijn goede verhalenvertellers - Hans Donckers - BeanmachineGoede leiders zijn goede verhalenvertellers - Hans Donckers - Beanmachine
Goede leiders zijn goede verhalenvertellers - Hans Donckers - BeanmachineAntwerp Management School
 
Shifts in the music industry
Shifts in the music industryShifts in the music industry
Shifts in the music industrysadieolen
 
Relazione Laboratorio Elettronica Industriale
Relazione Laboratorio Elettronica IndustrialeRelazione Laboratorio Elettronica Industriale
Relazione Laboratorio Elettronica IndustrialeGiovanni Sferrazza
 

Viewers also liked (20)

Basketball game
Basketball gameBasketball game
Basketball game
 
Englekirk News
Englekirk NewsEnglekirk News
Englekirk News
 
Cooll usersguide 1
Cooll usersguide 1Cooll usersguide 1
Cooll usersguide 1
 
Inanimate Alice episode 5 by Daniel & Matteo
Inanimate Alice episode 5 by Daniel & MatteoInanimate Alice episode 5 by Daniel & Matteo
Inanimate Alice episode 5 by Daniel & Matteo
 
Summary. “DO SPANISH JOURNALISTS CARE ABOUT ASSET MANAGEMENT COMPANIES INFORM...
Summary. “DO SPANISH JOURNALISTS CARE ABOUT ASSET MANAGEMENT COMPANIES INFORM...Summary. “DO SPANISH JOURNALISTS CARE ABOUT ASSET MANAGEMENT COMPANIES INFORM...
Summary. “DO SPANISH JOURNALISTS CARE ABOUT ASSET MANAGEMENT COMPANIES INFORM...
 
Diff systemverilogc
Diff systemverilogcDiff systemverilogc
Diff systemverilogc
 
Creative Technosoft System - Company Profile
Creative Technosoft System - Company ProfileCreative Technosoft System - Company Profile
Creative Technosoft System - Company Profile
 
мемохенс
мемохенсмемохенс
мемохенс
 
Projectpowerpoint
ProjectpowerpointProjectpowerpoint
Projectpowerpoint
 
Morgana matariki pp presentation
Morgana matariki pp presentationMorgana matariki pp presentation
Morgana matariki pp presentation
 
Smsvideoconferencing slideshare
Smsvideoconferencing slideshareSmsvideoconferencing slideshare
Smsvideoconferencing slideshare
 
Purua school children's waipoua and moirai gallery inspired
Purua school children's waipoua and moirai gallery inspiredPurua school children's waipoua and moirai gallery inspired
Purua school children's waipoua and moirai gallery inspired
 
Ch. 10 -_motivation and engagement
Ch. 10 -_motivation and engagementCh. 10 -_motivation and engagement
Ch. 10 -_motivation and engagement
 
Expo ingles
Expo inglesExpo ingles
Expo ingles
 
Educacion
EducacionEducacion
Educacion
 
長野市放課後子ども総合プラン有料化の方針
長野市放課後子ども総合プラン有料化の方針長野市放課後子ども総合プラン有料化の方針
長野市放課後子ども総合プラン有料化の方針
 
Lampiran sk dirjen pendis nomor 3932 th 2016 madrasah k13 tp 2016 2017
Lampiran sk dirjen pendis nomor 3932 th 2016 madrasah k13 tp 2016 2017Lampiran sk dirjen pendis nomor 3932 th 2016 madrasah k13 tp 2016 2017
Lampiran sk dirjen pendis nomor 3932 th 2016 madrasah k13 tp 2016 2017
 
Goede leiders zijn goede verhalenvertellers - Hans Donckers - Beanmachine
Goede leiders zijn goede verhalenvertellers - Hans Donckers - BeanmachineGoede leiders zijn goede verhalenvertellers - Hans Donckers - Beanmachine
Goede leiders zijn goede verhalenvertellers - Hans Donckers - Beanmachine
 
Shifts in the music industry
Shifts in the music industryShifts in the music industry
Shifts in the music industry
 
Relazione Laboratorio Elettronica Industriale
Relazione Laboratorio Elettronica IndustrialeRelazione Laboratorio Elettronica Industriale
Relazione Laboratorio Elettronica Industriale
 

Similar to Data Integration And Visualization

RDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataRDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataGiorgos Santipantakis
 
balloon Fusion: SPARQL Rewriting Based on Unified Co-Reference Information
balloon Fusion: SPARQL Rewriting Based on  Unified Co-Reference Informationballoon Fusion: SPARQL Rewriting Based on  Unified Co-Reference Information
balloon Fusion: SPARQL Rewriting Based on Unified Co-Reference InformationKai Schlegel
 
Wed roman tut_open_datapub
Wed roman tut_open_datapubWed roman tut_open_datapub
Wed roman tut_open_datapubeswcsummerschool
 
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 Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data TutorialSören Auer
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLMyungjin Lee
 
The web of interlinked data and knowledge stripped
The web of interlinked data and knowledge strippedThe web of interlinked data and knowledge stripped
The web of interlinked data and knowledge strippedSören Auer
 
Data standardization process for social sciences and humanities
Data standardization process for social sciences and humanitiesData standardization process for social sciences and humanities
Data standardization process for social sciences and humanitiesvty
 
RDF Linked Data - Automatic Exchange of BIM Containers
RDF Linked Data - Automatic Exchange of BIM ContainersRDF Linked Data - Automatic Exchange of BIM Containers
RDF Linked Data - Automatic Exchange of BIM ContainersSafe Software
 
A hands on overview of the semantic web
A hands on overview of the semantic webA hands on overview of the semantic web
A hands on overview of the semantic webMarakana Inc.
 
Karma is a tool! Managing your Data
Karma is a tool! Managing your DataKarma is a tool! Managing your Data
Karma is a tool! Managing your DataVioleta Ilik
 
Semantic Web use cases in outcomes research
Semantic Web use cases in outcomes researchSemantic Web use cases in outcomes research
Semantic Web use cases in outcomes researchChimezie Ogbuji
 
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
 
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
 
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
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosEUCLID project
 
Consuming Linked Data 4/5 Semtech2011
Consuming Linked Data 4/5 Semtech2011Consuming Linked Data 4/5 Semtech2011
Consuming Linked Data 4/5 Semtech2011Juan Sequeda
 
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
 
Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012François Belleau
 

Similar to Data Integration And Visualization (20)

RDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataRDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival data
 
balloon Fusion: SPARQL Rewriting Based on Unified Co-Reference Information
balloon Fusion: SPARQL Rewriting Based on  Unified Co-Reference Informationballoon Fusion: SPARQL Rewriting Based on  Unified Co-Reference Information
balloon Fusion: SPARQL Rewriting Based on Unified Co-Reference Information
 
Wed roman tut_open_datapub
Wed roman tut_open_datapubWed roman tut_open_datapub
Wed roman tut_open_datapub
 
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 Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQL
 
The web of interlinked data and knowledge stripped
The web of interlinked data and knowledge strippedThe web of interlinked data and knowledge stripped
The web of interlinked data and knowledge stripped
 
Data standardization process for social sciences and humanities
Data standardization process for social sciences and humanitiesData standardization process for social sciences and humanities
Data standardization process for social sciences and humanities
 
RDF Linked Data - Automatic Exchange of BIM Containers
RDF Linked Data - Automatic Exchange of BIM ContainersRDF Linked Data - Automatic Exchange of BIM Containers
RDF Linked Data - Automatic Exchange of BIM Containers
 
A hands on overview of the semantic web
A hands on overview of the semantic webA hands on overview of the semantic web
A hands on overview of the semantic web
 
Karma is a tool! Managing your Data
Karma is a tool! Managing your DataKarma is a tool! Managing your Data
Karma is a tool! Managing your Data
 
Semantic Web use cases in outcomes research
Semantic Web use cases in outcomes researchSemantic Web use cases in outcomes research
Semantic Web use cases in outcomes research
 
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
 
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
 
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
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application Scenarios
 
LD4KD 2015 - Demos and tools
LD4KD 2015 - Demos and toolsLD4KD 2015 - Demos and tools
LD4KD 2015 - Demos and tools
 
Consuming Linked Data 4/5 Semtech2011
Consuming Linked Data 4/5 Semtech2011Consuming Linked Data 4/5 Semtech2011
Consuming Linked Data 4/5 Semtech2011
 
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...
 
Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012Bio2RDF presentation at Combine 2012
Bio2RDF presentation at Combine 2012
 

Recently uploaded

Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...Pooja Nehwal
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Recently uploaded (20)

Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 

Data Integration And Visualization

Editor's Notes

  1. Example scenario DBpedia and New York Times collections DBpedia as structured knowledge base New York Times as a news provider