Processing Queries on Top of Linked Data and Sensor Data

Size: px
Start display at page:

Download "Processing Queries on Top of Linked Data and Sensor Data"

Transcription

1 Processing Queries on Top of Linked Data and Sensor Data Cry Distribution Marcel Karnstedt Copyright All rights reserved.

2 Linked Data Use URIs as names for things (documents, people, organisations, products, ) Use HTTP URIs so that people can look up those names When someone looks up a URI, provide useful information, typically structured data in RDF Include links to other URIs, so that they can discover more things

3 Accessing Linked Data

4 Linked Data in Practice User Agent HTTP GET RDF Web Server

5 Forward References User Agent HTTP GET 303 HTTP GET RDF Web Server

6 Consumption - Essentials Linked Data provides for a global data-space with a uniform API (due to RDF as the data model) Access methods Dereference URIs via HTTP GET (RDF/XML, RDFa, etc.) SPARQL ( the SQL of RDF ) Data dumps (RDF/XML, etc.) Metadata about LOD datasets void ( Allows to select datasets based on their characteristics (topic, license, interlinking, formats, etc.)

7 Consumption - Technologies Basic Linked Data access mechanisms widely supported in all major platforms and languages (HTTP interface & RDF parsing), such as Java, PHP, C/C++/.NET, etc. Inspect and debug tools Command line tools (curl, rapper, etc.) Online tools (HTTP/low-level) (RDF/data-level) SPARQL endpoints (generic and dataset-specific)

8 Gimme URIs!! Distributed setup need for central point of access (indexer, aggregator) Sindice, an index of the Web of Data Sig.ma, Web of Data aggregator & browser Relationship discovery But where is the DB?! Complex queries, efficient storage, quick access, etc.

9 Ranking Huge data, millions of sources, messiness, RDF model, Requires special ranking TF-IDF style, Graph based (PageRank style), Cardinality based (histogram style), etc. Triple level URI level Document level Source level Domain level

10 Skyline Ranking Objects that are not dominated by other objects Scoring function on multiple attributes, no weighting In contrast to (multidimensional) top-k distance age price dominated objects No straightforward IR operation price time

11 Querying SELECT?f?n WHERE { an:f#ah foaf:knows?f.?f foaf:name?n. } SELECT?x1?x2 WHERE { dblppub:hoganhp08 dc:creator?a1,?a2.?x1 owl:sameas?a1.?x2 owl:sameas?a2.?x1 foaf:knows?x2.?x2 foaf:knows?x1. }?f?n

12 Query Algebra WHERE {?s 1 <p 1 >?o 1.?s 2?p 2?o 2.?s 2 <add>?add. FILTER (edist(?o 1,?o 2 ) < k). FILTER?p 2 =<pred>} ω(?s 2 ;[?s 2?add <add> ]) (edist(?o 1,?o 2 )<k) ξ([?s 1?o 1 <p 1 > ]) σ(?p 2 =<pred>) ξ([?s 2?p 2?o 2 <pred> ]) ξ([?s 2?p 2?o 2 ])

13 Querying Data Across Sources Data warehousing or materialisation-based approaches (MAT) CRAWL INDEX SERVE RDBMS One big table Property tables Vertical storage, column stores Hybrid approaches, such as Virtuoso Native stores, such as YARS Special (simplified) structures, special indexes!

14 Indexing in YARS etc. Index the different parts of a triple Ideally: all combinations <x> name <x> knows <x> seealso <x> sameas Xavier <friend> <link> <y> Optimised for read-only access With prefix support: only 6 (spo, sop, pso, pos, osp, ops) Trade-off: storage vs. performance, read vs. write Optional special indexes (full-text, string similarity, )

15 Live Queries SELECT * FROM R S R ODBC S ODBC Live lookups, on-demand querying SELECT?s WHERE TP TP TP HTTP GET TP HTTP GET 1 5

16 Live Queries: Approaches SELECT?f?n WHERE { an:f#ah foaf:knows?f.?f foaf:name?n. } Direct lookups dereferencing URIs, recursive Data summaries TP (an:f#ah foaf:knows?f) TP (?f foaf:name?n) Select source(s) HTTP GET RDF HTTP GET RDF Select source(s) ?f?n Andreas Harth Data Dan Brickley

17 Federated/Distributed Querying Federated feature in SPARQL1.1 Directly refer to sources Automatically split/copy queries and forward Depends on query capabilities! Simple sources vs. SPARQL end points etc. Similar issues as in central engines Indexing, local stores, New challenges Availability, guarantees, robustness, consistency,

18 Basic federated Queries (time permitting) Will be integrated in Query spec Essentially new pattern SERVICE Similar to GRAPH allows delegate query parts to a specific (remote) endpoint PREFIX foaf: < SELECT?N FROM < WHERE { { < foaf:knows?f.?f foaf:name?n } UNION { SERVICE < { [ foaf:maker < /authors/tim_berners-lee>, [ foaf:name?n ] ]. } } }

19 Total Decentralisation DB Find all reviews for movies made in 1994 in central Europe! RDF: Geonames data RDF: IMDB data RDF: reviews

20 Indexing in UniStore Use distributed hash tables (DHT) Indexing of attributes = key for Hashing Which attributes? All! <x> name <x> knows <x> seealso <x> sameas Xavier <friend> <link> <y> h(s) for subject lookup h(p 1 o 1 ) for?s p i?o. h(p 2 o 2 ) filter (?o v)... (prefix search)...trade-off storage vs. performance

21 Robustness: Parallel Execution Goal: stateless processing push approach Messages containing both plan and intermediate results (based on Mutant Query Plans [Papadimos et al. 02]) Receiver peer is identified by applying the hash function Multiple instances of the plan travel trough the network p 0 σ(a) σ(a) σ(a) B B B {(A,1),(A,2)} p 1 p 2 {(A,3),(A,4)} p 3 {(A,5),(A,6)} {(A,5)} {(A,2)} {(B,2),(C,1),(B,2),(C,4)} p 4 {(A,3),(A,4)} p 5 {(B,5),(B,6)} B B B {(A,2,B,2,C,1), (A,2,B,2,C,4)} p 0 {(A,5),(B, 5)}

22 Less Bandwidth: Sequential Execution All peers can be queried in a sequence Decision at each peer: adaptive query processing σ(a) B {(A,1),(A,2)} p 1 {(A,2)} B {(B,2),(C,1),(B,2),(C,4)} p 4 {(A,2,B,2,C,1),(A,2,B,2,C,4),...} p 0 {(A,2),(A,3),(A,4)} p 2 {(A,3),(A,4)} B p 3 {(A,5),(A,6)} p 5 {(B,5),(B,6)} p 0 {(A,2),(A,3),(A,4),(A,5,B,5)} B {(A,2),(A,3),(A,4),(A,5)} B

23 Mixed Query Execution May result in unpredictable behavior Fire and forget A peer may see the same query multiple times Different data to process Different operators to process {(A,1),(A,2)} σ(a) B p 1 {(A,2)} B {(B,2),(C,1),(B,2),(C,4)} p 4 {(A,2,B,2,C,1), (A,2,B,2,C,4)} p 0 {(A,2),(A,3),(A,4)} p 2 {(A,3),(A,4)} B p 3 {(A,5),(A,6)} p 5 {(B,5),(B,6)} {(A,2),(A,3),(A,4),(A,5)} B p 0 {(A,5),(B, 5)}

24 Reasoning

25 In Principle Machine-interpretable representation of data allows for deductive reasoning Drawing conclusions from axioms and data Web Ontology Language (OWL) provides constructs supporting entity consolidation Same as, inverse-functional properties (mbox_sha1sum) Reasoning can further be used to: Unite fractured data sets Disambiguate entities Check consistency of knowledgebases

26 Example General Idea: Answer Queries with implicit answers Simplified example: :jeff rdfs:type foaf:person & :jeff foaf:knows :aidan query: select?x {?x rdfs:type foaf:agent } foaf:person rdfs:subclassof foaf:agent :jeff as result query: select?x {?x rdfs:type foaf:person } foaf:knows rdfs:range foaf:person :jeff and :aidan as result Inverse-functional properties, sameas, subpropertyoff etc.

27 Problems Usually expensive, huge amount of new facts Potential conflicts due to inconsistencies Potentially infinite results Ontology hijacking e.g. foaf:person subclassof my:person A new statement for each Person in the dataset Non-distinguished variables SELECT?X {?X :hasfather?y } No such triple in the data, but every person has a father?! 08445a31a78661b5c746feff39a9db6e4e2cc5cf sha1-sum of mailto:

28 Implementation Materialise inferred triples Forward chaining Query rewriting, recursive/iterative Backward chaining On-the-fly with data summaries Ongoing research Stateless query expansion Parallel sub-queries

29 Query Expansion Unexpanded query Map operators added First mapping Expanded query

30 Querying Sensor Data

31 Processing Paradigms

32 AnduIN

33 CQL

34 In-Network Query Processing

35 Example Anomalies in sensor networks Sensors deliver measurements y s 8 s 6 s 5 s 25 s 2 s 7 s 26 s 27 s 3 s 1 s 24 s 12 s 28 s 10 s 4 s 13 s 11 s 38 s 37 s 9 s 17 s 16 s 15 s 31 s 29 s 30 s 19 s 23 s 35 s 36 s 39 s 34 s 14 s 18 s 41 s s s 20 s 22 s 32 s 33 x

36 Example Anomalies in sensor networks Identify anomalies from the stream y s 8 s 6 s 5 s 25 s 2 s 7 s 26 s 27 s 3 s 1 s 24 s 12 s 28 s 10 s 4 s 13 s 11 s 38 s 37 s 9 s 17 s 15 s 16 s 31 s 29 s 30 s 19 s 23 s 35 s 36 s 39 s 34 s 14 s 18 s 41 s s s 20 s 22 s 32 s 33 x

37 Example Anomalies in sensor networks Determine anomalous regions y s 8 s 6 s 5 s 25 s 2 s 7 s 26 s 27 s 3 s 1 s 24 s 12 s 28 s 10 s 4 s 13 s 11 s 38 s 37 s 9 s 17 s 15 s 16 s 31 s 29 s 30 s 19 s 23 s 35 s 36 s 39 s 34 s 14 s 18 s 41 s s s 20 s 22 s 32 s 33 x

38 Example Anomalies in sensor networks Respect obstacles y s 8 s 6 s 5 s 25 s 2 s 7 s 26 s 27 s 3 s 1 s 24 s 12 s 28 s 10 s 4 s 13 s 11 s 38 s 37 s 9 s 17 s 15 s 16 s 31 s 29 s 30 s 19 s 23 s 35 s 36 s 39 s 34 s 14 s 18 s 41 s s s 20 s 22 s 32 s 33 x

39 Example Anomalies in sensor networks Obstacles change regions y s 8 s 6 s 5 s 25 s 2 s 7 s 26 s 27 s 3 s 1 s 24 s 12 s 28 s 10 s 4 s 13 s 11 s 38 s 37 s 9 s 17 s 15 s 16 s 31 s 29 s 30 s 19 s 23 s 35 s 36 s 39 s 34 s 14 s 18 s 41 s s s 20 s 22 s 32 s 33 x

40 Example Scenario Storms in California

41 Anomaly Degrees and Regions Regions for different thresholds Triangulated Wireframe Surface (TWS) Degree plane at height 0.25 Degree plane at height 0.4

42 IN Region Detection Focus on energy consumption But cost model supports multiple dimensions

43 Cost Estimation In streams: continuous queries Thus, query planning should be adaptive Not optimise first, execute next any more When and how to re-optimise Forecast, e.g., by exponential smoothing Decide between alternative query plans

44 Eval: Anomalies Anomaly rate and size of sliding window

45 Eval: Anomalies /2 Number of leader nodes

46 Eval: Anomalous Region Anomaly rate

47 Brief Wrap-Up Different approaches for querying SemWeb data Linked Data is inherently distributed...but not inherently dynamic?! Distributed approaches promising: Support dynamic data Scalable Query processing in sensor networks shows similarities Scalability requirements advise to focus on distributed approaches, resource limitations demand it

Weaving the Pedantic Web - Information Quality on the Web of Data

Weaving the Pedantic Web - Information Quality on the Web of Data Weaving the Pedantic Web - Information Quality on the Web of Data Andreas Harth Semantic Days Stavanger KIT University of the State of Baden-Württemberg and National Large-scale Research Center of the

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2017/18 Vedran Sabol with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz December 11 th 2017 Overview What is Semantic

More information

Linked Data. Department of Software Enginnering Faculty of Information Technology Czech Technical University in Prague Ivo Lašek, 2011

Linked Data. Department of Software Enginnering Faculty of Information Technology Czech Technical University in Prague Ivo Lašek, 2011 Linked Data Department of Software Enginnering Faculty of Information Technology Czech Technical University in Prague Ivo Lašek, 2011 Semantic Web, MI-SWE, 11/2011, Lecture 9 Evropský sociální fond Praha

More information

Semantic Web and Linked Data

Semantic Web and Linked Data Semantic Web and Linked Data Petr Křemen December 2012 Contents Semantic Web Technologies Overview Linked Data Semantic Web Technologies Overview Semantic Web Technology Stack from Wikipedia. http://wikipedia.org/wiki/semantic_web,

More information

Linked Data Semantic Web Technologies 1 (2010/2011)

Linked Data Semantic Web Technologies 1 (2010/2011) Linked Data Semantic Web Technologies 1 (2010/2011) Sebastian Rudolph Andreas Harth Institute AIFB www.kit.edu Data on the Web Increasingly, web sites provide direct access to data Using Semantic Web standards,

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2018/19 with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz January 7 th 2019 Overview What is Semantic Web? Technology

More information

A General Approach to Query the Web of Data

A General Approach to Query the Web of Data A General Approach to Query the Web of Data Xin Liu 1 Department of Information Science and Engineering, University of Trento, Trento, Italy liu@disi.unitn.it Abstract. With the development of the Semantic

More information

Semantic Web Technologies: Assignment 1. Axel Polleres Siemens AG Österreich

Semantic Web Technologies: Assignment 1. Axel Polleres Siemens AG Österreich Semantic Web Technologies: Assignment 1 Siemens AG Österreich 1 The assignment: 2 FOAF: 1. Create your own FOAF file. You can use a generator tool such as FOAF- a- Ma>c to generate a skeleton. 2. Make

More information

Linked Data: What Now? Maine Library Association 2017

Linked Data: What Now? Maine Library Association 2017 Linked Data: What Now? Maine Library Association 2017 Linked Data What is Linked Data Linked Data refers to a set of best practices for publishing and connecting structured data on the Web. URIs - Uniform

More information

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS)

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 2 ITARC 2010 Stockholm 100420 Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 3 Contents Trends in information / data Critical factors... growing importance Needs

More information

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS)

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 2 ITARC 2010 Stockholm 100420 Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 3 Contents Trends in information / data Critical factors... growing importance Needs

More information

OLAP over Federated RDF Sources

OLAP over Federated RDF Sources OLAP over Federated RDF Sources DILSHOD IBRAGIMOV, KATJA HOSE, TORBEN BACH PEDERSEN, ESTEBAN ZIMÁNYI. Outline o Intro and Objectives o Brief Intro to Technologies o Our Approach and Progress o Future Work

More information

Linked Data and RDF. COMP60421 Sean Bechhofer

Linked Data and RDF. COMP60421 Sean Bechhofer Linked Data and RDF COMP60421 Sean Bechhofer sean.bechhofer@manchester.ac.uk Building a Semantic Web Annotation Associating metadata with resources Integration Integrating information sources Inference

More information

Data Summaries for On-Demand Queries over Linked Data

Data Summaries for On-Demand Queries over Linked Data Data Summaries for On-Demand Queries over Linked Data Andreas Harth #, Katja Hose, Marcel Karnstedt, Axel Polleres, Kai-Uwe Sattler, Jürgen Umbrich # AIFB, Karlsruhe Institute of Technology, Germany Max-Planck

More information

Linked Data and RDF. COMP60421 Sean Bechhofer

Linked Data and RDF. COMP60421 Sean Bechhofer Linked Data and RDF COMP60421 Sean Bechhofer sean.bechhofer@manchester.ac.uk Building a Semantic Web Annotation Associating metadata with resources Integration Integrating information sources Inference

More information

A Framework for Performance Study of Semantic Databases

A Framework for Performance Study of Semantic Databases A Framework for Performance Study of Semantic Databases Xianwei Shen 1 and Vincent Huang 2 1 School of Information and Communication Technology, KTH- Royal Institute of Technology, Kista, Sweden 2 Services

More information

Stream Reasoning For Linked Data

Stream Reasoning For Linked Data 5/30/11 Stream Reasoning For Linked Data and Emanuele Della Valle The Web map 2008 Tim Berners-Lee 2 http://www.w3.org/2007/09/map/main.jpg 1 The Web map 2008 Tim Berners-Lee ü ü ü ü ü ü n n n n more and

More information

SWSE: Objects before documents!

SWSE: Objects before documents! Provided by the author(s) and NUI Galway in accordance with publisher policies. Please cite the published version when available. Title SWSE: Objects before documents! Author(s) Harth, Andreas; Hogan,

More information

COMPUTER AND INFORMATION SCIENCE JENA DB. Group Abhishek Kumar Harshvardhan Singh Abhisek Mohanty Suhas Tumkur Chandrashekhara

COMPUTER AND INFORMATION SCIENCE JENA DB. Group Abhishek Kumar Harshvardhan Singh Abhisek Mohanty Suhas Tumkur Chandrashekhara JENA DB Group - 10 Abhishek Kumar Harshvardhan Singh Abhisek Mohanty Suhas Tumkur Chandrashekhara OUTLINE Introduction Data Model Query Language Implementation Features Applications Introduction Open Source

More information

Day 2. RISIS Linked Data Course

Day 2. RISIS Linked Data Course Day 2 RISIS Linked Data Course Overview of the Course: Friday 9:00-9:15 Coffee 9:15-9:45 Introduction & Reflection 10:30-11:30 SPARQL Query Language 11:30-11:45 Coffee 11:45-12:30 SPARQL Hands-on 12:30-13:30

More information

Linked data and its role in the semantic web. Dave Reynolds, Epimorphics

Linked data and its role in the semantic web. Dave Reynolds, Epimorphics Linked data and its role in the semantic web Dave Reynolds, Epimorphics Ltd @der42 Roadmap What is linked data? Modelling Strengths and weaknesses Examples Access other topics image: Leo Oosterloo @ flickr.com

More information

Data Summaries for On-Demand Queries over Linked Data

Data Summaries for On-Demand Queries over Linked Data Data Summaries for On-Demand Queries over Linked Data Andreas Harth #, Katja Hose, Marcel Karnstedt, Axel Polleres, Kai-Uwe Sattler, Jürgen Umbrich # AIFB, Karlsruhe Institute of Technology, Germany Max-Planck

More information

Semantic Web Company. PoolParty - Server. PoolParty - Technical White Paper.

Semantic Web Company. PoolParty - Server. PoolParty - Technical White Paper. Semantic Web Company PoolParty - Server PoolParty - Technical White Paper http://www.poolparty.biz Table of Contents Introduction... 3 PoolParty Technical Overview... 3 PoolParty Components Overview...

More information

Implementing and extending SPARQL queries over DLVHEX

Implementing and extending SPARQL queries over DLVHEX Implementing and extending SPARQL queries over DLVHEX Gennaro Frazzingaro Bachelor Thesis Presentation - October 5, 2007 From a work performed in Madrid, Spain Galway, Ireland Rende, Italy How to solve

More information

ISWC 2017 Tutorial: Semantic Data Management in Practice

ISWC 2017 Tutorial: Semantic Data Management in Practice ISWC 2017 Tutorial: Semantic Data Management in Practice Part 6: Automated reasoning Olaf Hartig Linköping University olaf.hartig@liu.se @olafhartig Olivier Curé University of Paris-Est Marne la Vallée

More information

Jena.

Jena. Jena http://openjena.org/ The Beginning... From: McBride, Brian Date: Mon, 28 Aug 2000 13:40:03 +0100 To: "RDF Interest (E-mail)" A few weeks ago I posted

More information

Multi-agent and Semantic Web Systems: Linked Open Data

Multi-agent and Semantic Web Systems: Linked Open Data Multi-agent and Semantic Web Systems: Linked Open Data Fiona McNeill School of Informatics 14th February 2013 Fiona McNeill Multi-agent Semantic Web Systems: *lecture* Date 0/27 Jena Vcard 1: Triples Fiona

More information

Linked Data Evolving the Web into a Global Data Space

Linked Data Evolving the Web into a Global Data Space Linked Data Evolving the Web into a Global Data Space Anja Jentzsch, Freie Universität Berlin 05 October 2011 EuropeanaTech 2011, Vienna 1 Architecture of the classic Web Single global document space Web

More information

Meaning Of A Tag: A collaborative approach to bridge the gap between tagging and Linked Data

Meaning Of A Tag: A collaborative approach to bridge the gap between tagging and Linked Data Meaning Of A Tag: A collaborative approach to bridge the gap between tagging and Linked Data Alexandre Passant 1,2 & Philippe Laublet 2 1 Electricité de France R&D, Clamart, France 2 LaLIC, Université

More information

Unit 1 a Bird s Eye View on RDF(S), OWL & SPARQL

Unit 1 a Bird s Eye View on RDF(S), OWL & SPARQL Unit 1 a Bird s Eye View on RDF(S), OWL & SPARQL Axel Polleres Siemens AG Österreich VU 184.729 Semantic Web Technologies A. Polleres VU 184.729 1/48 Unit Outline 1. Motivation Aggregating Web Data 2.

More information

Expressive Querying of Semantic Databases with Incremental Query Rewriting

Expressive Querying of Semantic Databases with Incremental Query Rewriting Expressive Querying of Semantic Databases with Incremental Query Rewriting Alexandre Riazanov, UNB Saint John joint work with Marcelo A. T. Aragão, Manchester Univ. and Central Bank of Brazil AWOSS 10.2,

More information

Implicit and Explicit Schema Information

Implicit and Explicit Schema Information Scalable Extraction of Implicit and Explicit Schema Information in Linked Open Data Ansgar Scherp Data and Web Science, U Mannheim Matthias Konrath, Thomas Gottron Web Science and Technologies, U Koblenz

More information

The necessity of hypermedia RDF and an approach to achieve it

The necessity of hypermedia RDF and an approach to achieve it The necessity of hypermedia RDF and an approach to achieve it Kjetil Kjernsmo 1 Department of Informatics, Postboks 1080 Blindern, 0316 Oslo, Norway kjekje@ifi.uio.no Abstract. This paper will give an

More information

Building Blocks of Linked Data

Building Blocks of Linked Data Building Blocks of Linked Data Technological foundations Identifiers: URIs Data Model: RDF Terminology and Semantics: RDFS, OWL 23,019,148 People s Republic of China 20,693,000 population located in capital

More information

Linked Open Data: a short introduction

Linked Open Data: a short introduction International Workshop Linked Open Data & the Jewish Cultural Heritage Rome, 20 th January 2015 Linked Open Data: a short introduction Oreste Signore (W3C Italy) Slides at: http://www.w3c.it/talks/2015/lodjch/

More information

Sindice.com: Weaving the open linked data. Tummarello, Giovanni; Delbru, Renaud; Oren, Eyal

Sindice.com: Weaving the open linked data. Tummarello, Giovanni; Delbru, Renaud; Oren, Eyal Provided by the author(s) and NUI Galway in accordance with publisher policies. Please cite the published version when available. Title Sindice.com: Weaving the open linked data Author(s) Tummarello, Giovanni;

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 12 (Wrap-up) http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2411

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 1, 2017 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 12 (Wrap-up) http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2457

More information

An overview of RDB2RDF techniques and tools

An overview of RDB2RDF techniques and tools An overview of RDB2RDF techniques and tools DERI Reading Group Presentation Nuno Lopes August 26, 2009 Main purpose of RDB2RDF WG... standardize a language for mapping Relational Database schemas into

More information

SPARQL QUERY LANGUAGE WEB:

SPARQL QUERY LANGUAGE   WEB: SPARQL QUERY LANGUAGE JELENA JOVANOVIC EMAIL: JELJOV@GMAIL.COM WEB: HTTP://JELENAJOVANOVIC.NET SPARQL query language W3C standard for querying RDF graphs Can be used to query not only native RDF data,

More information

a paradigm for the Semantic Web Linked Data Angelica Lo Duca IIT-CNR Linked Open Data:

a paradigm for the Semantic Web Linked Data Angelica Lo Duca IIT-CNR Linked Open Data: Linked Data Angelica Lo Duca IIT-CNR angelica.loduca@iit.cnr.it Linked Open Data: a paradigm for the Semantic Web Linked Data are a series of best practices to connect structured data through the Web.

More information

Unit 2 RDF Formal Semantics in Detail

Unit 2 RDF Formal Semantics in Detail Unit 2 RDF Formal Semantics in Detail Axel Polleres Siemens AG Österreich VU 184.729 Semantic Web Technologies A. Polleres VU 184.729 1/41 Where are we? Last time we learnt: Basic ideas about RDF and how

More information

FedX: A Federation Layer for Distributed Query Processing on Linked Open Data

FedX: A Federation Layer for Distributed Query Processing on Linked Open Data FedX: A Federation Layer for Distributed Query Processing on Linked Open Data Andreas Schwarte 1, Peter Haase 1,KatjaHose 2, Ralf Schenkel 2, and Michael Schmidt 1 1 fluid Operations AG, Walldorf, Germany

More information

SPARQL. Fausto Giunchiglia and Mattia Fumagallli. University of Trento

SPARQL. Fausto Giunchiglia and Mattia Fumagallli. University of Trento SPARQL Fausto Giunchiglia and Mattia Fumagallli University of Trento Roadmap Introduction Basic query forms SELECT CONSTRUCT ASK DESCRIBE Other clauses and modifiers SPARQL Federated Query Exercises 2

More information

On Measuring the Lattice of Commonalities Among Several Linked Datasets

On Measuring the Lattice of Commonalities Among Several Linked Datasets On Measuring the Lattice of Commonalities Among Several Linked Datasets Michalis Mountantonakis and Yannis Tzitzikas FORTH-ICS Information Systems Laboratory University of Crete Computer Science Department

More information

Querying multiple Linked Data sources on the Web. Ruben Verborgh

Querying multiple Linked Data sources on the Web. Ruben Verborgh Querying multiple Linked Data sources on the Web Ruben Verborgh If you have a Linked Open Data set, you probably wonder: How can people query my Linked Data on the Web? A public SPARQL endpoint gives live

More information

Semantic Web Systems Linked Open Data Jacques Fleuriot School of Informatics

Semantic Web Systems Linked Open Data Jacques Fleuriot School of Informatics Semantic Web Systems Linked Open Data Jacques Fleuriot School of Informatics 9 th February 2015 In the previous lecture l Querying with XML Basic idea: search along paths in an XML tree e.g. path expression:

More information

INF3580/4580 Semantic Technologies Spring 2015

INF3580/4580 Semantic Technologies Spring 2015 INF3580/4580 Semantic Technologies Spring 2015 Lecture 15: RDFa Martin Giese 11th May 2015 Department of Informatics University of Oslo Repetition 18 June: Guest lecture, Lars Marius Garshol 25 May: no

More information

Formalising the Semantic Web. (These slides have been written by Axel Polleres, WU Vienna)

Formalising the Semantic Web. (These slides have been written by Axel Polleres, WU Vienna) Formalising the Semantic Web (These slides have been written by Axel Polleres, WU Vienna) The Semantics of RDF graphs Consider the following RDF data (written in Turtle): @prefix rdfs: .

More information

Querying Linked Data on the Web

Querying Linked Data on the Web Querying Linked Data on the Web Olaf Hartig University of Waterloo Nov. 12, 2013 1 MovieDB Data exposed to the Web via HTML Albania WarChild The Traditional, Hypertext Web CIA World Factbook 2 Linked Data

More information

Usage of Linked Data Introduction and Application Scenarios. Presented by: Barry Norton

Usage of Linked Data Introduction and Application Scenarios. Presented by: Barry Norton Usage of Linked Data Introduction and Application Scenarios Presented by: Barry Norton Agenda 1. Motivation Scenario 2. Linked Data Foundations 3. Introduction to Linked Data 4. Linked Data use case scenarios

More information

Triple Stores in a Nutshell

Triple Stores in a Nutshell Triple Stores in a Nutshell Franjo Bratić Alfred Wertner 1 Overview What are essential characteristics of a Triple Store? short introduction examples and background information The Agony of choice - what

More information

Programming Technologies for Web Resource Mining

Programming Technologies for Web Resource Mining Programming Technologies for Web Resource Mining SoftLang Team, University of Koblenz-Landau Prof. Dr. Ralf Lämmel Msc. Johannes Härtel Msc. Marcel Heinz Motivation What are interesting web resources??

More information

Semantic Technologies & Triplestores for BI

Semantic Technologies & Triplestores for BI Semantic Technologies & Triplestores for BI 1 st European Business Intelligence Summer School ebiss 2011 Marin Dimitrov (Ontotext) Jul 2011 ebiss 2011 #2 Contents Introduction to Semantic Technologies

More information

DBpedia-An Advancement Towards Content Extraction From Wikipedia

DBpedia-An Advancement Towards Content Extraction From Wikipedia DBpedia-An Advancement Towards Content Extraction From Wikipedia Neha Jain Government Degree College R.S Pura, Jammu, J&K Abstract: DBpedia is the research product of the efforts made towards extracting

More information

The Emerging Web of Linked Data

The Emerging Web of Linked Data 4th Berlin Semantic Web Meetup 26. February 2010 The Emerging Web of Linked Data Prof. Dr. Christian Bizer Freie Universität Berlin Outline 1. From a Web of Documents to a Web of Data Web APIs and Linked

More information

Exploring and Using the Semantic Web

Exploring and Using the Semantic Web Exploring and Using the Semantic Web Mathieu d Aquin KMi, The Open University m.daquin@open.ac.uk What?? Exploring the Semantic Web Vocabularies Ontologies Linked Data RDF documents Example: Exploring

More information

Prof. Dr. Christian Bizer

Prof. Dr. Christian Bizer 28th British National Conference on Databases (BNCOD2011) July 12 th, 2011, Manchester, UK Evolving the Web into a Global Data Space Prof. Dr. Christian Bizer Freie Universität ität Berlin Germany Outline

More information

: Semantic Web (2013 Fall)

: Semantic Web (2013 Fall) 03-60-569: Web (2013 Fall) University of Windsor September 4, 2013 Table of contents 1 2 3 4 5 Definition of the Web The World Wide Web is a system of interlinked hypertext documents accessed via the Internet

More information

Implementing OWL 2 RL and OWL 2 QL rule-sets for OWLIM

Implementing OWL 2 RL and OWL 2 QL rule-sets for OWLIM Implementing OWL 2 RL and OWL 2 QL rule-sets for OWLIM Barry Bishop, Spas Bojanov OWLED 2011, San Francisco, 06/06/2011 Ontotext Ontotext is a Sirma Group company Semantic technology developer 1 established

More information

Data Preprocessing. Slides by: Shree Jaswal

Data Preprocessing. Slides by: Shree Jaswal Data Preprocessing Slides by: Shree Jaswal Topics to be covered Why Preprocessing? Data Cleaning; Data Integration; Data Reduction: Attribute subset selection, Histograms, Clustering and Sampling; Data

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Integrating Complex Financial Workflows in Oracle Database Xavier Lopez Seamus Hayes Oracle PolarLake, LTD 2 Copyright 2011, Oracle

More information

Linked Data in the Clouds : a Sindice.com perspective

Linked Data in the Clouds : a Sindice.com perspective Linked Data in the Clouds : a Sindice.com perspective Giovanni Tummarello, FBK - DERI Copyright 2008. All rights reserved. Some definitions Linked Open Data: Official Definition The data that is available

More information

Linking Distributed Data across the Web

Linking Distributed Data across the Web Linking Distributed Data across the Web Dr Tom Heath Researcher, Platform Division Talis Information Ltd tom.heath@talis.com http://tomheath.com/ Overview Background From a Web of Documents to a Web of

More information

Interacting with Linked Data Part I: General Introduction

Interacting with Linked Data Part I: General Introduction Interacting with Linked Data Part I: General Introduction Agenda Part 0: Welcome Part I: General Introduction to Semantic Technologies Part II: Advanced Concepts Part III: OWLIM Part IV: Information Workbench-

More information

Software Paradigms (Lesson 10) Selected Topics in Software Architecture

Software Paradigms (Lesson 10) Selected Topics in Software Architecture Software Paradigms (Lesson 10) Selected Topics in Software Architecture Table of Contents 1 World-Wide-Web... 2 1.1 Basic Architectural Solution... 2 1.2 Designing WWW Applications... 7 2 CORBA... 11 2.1

More information

SRI International, Artificial Intelligence Center Menlo Park, USA, 24 July 2009

SRI International, Artificial Intelligence Center Menlo Park, USA, 24 July 2009 SRI International, Artificial Intelligence Center Menlo Park, USA, 24 July 2009 The Emerging Web of Linked Data Chris Bizer, Freie Universität Berlin Outline 1. From a Web of Documents to a Web of Data

More information

Rajashree Deka Tetherless World Constellation Rensselaer Polytechnic Institute

Rajashree Deka Tetherless World Constellation Rensselaer Polytechnic Institute Rajashree Deka Tetherless World Constellation Rensselaer Polytechnic Institute Ø The majority of data underpinning the Web are stored in Relational Databases (RDB). Ø Advantages: Secure and scalable architecture.

More information

INF3580/4580 Semantic Technologies Spring 2017

INF3580/4580 Semantic Technologies Spring 2017 INF3580/4580 Semantic Technologies Spring 2017 Lecture 9: Model Semantics & Reasoning Martin Giese 13th March 2017 Department of Informatics University of Oslo Today s Plan 1 Repetition: RDF semantics

More information

Digital Public Space: Publishing Datasets

Digital Public Space: Publishing Datasets Digital Public Space: Publishing Datasets Mo McRoberts, April 2012 I. Organise your data into sets. Implications Your data should ideally exist within a conceptual hierarchy (even if it's a singlelevel

More information

Profiles Research Networking Software API Guide

Profiles Research Networking Software API Guide Profiles Research Networking Software API Guide Documentation Version: March 13, 2013 Software Version: ProfilesRNS_1.0.3 Table of Contents Overview... 2 PersonID, URI, and Aliases... 3 1) Profiles RNS

More information

Federated Search Engine for Open Educational Linked Data

Federated Search Engine for Open Educational Linked Data Bulletin of the IEEE Technical Committee on Learning Technology, Volume 18, Number 4, 2016 6 Federated Search Engine for Open Educational Linked Data Maedeh Mosharraf and Fattaneh Taghiyareh Abstract Driven

More information

Enrichment of Sensor Descriptions and Measurements Using Semantic Technologies. Student: Alexandra Moraru Mentor: Prof. Dr.

Enrichment of Sensor Descriptions and Measurements Using Semantic Technologies. Student: Alexandra Moraru Mentor: Prof. Dr. Enrichment of Sensor Descriptions and Measurements Using Semantic Technologies Student: Alexandra Moraru Mentor: Prof. Dr. Dunja Mladenić Environmental Monitoring automation Traffic Monitoring integration

More information

Semantic Web Programming

Semantic Web Programming *) Semantic Web Programming John Hebeler Matthew Fisher Ryan Blace Andrew Perez-Lopez WILEY Wiley Publishing, Inc. Contents Foreword Introduction xxiii xxv Part One Introducing Semantic Web Programming

