Introduction to Linked Open Data

Size: px
Start display at page:

Download "Introduction to Linked Open Data"

Transcription

1 Introduction to Linked Open Data Manolis Koubarakis National and Kapodistrian University of Athens (UoA) Dept. of Informatics and Telecommunications 1

2 Presentation Outline The UoA group in MELODIES Open data Linked open data and ontologies (what are they?) Linked Earth Observation Data and Linked Geospatial Data Project TELEIOS and its achievements in developing Virtual Earth Observatories (and Linked Open Earth Observation Data) The NOA Fire Monitoring application (as an example of a service like the ones presented earlier we could have developed it in MELODIES). 2

3 The UoA Group in MELODIES 1 Professor (Manolis Koubarakis) 9 Researchers (Ph.D. and M.Sc. Students) Konstantina Bereta Dimitris Bilidas Kalliroi Dogani George Garbis Stella Giannakopoulou Maria Karpathiotaki Babis Nikolaou Panayiotis Smeros Ioannis Vlachopoulos 3

4 Expertise Databases Artificial Intelligence Web Recently: Semantic Web and Linked Open Data Flagship project: TELEIOS ( 4

5 MaDgIK ( Larger UoA group to which we belong Led by Professors Alex Delis, Dimitris Gunopulos, Mike Hatzopoulos, Yannis Ioannidis and Manolis Koubarakis Other expertise: databases, digital libraries, open access, distributed systems, grid and cloud computing, data mining Flagship projects: OpenAire, Optique (Big Data), Human Brain 5

6 Why are we in MELODIES? Well, Ugo and Jon thought it was a good idea (Thanks to both of you!). TELEIOS ( the first project internationally that brought the linked data paradigm to Earth Observation. We would like to continue this pioneer work in MELODIES! 6

7 Role in MELODIES WP2: Development of Technical Platform Leaders of Task 2.3: Linked Data Management Framework 7

8 Presentation Outline The UoA group in MELODIES Open data Linked open data and ontologies (what are they?) Linked Earth Observation Data and Linked Geospatial Data Project TELEIOS and its achievements in developing Virtual Earth Observatories (and Linked Open Earth Observation Data) The NOA Fire Monitoring application (as an example of a service like the ones presented earlier we could have developed it in MELODIES). 8

9 Open Data The open data movement is about making data public so they can be used freely by everyone. Lots of such data becoming available today is government data. 9

10 10

11 11

12 12

13 EU s Public Sector Information (PSI) Directive June 2013 Access=Re-use Accessiblity on an INSPIREd basis (machine readable, metadata, interoperable) Charging against marginal costs as a rule PSI re-use watchdog brought in Enhanced EC monitoring and guidance See 13

14 Open Earth Observation Data Paper on Landsat data use and charges by the US National Geospatial Advisory Committee Landsat Advisory Group: Landsat data must continue to be distributed at no cost. The Sentinel missions by ESA have already adopted a fully open and free data access policy. Autumn 2012 edition of the newsletter of the European Association of Remote Sensing Companies makes the case for a free and open data policy for GMES, arguing that this will fuel the development of the geo-information services industry, and as a result, bring maximum economic benefit to Europe. 14

15 Summary There is lots of open data out there. There is more to come! The exploitation opportunities are very big! 15

16 Presentation Outline The UoA group in MELODIES Open data Linked open data and ontologies (what are they?) Linked Earth Observation Data and Linked Geospatial Data Project TELEIOS and its achievements in developing Virtual Earth Observatories (and Linked Open Earth Observation Data) The NOA Fire Monitoring application (as an example of a service like the ones presented earlier we could have developed it in MELODIES). 16

17 Linked Open Data Started as a W3C community effort. Goal: to extend the Web with a data commons by publishing various open data sets as RDF on the Web and by setting RDF links between data items from different data sources. The LOD community is developing a set of best practices for achieving this. 17

18 The Linked Open Data Cloud 18

19 MELODIES related data in the LOD Cloud Geographical data e.g., Geonames or OpenStreetMap etc. Earth Observation data published by our group in TELEIOS e.g., CORINE, Urban Atlas. See (data of relevance to Greece) and (European data). More to come in MELODIES! 19

20 Key Linked Data Technologies URIs: a generic means to identify entities or concepts in the world HTTP: a simple, yet universal, mechanism for retrieving resources, or descriptions of resources RDF: a data model for structuring and linking data that describes things in the world SPARQL: a query language for querying linked data 20

21 Example (does not exist right now) Note the difference between the person Angelina Jolie and the various Web pages for her. It is common to use hash URIs to refer to the real person:

22 Example (cont d) dbpedia-owl:starring: dbpedia-owl:director :

23 Dereferenceable URIs Linked data design principles prescribe that URIs should be dereferencable. Dereferenceable URIs allow us to obtain a copy or representation of the resource they identify. In this way, we can navigate the Web using e.g., HTTP and obtain useful information.

24 Problem Data sets will typically talk about the same object using different URIs. For example:

25 Solution: Linking Use the special kind of link owl:sameas that identifies the resources:

26 The Greek Administrative Geography (GAG) According to the Kallikratis administrative reform of 2010, Greece consists of: 13 regions (e.g., Crete) Each region consists of perfectures (e.g., Heraklion) Each perfecture consists of municipalities (e.g., Dimos Chersonisou) You can find the dataset at 26

27 Other Links Beyond owl:sameas Natura 2000 Example of link to GAG: This protected area is contained in the perfecture of Macedonia. Public transport Examples of links: This bus stop is in the municipality of Athens. This bus stop is near a public building. Public buildings You can find these datasets as well at These datasets were prepared as a graduate course term project by teams of at most 3 students. 27

28 5-star Linked Open Data 28

29 RDF Basics The world consists of entities (resources in RDF jargon). Resources are identified by URIs and described by simple properties and property values. Example: Angelina Jolie stars in the film Changeling directed by Clint Eastwood. 29

30 RDF Statements RDF statements are triples of the form subject predicate object. Example: < < < < < < 30

31 RDF Graphs dbpedia:changeling_(film) dbpedia-owl:starring dbpedia-owl:director dbpedia:angelina_jolie dbpedia:clint_eastwood 32

32 RDF Schema The RDF Vocabulary Description Language 1.0 (or RDF Schema or RDFS) is a language that can be used to define the vocabulary (i.e., the terms) to be used in an RDF graph. The RDF Vocabulary Description Language 1.0 is used to indicate that we are describing specific kinds or classes of resources, and will use specific properties in describing those resources. The RDF Vocabulary Description Language 1.0 is an ontology definition language (a simple one, compared with other languages such as OWL; we can only define taxonomies and do some basic inference about them). The RDF Vocabulary Description Language is like a schema definition language in the relational or object-oriented data models (hence the alternative name RDF Schema we will use this name and its shorthand RDFS mostly!). 33

33 Example Class Hierarchy owl:thing rdfs:subclassof dbpedia-owl:person rdfs:subclassof rdfs:subclassof dbpedia-owl:actor dbpedia-owl:film_director rdf:type rdf:type rdf:type dbpedia:angelina_jolie dbpedia:clint_eastwood 34

34 Example Property Hierarchy dbpedia-owl:spouseof rdf:subpropertyof rdf:subpropertyof dbpedia-owl:husbandof dbpedia-owl:wifeof 35

35 Standard Vocabularies Linked data are written using standard vocabularies i.e., vocabularies that have been agreed by certain communities for describing certain kinds of resources. Examples: Dublin Core schema.org 36

36 Dublin Core Dublin Core is a community effort that has defined a set of metadata attributes (e.g., creator, creation date, title etc.) for describing a wide range of digital resources. See for more information. 37

37 Example 38

38 This is an initiative by Bing, Google, Yahoo! and Yandex to provide a collection of schemas that webmasters can use to markup their pages in ways recognized by major search providers. 39

39 40

40 41

41 Ontologies An ontology is a formal, explicit, shared specification of a conceptualization of a domain (Gruber, 1993). Conceptualization: the objects, concepts, and other entities that are assumed to exist in some area of interest and the relationships that hold among them. A conceptualization is an abstract, simplified view of the world that we wish to represent for some purpose. The term ontology is borrowed from Philosophy, where ontology is a systematic account of existence (what things exist, how they can be differentiated from each other etc.). Today the word ontology is a synonym for a shared knowledge base. 42

42 Formal Languages for Ontologies Ontologies are typically expressed in some formal logic-based language. Web ontologies are written in RDFS or OWL. 43

43 Example: the GAG RDFS Ontology 44

44 SPARQL SPARQL stands for SPARQL Protocol and RDF Query Language. It is the standard query language for RDF data proposed by the W3C. It is based on matching graph patterns against RDF graphs. The simplest kind of graph pattern is a triple pattern. A triple pattern is like an RDF triple, but with the option of a variable in the subject, predicate or object positions.

45 Example rdf: foaf: rdfs: < < rdf:type foaf:person ; foaf:name Angelina Jolie" ; foaf:mbox <mailto:ajolie@gmail.com> ; foaf:homepage < ; foaf:interest < ; foaf:knows [ rdf:type foaf:person ; foaf:name Michael Douglas" ]. 46

46 Example SPARQL Query SELECT?name WHERE {?x foaf:name?name.?x rdf:type foaf:person.?x foaf:knows?y.?y foaf:name Michael Douglas. } Result:?name Angelina Jolie"

47 Presentation Outline The UoA group in MELODIES Open data Linked open data and ontologies (what are they?) Linked Earth Observation Data and Linked Geospatial Data Project TELEIOS and its achievements in developing Virtual Earth Observatories (and Linked Open Earth Observation Data) The NOA Fire Monitoring application (as an example of a service like the ones presented earlier we could have developed it in MELODIES). 48

48 Geospatial data on the Web 49

49 Open Government Data - Geospatial 50

50 Linked geospatial data Ordnance Survey 51

51 Linked geospatial data Open Street Map 52

52 The Greek Administrative Geography According to the Kallikratis administrative reform of 2010, Greece consists of: 13 regions (e.g., Crete) Each region consists of perfectures (e.g., Heraklion) Each perfecture consists of municipalities (e.g., Dimos Chersonisou) 53

53 Open EO Data Lots of open Earth Observation data have been made available in the last few years (e.g., by ESA), but this data still exists in different data silos (archives). 54

54 Challenge in MELODIES (also in LEO) Follow the lead of TELEIOS: open up existing EO silos by moving them over to the linked data paradigm. 55

55 EO Data Centers Before TELEIOS Users PDGS Catalogue Raw Data Processing Chains Archive 56

56 Scientific Database and Semantic Web Technologies TELEIOS Virtual Earth Observatories Web Portals Rapid Mapping Linked Geospatial Data Semantic Annotations Ontologies Knowledge Discovery and Data Mining KNOWL- EDGE GIS Data Derived Products Metadata Features Raw Data Ingestion Processing Content Cataloguing Extraction Archiving DATA

57 Applications Developed in TELEIOS The NOA fire monitoring and burnt scar mapping application New generation catalogues for the TerraSAR-X archive of DLR Rapid mapping applications in disaster scenarios See 58

58 The NOA Fire monitoring application 9.5⁰ East Back End: MonetDB / Strabon Front End: GUI Map Element Corine Landcover Admin Boundaries POIs External Sources Geospatial Ontology Data Vault Cataloguing Service & Metadata Creation HotSpots Linked Geospatial Data Semantic technologies Raw Data Processing Chain (SciQL based)

59 Data Sources in the Fire Monitoring Application SEVIRI images (shapefiles from NOA) CORINE land cover (shapefiles from EEA) Greek Administrative Geography (the pdf of the relevant Greek law and a shapefile) Greek Coastline (shapefile from NOA) Geonames (RDF from ) Road network, POI etc. (from OpenStreetMap translated into linked data by the LinkedGeoData project Notice that only two data sources were linked data 60

60 Foundational Technologies The data model strdf and the query language stsparql The system Strabon 61

61 The Data Model strdf strdf stands for spatiotemporal RDF. It is an extension of the W3C standard RDF for the representation of geospatial data that may change over time. strdf extends RDF with: Spatial literals encoded in OGC standards Well- Known Text or GML New datatypes for spatial literals (strdf:wkt, strdf:gml and strdf:geometry) Valid time of triples with new data type strdf:period

62 strdf: An example

63 strdf: An example (WKT) ex:burntarea1 rdf:type noa:burntarea. ex:burntarea1 noa:hasid "1"^^xsd:decimal. ex:burntarea1 noa:hasarea " "^^xsd:double. Spatial Literal (OpenGIS Simple Features) ex:burntarea1 strdf:hasgeometry "POLYGON(( , , , , )); < Spatial Data Type Well-Known Text

64 strdf: An example (GML) ex:burntarea1 rdf:type noa:burntarea. ex:burntarea1 noa:hasid "1"^^xsd:decimal. ex:burntarea1 noa:hasarea " "^^xsd:double. ex:burntarea1 strdf:hasgeometry "<gml:polygon Spatial Literal (GML Simple Features Profile) srsname=' <gml:outerboundaryis> <gml:linearring> <gml:coordinates>38.16, , , </gml:coordinates> </gml:linearring> </gml:outerboundaryis> </gml:polygon>"^^strdf:gml ,23.80, Spatial Data Type GML

65 stsparql: An example Find all burnt forests close to a city SELECT?BA?BAGEO WHERE {?R rdf:type noa:region.?r strdf:hasgeometry?rgeo.?r noa:hascorinelandcoveruse?f.?f rdfs:subclassof clc:forests.?city rdf:type dbpedia:city.?city strdf:hasgeometry?cgeo.?ba rdf:type noa:burntarea.?ba strdf:hasgeometry?bageo. Spatial Functions (OGC Simple Feature Access) FILTER(strdf:anyInteract(?RGEO,?BAGEO) && strdf:distance(?bageo,?cgeo, ogc:meter) < 2000) }

66 stsparql vs. GeoSPARQL GeoSPARQL is a recent effort by OGC to develop an extension of SPARQL for querying geospatial data expressed in RDF. stsparql and GeoSPARQL have been developed independently. stsparql geospatial query functionality is very close to a subset of the recent OGC standard GeoSPARQL: Core Geometry extension Geometry topology extension Strabon supports both stsparql and GeoSPARQL

67 Strabon: The World s Fastest and More Functional Spatiotemporal RDF Store ( strdf graphs stsparql/ GeoSPARQL queries Query Engine stsparql to SPARQL Translator Parser Optimizer Evaluator Transaction Manager Strabon Storage Manager Named Graph Translator Repository SAIL RDBMS GeneralDB PostgreSQL PostGIS PostgreSQL Temporal MonetDB

68 So what? TELEIOS lesson: If we know what your data sources are, and together we transform them into linked data and store them in Strabon then application development is just a few stsparql queries away. Can we replay this in MELODIES? 69

69 Rapid Mapping in the NOA Fire Monitoring Service

70 Creating a map Get all hotspots detected in the Peloponnese on 24/08/2007. SELECT?h?hGeo?hAcqTime?hConfidence?hConfirmation?hProvider?hSensor?hSatellite WHERE {?h rdf:type noa:hotspot ; noa:hasgeometry?hgeo ; noa:hasacquisitiontime?hacqtime ; noa:hasconfidence?hconfidence ; noa:isproducedby?hprovider ; noa:hasconfirmation?hconfirmation ; noa:isderivedfromsensor?hsensor ; noa:isderivedfromsatellite?hsatellite. FILTER(" T00:00:00"^^xsd:dateTime <=?hacqtime &&?hacqtime <= " T23:59:59"^^xsd:dateTime). FILTER(strdf:contains("POLYGON(( , , , , ))" ^^strdf:wkt,?hgeo) ). }

71 Improve product accuracy Correlate fire products with auxiliary data to increase their thematic accuracy e.g., delete the parts of the polygons that fall into the sea. DELETE {?h noa:hasgeometry?hgeo} INSERT {?h noa:hasgeometry?dif} WHERE { SELECT DISTINCT?h?hGeo (strdf:intersection(?hgeo, strdf:union(?cgeo)) AS?dif) WHERE {?h rdf:type noa:hotspot.?h strdf:hasgeometry?hgeo.?c rdf:type coast:coastline.?c strdf:hasgeometry?cgeo. FILTER( strdf:anyinteract(?hgeo,?cgeo)} GROUP BY?h?hGeo HAVING strdf:overlap(?hgeo, strdf:union(?cgeo))}

72 Creating a map (cont d) Get all coniferous forests in Peloponnese SELECT?a?aGeo WHERE{?a rdf:type clc:area; clc:haslanduse?alanduse; noa:hasgeometry?ageo.?alanduse rdf:type?alandusetype. FILTER(?aLandUseType = clc:coniferousforest). FILTER(strdf:contains("POLYGON(( , , , , )) ^^strdf:wkt,?ageo)). }

73 Creating a map (cont d) Get all capitals of prefectures of the Peloponnese. SELECT?feature?fName?fGeo WHERE{?feature rdf:type gn:feature; noa:hasgeography?fgeo; gn:name?fname; gn:featurecode?fcode. FILTER(?fCode = gn:p.ppla?fcode = gn:p.ppla2 ). FILTER(strdf:contains("POLYGON(( , , , , )) ^^strdf:wkt,?fgeo)). }

74 Final map

75 Sextant (

76 Readings Linked Data and Semantic Web The book Linked Data: Evolving the Web into a Global Data Space by Tom Heath and Christian Bizer available from The book The Semantic Web Primer by Grigoris Antoniou and Frank van Harmelen available from The (more theoretical) book Foundations of Semantic Web Technologies by Pascal Hitzler, Markus Krötzsch and Sebastian Rudolph. See The slides of my graduate course Knowledge Technologies. Get them up from (the site is in Greek; just download the slides using the links ). The work of project LOD2 ( The linked data life cycle that I mentioned is discussed in a paper and a tutorial found at Tutorial.html. 77

77 Readings Linked Data and Semantic Web The W3C Semantic Web Activity web site ( Browse! There are many interesting introductory tutorials. You should definitely see one of the introductory tutorials by Ivan Herman e.g., IH/Tutorial.pdf which gives a very good introduction to the current state of the art in this area. The ESWC invited talk by Jim Hendler available at which looks at what the Semantic Web has achieved so far and deals with various criticisms of the area. 78

78 Readings Linked Earth Observation Data TELEIOS Web site (start with the short video on the top page). Strabon Web site Sextant Web site Linked open data for the fire monitoring application The NOA fire monitoring application is described in detail in the following publication: The version of the fire monitoring application developed by NOA in the Greek project SWeFS is available at 79

79 Readings Linked Geospatial Data The book Linked Data: A Geographic Perspective by Glen Hart and Catherine Dolbear, CRC Press, See the slides of our tutorials available at: and the accompanying paper you will find there. 80

80 Plan for Tomorrow Come to our session on linked data. Bring a data source. Let us try to turn it into linked data together! Do you have a service? Let us try to build it together Tell us what we can do for you! 81

81 Thank you for your attention! Questions? Remember us when you are planning Horizon 2020 projects! 82

Building Virtual Earth Observatories Using Scientific Database, Semantic Web and Linked Geospatial Data Technologies

Building Virtual Earth Observatories Using Scientific Database, Semantic Web and Linked Geospatial Data Technologies Building Virtual Earth Observatories Using Scientific Database, Semantic Web and Linked Geospatial Data Technologies Presenter: George Garbis ggarbis@di.uoa.gr Dept. of Informatics and Telecommunications

More information

Strabon. Semantic support for EO Data Access in TELEIOS. Presenter: George Garbis

Strabon. Semantic support for EO Data Access in TELEIOS. Presenter: George Garbis Strabon Semantic support for EO Data Access in TELEIOS Presenter: George Garbis Dept. of Informatics and Telecommunications National and Kapodistrian University of Athens June 23 Florence, Italy Outline

More information

Big, Linked and Open Earth Observation Data: the Projects TELEIOS and LEO

Big, Linked and Open Earth Observation Data: the Projects TELEIOS and LEO Big, Linked and Open Earth Observation Data: the Projects TELEIOS and LEO Manolis Koubarakis Charalampos Nikolaou HELLENIC REPUBLIC National and Kapodistrian University of Athens Introduction TELEIOS:

More information

Linked Earth Observation Data: The Projects TELEIOS and LEO

Linked Earth Observation Data: The Projects TELEIOS and LEO Linked Earth Observation Data: The Projects TELEIOS and LEO Manolis Koubarakis, Kostis Kyzirakos, Charalampos Nikolaou, George Garbis, Konstantina Bereta, Panayiotis Smeros, Stella Gianakopoulou, Kallirroi

More information

Representing and Querying Linked Geospatial Data

Representing and Querying Linked Geospatial Data Representing and Querying Linked Geospatial Data Kostis Kyzirakos kostis@cwi.nl Centrum voor Wiskunde en Informatica Database Architectures group University of Athens School of Science Faculty of Informatics

More information

SEXTANT 1. Purpose of the Application

SEXTANT 1. Purpose of the Application SEXTANT 1. Purpose of the Application Sextant has been used in the domains of Earth Observation and Environment by presenting its browsing and visualization capabilities using a number of link geospatial

More information

CREATING VIRTUAL SEMANTIC GRAPHS ON TOP OF BIG DATA FROM SPACE. Konstantina Bereta and Manolis Koubarakis

CREATING VIRTUAL SEMANTIC GRAPHS ON TOP OF BIG DATA FROM SPACE. Konstantina Bereta and Manolis Koubarakis CREATING VIRTUAL SEMANTIC GRAPHS ON TOP OF BIG DATA FROM SPACE Konstantina Bereta and Manolis Koubarakis National and Kapodistrian University of Athens ABSTRACT We present the system Ontop-spatial for

More information

Representation and Querying of Valid Time of Triples in Linked Geospatial Data

Representation and Querying of Valid Time of Triples in Linked Geospatial Data Representation and Querying of Valid Time of Triples in Linked Geospatial Data Konstantina Bereta, Panayiotis Smeros, and Manolis Koubarakis National and Kapodistrian University of Athens, Greece {Konstantina.Bereta,

More information

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

a paradigm for the Introduction to Semantic Web Semantic Web Angelica Lo Duca IIT-CNR Linked Open Data: Introduction to Semantic Web Angelica Lo Duca IIT-CNR angelica.loduca@iit.cnr.it Linked Open Data: a paradigm for the Semantic Web Course Outline Introduction to SW Give a structure to data (RDF Data Model)

More information

TELEIOS FP Deliverable D4.3. The evaluation of the developed implementation

TELEIOS FP Deliverable D4.3. The evaluation of the developed implementation TELEIOS FP7-257662 Deliverable D4.3 The evaluation of the developed implementation Kostis Kyzirakos, George Garbis, Charalampos Nikolaou, Konstantina Bereta, Stella Giannakopoulou, Kallirroi Dogani, Panayiotis

More information

TELEIOS 3rd User Community Workshop

TELEIOS 3rd User Community Workshop TELEIOS 3rd User Community Workshop Wrap-up Manolis Koubarakis National and Kapodistrian University of Athens Wrap-up Session (Friday) Wrap-up of the individual sessions (done already) Brainstorming Session

More information

Strabon: A Semantic Geospatial DBMS

Strabon: A Semantic Geospatial DBMS Strabon: A Semantic Geospatial DBMS Kostis Kyzirakos, Manos Karpathiotakis, and Manolis Koubarakis National and Kapodistrian University of Athens, Greece {kkyzir,mk,koubarak}@di.uoa.gr Abstract. We present

More information

LEOpatra: A Mobile Application for Smart Fertilization Based on Linked Data

LEOpatra: A Mobile Application for Smart Fertilization Based on Linked Data LEOpatra: A Mobile Application for Smart Fertilization Based on Linked Data Stefan Burgstaller 1, Wolfgang Angermair 1, Fabian Niggemann 2, Silke Migdall 2, Heike Bach 2, Ioannis Vlahopoulos 3, Dimitrianos

More information

Managing Big, Linked, and Open Earth-Observation Data

Managing Big, Linked, and Open Earth-Observation Data Managing Big, Linked, and Open Earth-Observation Data Using the TELEIOS/LEO software stack istockphoto.com/nadla MANOLIS KOUBARAKIS, KOSTIS KYZIRAKOS, CHARALAMPOS NIKOLAOU, GEORGE GARBIS, KONSTANTINA BERETA,

More information

arxiv: v1 [cs.db] 24 May 2013

arxiv: v1 [cs.db] 24 May 2013 Geographica: A Benchmark for Geospatial RDF Stores George Garbis, Kostis Kyzirakos, and Manolis Koubarakis arxiv:1305.5653v1 [cs.db] 24 May 2013 National and Kapodistrian University of Athens, Greece {ggarbis,kk,koubarak}@di.uoa.gr

More information

Reducing Consumer Uncertainty

Reducing Consumer Uncertainty Spatial Analytics Reducing Consumer Uncertainty Towards an Ontology for Geospatial User-centric Metadata Introduction Cooperative Research Centre for Spatial Information (CRCSI) in Australia Communicate

More information

Querying Linked Geospatial Data with Incomplete Information

Querying Linked Geospatial Data with Incomplete Information Querying Linked Geospatial Data with Incomplete Information C. Nikolaou and M. Koubarakis Department of Informatics and Telecommunications National and Kapodistrian University of Athens, Greece charnik@di.uoa.gr

More information

Geographica: A Benchmark for Geospatial RDF Stores

Geographica: A Benchmark for Geospatial RDF Stores Geographica: A Benchmark for Geospatial RDF Stores George Garbis, Kostis Kyzirakos, and Manolis Koubarakis National and Kapodistrian University of Athens, Greece {ggarbis,kk,koubarak}@di.uoa.gr Abstract.

More information

Geographica: A Benchmark for Geospatial RDF Stores (Long Version)

Geographica: A Benchmark for Geospatial RDF Stores (Long Version) Geographica: A Benchmark for Geospatial RDF Stores (Long Version) George Garbis, Kostis Kyzirakos, and Manolis Koubarakis National and Kapodistrian University of Athens, Greece {ggarbis,kk,koubarak}@di.uoa.gr

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

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

Publishing Statistical Data and Geospatial Data as Linked Data Creating a Semantic Data Platform

Publishing Statistical Data and Geospatial Data as Linked Data Creating a Semantic Data Platform Publishing Statistical Data and Geospatial Data as Linked Data Creating a Semantic Data Platform Hans Viehmann Product Manager EMEA ORACLE Corporation January 22, 2017 @SpatialHannes Safe Harbor Statement

More information

Using Linked Data Concepts to Blend and Analyze Geospatial and Statistical Data Creating a Semantic Data Platform

Using Linked Data Concepts to Blend and Analyze Geospatial and Statistical Data Creating a Semantic Data Platform Using Linked Data Concepts to Blend and Analyze Geospatial and Statistical Data Creating a Semantic Data Platform Hans Viehmann Product Manager EMEA ORACLE Corporation October 17, 2018 @SpatialHannes Safe

More information

COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web. Dr Thanassis Tiropanis

COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web. Dr Thanassis Tiropanis COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web Dr Thanassis Tiropanis t.tiropanis@southampton.ac.uk The narrative Semantic Web Technologies The Web of data and the semantic

More information

Knowledge Representation for the Semantic Web

Knowledge Representation for the Semantic Web Knowledge Representation for the Semantic Web Winter Quarter 2012 Pascal Hitzler Slides 2 01/05/2011 Kno.e.sis Center Wright State University, Dayton, OH http://www.knoesis.org/pascal/ KR4SW Winter 2012

More information

geospatial querying ApacheCon Big Data Europe 2015 Budapest, 28/9/2015

geospatial querying ApacheCon Big Data Europe 2015 Budapest, 28/9/2015 geospatial querying in ApacheCon Big Data Europe 2015 Budapest, 28/9/2015 Who am I? Sergio Fernández @wikier http://linkedin.com/in/sergiofernandez http://www.wikier.org Partner Technology Manager at Redlink

More information

Reducing Consumer Uncertainty Towards a Vocabulary for User-centric Geospatial Metadata

Reducing Consumer Uncertainty Towards a Vocabulary for User-centric Geospatial Metadata Meeting Host Supporting Partner Meeting Sponsors Reducing Consumer Uncertainty Towards a Vocabulary for User-centric Geospatial Metadata 105th OGC Technical Committee Palmerston North, New Zealand Dr.

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

GeoDCAT-AP Representing geographic metadata by using the "DCAT application profile for data portals in Europe"

GeoDCAT-AP Representing geographic metadata by using the DCAT application profile for data portals in Europe GeoDCAT-AP Representing geographic metadata by using the "DCAT application profile for data portals in Europe" Andrea Perego, Vlado Cetl, Anders Friis-Christensen, Michael Lutz, Lorena Hernandez Joint

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 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

GeoSPARQL Support and Other Cool Features in Oracle 12c Spatial and Graph Linked Data Seminar Culture, Base Registries & Visualisations

GeoSPARQL Support and Other Cool Features in Oracle 12c Spatial and Graph Linked Data Seminar Culture, Base Registries & Visualisations GeoSPARQL Support and Other Cool Features in Oracle 12c Spatial and Graph Linked Data Seminar Culture, Base Registries & Visualisations Hans Viehmann Product Manager EMEA Oracle Corporation December 2,

More information

ANSWERING GEOSPARQL QUERIES OVER RELATIONAL DATA

ANSWERING GEOSPARQL QUERIES OVER RELATIONAL DATA ANSWERING GEOSPARQL QUERIES OVER RELATIONAL DATA K. Bereta a, G. Xiao b, M. Koubarakis a a Department of Informatics and Telecommunications, University of Athens, Greece - (konstantina.bereta,koubarak)@di.uoa.gr

More information

Linked Data Practices for the Geospatial Community

Linked Data Practices for the Geospatial Community Linked Data Practices for the Geospatial Community Talk subtitle Presented at GEOSS Workshop on Climate Boulder Colorado, 23 September 2011 Stephan Zednik, zednis@rpi.edu RPI / Tetherless World Constellation

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

Linked Open Europeana: Semantics for the Digital Humanities

Linked Open Europeana: Semantics for the Digital Humanities Linked Open Europeana: Semantics for the Digital Humanities Prof. Dr. Stefan Gradmann Humboldt-Universität zu Berlin / School of Library and Information Science stefan.gradmann@ibi.hu-berlin.de 1 Overview

More information

The European Commission s science and knowledge service. Joint Research Centre

The European Commission s science and knowledge service. Joint Research Centre The European Commission s science and knowledge service Joint Research Centre GeoDCAT-AP The story so far Andrea Perego, Antonio Rotundo, Lieven Raes GeoDCAT-AP Webinar 6 June 2018 What is GeoDCAT-AP Geospatial

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

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

INSPIRE & Linked Data: Bridging the Gap Part II: Tools for linked INSPIRE data

INSPIRE & Linked Data: Bridging the Gap Part II: Tools for linked INSPIRE data Making the Web an Exploratory Place for Geospatial Knowledge INSPIRE & Linked Data: Bridging the Gap Part II: Tools for linked INSPIRE data Michalis Alexakis Spiros Athanasiou Nikos Georgomanolis Giorgos

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

Study and guidelines on Geospatial Linked Data as part of ISA Action 1.17 Resource Description Framework

Study and guidelines on Geospatial Linked Data as part of ISA Action 1.17 Resource Description Framework DG Joint Research Center Study and guidelines on Geospatial Linked Data as part of ISA Action 1.17 Resource Description Framework 6 th of May 2014 Danny Vandenbroucke Diederik Tirry Agenda 1 Introduction

More information

Serving Ireland s Geospatial as Linked Data on the Web

Serving Ireland s Geospatial as Linked Data on the Web Serving Ireland s Geospatial as Linked Data on the Web Dr. Atul Nautiyal ADAPT @ Trinity College Dublin The ADAPT Centre is funded under the SFI Research Centres Programme (Grant 13/RC/2106) and is co-funded

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

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

Knowledge Representation in Social Context. CS227 Spring 2011

Knowledge Representation in Social Context. CS227 Spring 2011 7. Knowledge Representation in Social Context CS227 Spring 2011 Outline Vision for Social Machines From Web to Semantic Web Two Use Cases Summary The Beginning g of Social Machines Image credit: http://www.lifehack.org

More information

Linking and Finding Earth Observation (EO) Data on the Web

Linking and Finding Earth Observation (EO) Data on the Web Linking and Finding Earth Observation (EO) Data on the Web MACS-G20 Workshop: Linked Open Data in Agriculture Berlin, September 27-28, 2017 Dr. Uwe Voges u.voges@conterra.de Introduction Earth Observation

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

The Data Web and Linked Data.

The Data Web and Linked Data. Mustafa Jarrar Lecture Notes, Knowledge Engineering (SCOM7348) University of Birzeit 1 st Semester, 2011 Knowledge Engineering (SCOM7348) The Data Web and Linked Data. Dr. Mustafa Jarrar University of

More information

Geospatial data in the Semantic Web

Geospatial data in the Semantic Web Extended Semantic Web Conference 2012 Geospatial data in the Semantic Web GeoSPARQL Presenter: Kostis Kyzirakos GeoSPARQL GeoSPARQL is a recently completed OGC standard (Perry and Herring, 2012). Functionalities

More information

Introduction to the Semantic Web

Introduction to the Semantic Web Introduction to the Semantic Web Charlie Abela Department of Artificial Intelligence charlie.abela@um.edu.mt Lecture Outline Course organisation Today s Web limitations Machine-processable data The Semantic

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

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

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

Semantic challenges in sharing dataset metadata and creating federated dataset catalogs

Semantic challenges in sharing dataset metadata and creating federated dataset catalogs Linked Open Data in Agriculture MACS-G20 Workshop in Berlin, September 27th 28th, 2017 Semantic challenges in sharing dataset metadata and creating federated dataset catalogs The example of the CIARD RING

More information

Toward Horizon 2020: INSPIRE, PSI and other EU policies on data sharing and standardization

Toward Horizon 2020: INSPIRE, PSI and other EU policies on data sharing and standardization Toward Horizon 2020: INSPIRE, PSI and other EU policies on data sharing and standardization www.jrc.ec.europa.eu Serving society Stimulating innovation Supporting legislation The Mission of the Joint Research

More information

Introduction to Prod-Trees

Introduction to Prod-Trees European Geosciences Union General Assembly 2014 Prod Trees Bernard Valentin Vienna Austria 29 April 2014 Outline 2 Background Prod-Trees Project RARE Project and Platform Status Future Background (ESA)

More information

Semantics. KR4SW Winter 2011 Pascal Hitzler 1

Semantics. KR4SW Winter 2011 Pascal Hitzler 1 Semantics KR4SW Winter 2011 Pascal Hitzler 1 Knowledge Representation for the Semantic Web Winter Quarter 2011 Pascal Hitzler Slides 5 01/20+25/2010 Kno.e.sis Center Wright State University, Dayton, OH

More information

The Linking Open Data Project Bootstrapping the Web of Data

The Linking Open Data Project Bootstrapping the Web of Data The Linking Open Data Project Bootstrapping the Web of Data Tom Heath Talis Information Ltd, UK CATCH Programme and E-Culture Project Meeting on Metadata Interoperability Amsterdam, 29 February 2008 My

More information

Linked Open Europeana: Semantic Leveraging of European Cultural Heritage

Linked Open Europeana: Semantic Leveraging of European Cultural Heritage Linked Open Europeana: Semantic Leveraging of European Cultural Heritage http://www.slideshare.net/gradmans/ Prof. Dr. Stefan Gradmann Humboldt-Universität zu Berlin / School of Library and Information

More information

Cultural and historical digital libraries dynamically mined from news archives Papyrus Query Processing Technical Report

Cultural and historical digital libraries dynamically mined from news archives Papyrus Query Processing Technical Report Cultural and historical digital libraries dynamically mined from news archives Papyrus Query Processing Technical Report Charalampos Nikolaou, Manolis Koubarakis, Akrivi Katifori Department of Informatics

More information

Knowledge Representation for the Semantic Web

Knowledge Representation for the Semantic Web Knowledge Representation for the Semantic Web Winter Quarter 2011 Pascal Hitzler Slides 4 01/13/2010 Kno.e.sis Center Wright State University, Dayton, OH http://www.knoesis.org/pascal/ KR4SW Winter 2011

More information

Monitoring the Environment for Climate Change: The case of GMES

Monitoring the Environment for Climate Change: The case of GMES Monitoring the Environment for Climate Change: The case of GMES Presentation at 2008 IISL ECSL Symposium Legal Implications of Space Applications for Climate Change: Principles and Rules Dr. jur.gisela

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

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

Towards the Semantic Desktop. Dr. Øyvind Hanssen University Library of Tromsø

Towards the Semantic Desktop. Dr. Øyvind Hanssen University Library of Tromsø Towards the Semantic Desktop Dr. Øyvind Hanssen University Library of Tromsø Agenda Background Enabling trends and technologies Desktop computing and The Semantic Web Online Social Networking and P2P Computing

More information

ISA Action 1.17: A Reusable INSPIRE Reference Platform (ARE3NA)

ISA Action 1.17: A Reusable INSPIRE Reference Platform (ARE3NA) ISA Action 1.17: A Reusable INSPIRE Reference Platform (ARE3NA) Expert contract supporting the Study on RDF and PIDs for INSPIRE Deliverable D.EC.3.2 RDF in INSPIRE Open issues, tools, and implications

More information

SERVO - ACES Abstract

SERVO - ACES Abstract 1 of 6 12/27/2004 2:33 PM 2 of 6 12/27/2004 2:33 PM Implementing GIS Grid Services for the International Solid Earth Research Virtual Observatory Galip Aydin (1), Marlon Pierce (1), Geoffrey Fox (1), Mehmet

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

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services Contents G52IWS: The Semantic Web Chris Greenhalgh 2007-11-10 Introduction to the Semantic Web Semantic Web technologies Overview RDF OWL Semantic Web Services Concluding comments 1 See Developing Semantic

More information

IT Infrastructure for BIM and GIS 3D Data, Semantics, and Workflows

IT Infrastructure for BIM and GIS 3D Data, Semantics, and Workflows IT Infrastructure for BIM and GIS 3D Data, Semantics, and Workflows Hans Viehmann Product Manager EMEA ORACLE Corporation November 23, 2017 @SpatialHannes Safe Harbor Statement The following is intended

More information

Semantic Web and Python Concepts to Application development

Semantic Web and Python Concepts to Application development PyCon 2009 IISc, Bangalore, India Semantic Web and Python Concepts to Application development Vinay Modi Voice Pitara Technologies Private Limited Outline Web Need better web for the future Knowledge Representation

More information

Wither OWL in a knowledgegraphed, Linked-Data World?

Wither OWL in a knowledgegraphed, Linked-Data World? Wither OWL in a knowledgegraphed, Linked-Data World? Jim Hendler @jahendler Tetherless World Professor of Computer, Web and Cognitive Science Director, Rensselaer Institute for Data Exploration and Applications

More information

Introduction. October 5, Petr Křemen Introduction October 5, / 31

Introduction. October 5, Petr Křemen Introduction October 5, / 31 Introduction Petr Křemen petr.kremen@fel.cvut.cz October 5, 2017 Petr Křemen (petr.kremen@fel.cvut.cz) Introduction October 5, 2017 1 / 31 Outline 1 About Knowledge Management 2 Overview of Ontologies

More information

New Approach to Graph Databases

New Approach to Graph Databases Paper PP05 New Approach to Graph Databases Anna Berg, Capish, Malmö, Sweden Henrik Drews, Capish, Malmö, Sweden Catharina Dahlbo, Capish, Malmö, Sweden ABSTRACT Graph databases have, during the past few

More information

DisasterHub. A mobile app Enabling crowd generated data fusion in Earth Observation disaster management

DisasterHub. A mobile app Enabling crowd generated data fusion in Earth Observation disaster management DisasterHub A mobile app Enabling crowd generated data fusion in Earth Observation disaster management BEYOND Ecosystem (Services, products & infrastructure) What is the gap? Communication gap between

More information

Semantic Annotation, Search and Analysis

Semantic Annotation, Search and Analysis Semantic Annotation, Search and Analysis Borislav Popov, Ontotext Ontology A machine readable conceptual model a common vocabulary for sharing information machine-interpretable definitions of concepts in

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

Multi-agent and Semantic Web Systems: RDF Data Structures

Multi-agent and Semantic Web Systems: RDF Data Structures Multi-agent and Semantic Web Systems: RDF Data Structures Fiona McNeill School of Informatics 31st January 2013 Fiona McNeill Multi-agent Semantic Web Systems: RDF Data Structures 31st January 2013 0/25

More information

Integrating the UK Location Information Infrastructure and data.gov.uk

Integrating the UK Location Information Infrastructure and data.gov.uk Integrating the UK Location Information Infrastructure and data.gov.uk Rod Kedge - UK Location Programme 1 July 20011 This presentation The issue: How to derive the benefits of INSPIRE Background UKLII

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

Proposal for Implementing Linked Open Data on Libraries Catalogue

Proposal for Implementing Linked Open Data on Libraries Catalogue Submitted on: 16.07.2018 Proposal for Implementing Linked Open Data on Libraries Catalogue Esraa Elsayed Abdelaziz Computer Science, Arab Academy for Science and Technology, Alexandria, Egypt. E-mail address:

More information

Semantic Web. MPRI : Web Data Management. Antoine Amarilli Friday, January 11th 1/29

Semantic Web. MPRI : Web Data Management. Antoine Amarilli Friday, January 11th 1/29 Semantic Web MPRI 2.26.2: Web Data Management Antoine Amarilli Friday, January 11th 1/29 Motivation Information on the Web is not structured 2/29 Motivation Information on the Web is not structured This

More information

Land Administration and Management: Big Data, Fast Data, Semantics, Graph Databases, Security, Collaboration, Open Source, Shareable Information

Land Administration and Management: Big Data, Fast Data, Semantics, Graph Databases, Security, Collaboration, Open Source, Shareable Information Land Administration and Management: Big Data, Fast Data, Semantics, Graph Databases, Security, Collaboration, Open Source, Shareable Information Platform Steven Hagan, Vice President, Engineering 1 Copyright

More information

Semantic Days 2011 Tutorial Semantic Web Technologies

Semantic Days 2011 Tutorial Semantic Web Technologies Semantic Days 2011 Tutorial Semantic Web Technologies Lecture 2: RDF, The Resource Description Framework Martin Giese 7th June 2011 Department of Informatics University of Oslo Outline 1 The RDF data model

More information

Sensor Data Management

Sensor Data Management Wright State University CORE Scholar Kno.e.sis Publications The Ohio Center of Excellence in Knowledge- Enabled Computing (Kno.e.sis) 8-14-2007 Sensor Data Management Cory Andrew Henson Wright State University

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

Reminder: RDF triples

Reminder: RDF triples Reminder: RDF triples The RDF data model is similar to classical conceptual modelling approaches such as entity relationship or class diagrams it is based on the idea of making statements about resources

More information

Towards the Semantic Web

Towards the Semantic Web Towards the Semantic Web Ora Lassila Research Fellow, Nokia Research Center (Boston) Chief Scientist, Nokia Venture Partners LLP Advisory Board Member, W3C XML Finland, October 2002 1 NOKIA 10/27/02 -

More information

R2RML by Assertion: A Semi-Automatic Tool for Generating Customised R2RML Mappings

R2RML by Assertion: A Semi-Automatic Tool for Generating Customised R2RML Mappings R2RML by Assertion: A Semi-Automatic Tool for Generating Customised R2RML Mappings Luís Eufrasio T. Neto 1, Vânia Maria P. Vidal 1, Marco A. Casanova 2, José Maria Monteiro 1 1 Federal University of Ceará,

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

SPARQL: An RDF Query Language

SPARQL: An RDF Query Language SPARQL: An RDF Query Language Wiltrud Kessler Institut für Maschinelle Sprachverarbeitung Universität Stuttgart Semantic Web Winter 2015/16 This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike

More information

The Semantic Web DEFINITIONS & APPLICATIONS

The Semantic Web DEFINITIONS & APPLICATIONS The Semantic Web DEFINITIONS & APPLICATIONS Data on the Web There are more an more data on the Web Government data, health related data, general knowledge, company information, flight information, restaurants,

More information

Making Open Data work for Europe

Making Open Data work for Europe Making Open Data work for Europe Daniele Rizzi European Commission DG Communications Networks, Content and Technology daniele.rizzi@ec.europa.eu Nikolaos Loutas PwC EU Services nikolaos.loutas@be.pwc.com

More information

Semantic Technologies and CDISC Standards. Frederik Malfait, Information Architect, IMOS Consulting Scott Bahlavooni, Independent

Semantic Technologies and CDISC Standards. Frederik Malfait, Information Architect, IMOS Consulting Scott Bahlavooni, Independent Semantic Technologies and CDISC Standards Frederik Malfait, Information Architect, IMOS Consulting Scott Bahlavooni, Independent Part I Introduction to Semantic Technology Resource Description Framework

More information

SLIPO. Scalable Linking and Integration of Big POI data. Giorgos Giannopoulos IMIS/Athena RC

SLIPO. Scalable Linking and Integration of Big POI data. Giorgos Giannopoulos IMIS/Athena RC SLIPO Scalable Linking and Integration of Big POI data I n f o r m a ti o n a n d N e t w o r ki n g D a y s o n H o ri z o n 2 0 2 0 B i g Da ta Public-Priva te Partnership To p i c : I C T 14 B i g D

More information

Tutorial International Standards. Web Map Server (WMS) & Web Feature Server (WFS) Overview

Tutorial International Standards. Web Map Server (WMS) & Web Feature Server (WFS) Overview ISO/TC 211 17 th Plenary & Associated Meetings Berlin, Germany, DIN Institute / 2003-10-31 Advisory Group on Outreach Tutorial International Standards Web Map Server (WMS) & Web Feature Server (WFS) Overview

More information

SRM UNIVERSITY. : Batch1: TP1102 Batch2: TP406

SRM UNIVERSITY. : Batch1: TP1102 Batch2: TP406 1 SRM UNIVERSITY FACULTY OF ENGINEERING AND TECHNOLOGY SCHOOL OF COMPUTING DEPARTMENT OF COMPUTERSCIENCE AND ENGINEERING COURSE PLAN Course Code Course Title Semester : 15CS424E : SEMANTIC WEB : V Course

More information

Connecting Distributed Geoservices: Interoperability research at ITC

Connecting Distributed Geoservices: Interoperability research at ITC AGILE Interoperability Workshop, Lyon, April 23rd, 2003 Connecting Distributed Geoservices: Interoperability research at ITC Barend Köbben & Rob Lemmens {kobben,lemmens}@itc.nl International Institute

More information