More information

Accessing information about Linked Data vocabularies with vocab.cc

Accessing information about Linked Data vocabularies with vocab.cc Accessing information about Linked Data vocabularies with vocab.cc Steffen Stadtmüller 1, Andreas Harth 1, and Marko Grobelnik 2 1 Institute AIFB, Karlsruhe Institute of Technology (KIT), Germany {steffen.stadtmueller,andreas.harth}@kit.edu

More information

Semantic Web in a Constrained Environment

Semantic Web in a Constrained Environment Semantic Web in a Constrained Environment Laurens Rietveld and Stefan Schlobach Department of Computer Science, VU University Amsterdam, The Netherlands {laurens.rietveld,k.s.schlobach}@vu.nl Abstract.

More information

Introducing Linked Data

Introducing Linked Data Introducing Linked Data (Part of this work was funded by PlanetData NoE FP7/2007-2013) Irini Fundulaki 1 1 Institute of Computer Science FORTH & W3C Greece Office Manager EICOS : 4th Meeting, Athens, Greece

More information

Advanced Data Management

Advanced Data Management Advanced Data Management Medha Atre Office: KD-219 atrem@cse.iitk.ac.in Aug 11, 2016 Assignment-1 due on Aug 15 23:59 IST. Submission instructions will be posted by tomorrow, Friday Aug 12 on the course

More information

Linguaggi Logiche e Tecnologie per la Gestione Semantica dei testi

Linguaggi Logiche e Tecnologie per la Gestione Semantica dei testi Linguaggi Logiche e Tecnologie per la Gestione Semantica dei testi Outline Brief recap on RDFS+ Using RDFS+ SKOS FOAF Recap RDFS+ includes a subset of the constructs in OWL. It offers more expressive power

More information

> Semantic Web Use Cases and Case Studies

> Semantic Web Use Cases and Case Studies > Semantic Web Use Cases and Case Studies Case Study: Improving Web Search using Metadata Peter Mika, Yahoo! Research, Spain November 2008 Presenting compelling search results depends critically on understanding

More information

From the Web to the Semantic Web: RDF and RDF Schema

From the Web to the Semantic Web: RDF and RDF Schema From the Web to the Semantic Web: RDF and RDF Schema Languages for web Master s Degree Course in Computer Engineering - (A.Y. 2016/2017) The Semantic Web [Berners-Lee et al., Scientific American, 2001]

More information

RuleML and SWRL, Proof and Trust

RuleML and SWRL, Proof and Trust RuleML and SWRL, Proof and Trust Semantic Web F. Abel and D. Krause IVS Semantic Web Group January 17, 2008 1 Solution 1: RuleML Express the following RuleML code as a human-readable First Order Logic

More information

SPARQL เอกสารหล ก ใน มคอ.3

SPARQL เอกสารหล ก ใน มคอ.3 SPARQL SLIDES REFERENCE: SEMANTIC WEB PRIMER BOOK เอกสารหล ก ใน มคอ.3 Why an RDF Query Language? Different XML Representations XML at a lower level of abstraction than RDF There are various ways of syntactically

More information

Link Traversal Querying for a Diverse Web of Data

Link Traversal Querying for a Diverse Web of Data Undefined 0 (2014) 1 0 1 IOS Press Link Traversal Querying for a Diverse Web of Data Jürgen Umbrich a,, Aidan Hogan b, Axel Polleres a and Stefan Decker c a Vienna University of Economics and Business;

More information

Semantic reasoning for dynamic knowledge bases. Lionel Médini M2IA Knowledge Dynamics 2018

Semantic reasoning for dynamic knowledge bases. Lionel Médini M2IA Knowledge Dynamics 2018 Semantic reasoning for dynamic knowledge bases Lionel Médini M2IA Knowledge Dynamics 2018 1 Outline Summary Logics Semantic Web Languages Reasoning Web-based reasoning techniques Reasoning using SemWeb

More information

Semantic Web Test

Semantic Web Test Semantic Web Test 24.01.2017 Group 1 No. A B C D 1 X X X 2 X X 3 X X 4 X X 5 X X 6 X X X X 7 X X 8 X X 9 X X X 10 X X X 11 X 12 X X X 13 X X 14 X X 15 X X 16 X X 17 X 18 X X 19 X 20 X X 1. Which statements

More information

Chapter 3 Querying RDF stores with SPARQL

Chapter 3 Querying RDF stores with SPARQL Chapter 3 Querying RDF stores with SPARQL Why an RDF Query Language? l Why not use an XML query language? l XML at a lower level of abstraction than RDF l There are various ways of syntactically representing

More information

CONTENTDM METADATA INTO LINKED DATA

CONTENTDM METADATA INTO LINKED DATA LINKED DATA DEMYSTIFIED PRACTICAL EFFORTS TO TRANSFORM PRACTICAL EFFORTS TO TRANSFORM CONTENTDM METADATA INTO LINKED DATA PRESENTERS Silvia Southwick Digital Collections Metadata Librarian UNLV Libraries

More information

Preserving Linked Data on the Semantic Web by the application of Link Integrity techniques from Hypermedia

Preserving Linked Data on the Semantic Web by the application of Link Integrity techniques from Hypermedia Preserving Linked Data on the Semantic Web by the application of Link Integrity techniques from Hypermedia Rob Vesse, Wendy Hall and Les Carr {rav08r,wh,lac}@ecs.soton.ac.uk 27 April 2010 Link Integrity

More information

Nested Queries in SPARQL

Nested Queries in SPARQL Nested Queries in SPARQL Renzo Angles Claudio Gutierrez Presented by: Nuno Lopes Stefan.Decker@deri.org http://www.stefandecker.org/! Copyright 2010. All rights reserved. Motivation for nested queries

More information

OKKAM-based instance level integration

OKKAM-based instance level integration OKKAM-based instance level integration Paolo Bouquet W3C RDF2RDB This work is co-funded by the European Commission in the context of the Large-scale Integrated project OKKAM (GA 215032) RoadMap Using the

More information

Augmenting Video Search with Linked Open Data

Augmenting Video Search with Linked Open Data Augmenting Video Search with Linked Open Data Jörg Waitelonis, Harald Sack (Hasso-Plattner-Institute Potsdam, Germany {joerg.waitelonis harald.sack}@hpi.uni-potsdam.de) Abstract: Linked Open Data has become

More information

Mapping between Digital Identity Ontologies through SISM

Mapping between Digital Identity Ontologies through SISM Mapping between Digital Identity Ontologies through SISM Matthew Rowe The OAK Group, Department of Computer Science, University of Sheffield, Regent Court, 211 Portobello Street, Sheffield S1 4DP, UK m.rowe@dcs.shef.ac.uk

More information

Scalable Integration and Processing of Linked Data

Scalable Integration and Processing of Linked Data Scalable Integration and Processing of Linked Data Andreas Harth, Aidan Hogan, Spyros Kotoulas, Jacopo Urbani Tutorial at ISWC 2011, http://sild.cs.vu.nl/ Outline Session 1: Introduction to Linked Data

More information

SADI Semantic Web Services

SADI Semantic Web Services SADI Semantic Web Services London, UK 8 December 8 2011 SADI Semantic Web Services Instructor: Luke McCarthy http:// sadiframework.org/training/ 2 Contents 2.1 Introduction to Semantic Web Services 2.1

More information

Semantic Web Systems Querying Jacques Fleuriot School of Informatics

Semantic Web Systems Querying Jacques Fleuriot School of Informatics Semantic Web Systems Querying Jacques Fleuriot School of Informatics 5 th February 2015 In the previous lecture l Serialising RDF in XML RDF Triples with literal Object edstaff:9888 foaf:name Ewan Klein.

More information

Semantic Adaptation Approach for Adaptive Web-Based Systems

Semantic Adaptation Approach for Adaptive Web-Based Systems Semantic Adaptation Approach for Adaptive Web-Based Systems Bujar Raufi, Artan Luma, Xhemal Zenuni, Florije Ismaili Faculty of Contemporary Sciences and Technologies, South East European University Ilindenska

More information

A Storage, Retrieval, and Application Platform for Ultra-Large-Scale Linked Data

A Storage, Retrieval, and Application Platform for Ultra-Large-Scale Linked Data A Storage, Retrieval, and Application Platform for Ultra-Large-Scale Linked Data Yongju Lee School of Computer Science and Engineering Kyungpook National University, Daegu, Korea Jeonghong Kim School of

More information

Querying Description Logics

Querying Description Logics Querying Description Logics Petr Křemen 1 SPARQL and Ontology Querying 1.1 SPARQL Query Structure SPARQL Language [SS13] is aimed at querying RDF(S) [GB04] documents. As OWL 2 [MPSP09] is an extension

More information

Cluster-based Instance Consolidation For Subsequent Matching

Cluster-based Instance Consolidation For Subsequent Matching Jennifer Sleeman and Tim Finin, Cluster-based Instance Consolidation For Subsequent Matching, First International Workshop on Knowledge Extraction and Consolidation from Social Media, November 2012, Boston.

More information