Linked Data and Geosparql

Size: px
Start display at page:

Download "Linked Data and Geosparql"

Transcription

1 Linked Data and Geosparql OGh NL-Oracle User Group Martien Vos (Redforce/DPA) June 22, 2017

2

3 Program Agenda Theory What is Linked Data and what standards are behind it? Product Oracle Spatial and Graph Use Cases and some customer stories Markets Demo 1 Break What is GeoSPARQL? Demo 2

4 Mindset: which Business problems? Silos To much copies: unreliable data No realtime total view Changes in dataset are time consuming and expensive (DWH, SOA) Structured and unstructured data Use of external data

5 What is Linked Data? Connect Distributed Data across the Web Linked Data is about using the Web to connect related data that wasn't previously linked, or using the Web to lower the barriers to linking data currently linked using other methods. More specifically, Wikipedia defines Linked Data as "a term used to describe a recommended best practice for exposing, sharing, and connecting pieces of data, information, and knowledge on the Semantic Web using URIs and RDF."

6 What is Linked Data? Datavirtualization Internet of data Paradigm shift: open standards, W3c Open World assumption; sharing data instead of owning them Flexibility: IT is not slowing down changes the business needs Combining many datasources (more then in relational world)

7 Linked Data uses internet technology The world has a network that connects people and businesses: the internet. Worldwide coupling. Even future clienst and partners have internet. Cheap and avalable nearly everywhere With security, internet banking Use this technology for extern and intern to connect (http adress, links etc.).

8 Loosely coupled Less IT work Source: Joep Creusen, NS DB-links, batchprocesses ESB, webservices Linked Data, API s system centric proces centric data centric yesterday today tomorrow

9 Relational Model vs. Graph Model Relational Model Based on the assumption that the relationship is vast and applicable to all the records Graph Model Suitable to model when the relationship is variable and changing Courtesy: Tom Sawyer 2016

10 Graph as data modeling foundation What is a graph? A set of vertexes and edges (and optionally attributes) A graph is simply linked data Why do we care? Graphs are everywhere Road networks, power grids, biological networks Social networks/social Web (Facebook, Linkedin, Twitter, Baidu, Google+, ) Knowledge graphs (RDF, OWL) Graphs are intuitive and flexible Easy to navigate, easy to form a path, natural to visualize

11 Various Kinds of Graphs (alias triple store, the database) Different application scenarios RDF Semantic Graphs modeling data as triples for social network, linked data and other semantic applications (Oracle Database Spatial and Graph option ) Property Graphs allowing the association of K/V pairs (attributes) with vertexes/edges for social network analytics (Oracle Big Data Spatial and Graph + Database Spatial and Graph option 12.2 ) Link-node graphs representing physical/logical networks used in transportation, utilities and telco (Oracle Spatial and Graph Network Data Model (NDM))

12 Why Graph Databases? Increasing recognition of Graph Databases potentials New data collections & new analytics requirements Big data analytic, Social Network Analysis, data federation, Linked Open Data, meta-modelling,. Increasing cases that are hard to model using the traditional relational methods Enables new type of queries that are either impossible or too costly to run on the traditional platforms Property Graphs or RDF Triple Stores? RDF is appropriate for Data Federation and Linked Open Data technologies Property Graphs are best for traversal and Graph analytics Oracle provides support for both Property Graph and RDF Graph Oracle can translate Property Graph into RDF Graphs

13 RDF (Semantic) Graph Resource Description Framework (RDF) URIs are used to identify Resources, entities, relationships, concepts Creates Subject-Property-Object triples Data identification is a must for integration URIs are globally unique Properties of subjects are triples RDF Graph defines semantics Standards defined by W3C & OGC RDF, RDFS, OWL, SKOS SPARQL, RDFa, RDB2RDF, GeoSPARQL Implementations Oracle, IBM, Cray, Bigdata, Franz, Ontotext, Openlink, Jena, Sesame,.

14 What is RDF ( Resource Description Framework )? A graph data model for web resources and their relationships The graph can be serialized into RDF/XML, N3, N-TRIPLE, Construction unit: Triple subject + action + object < subject <:produces> action/property <:mp3> object Quads (named graphs) add context, provenance, identification, etc. to assertions < <:produces> <:mp3 > <:ProductGraph> /locatedin CA /produce /customerof /uses /produce

15 SPARQL Query language RDF Data :res1 rdf:type :House. :res1 :baths "2.5"^^xsd:decimal. :res1 :bedrooms "3"^^xsd:decimal. :res2 rdf:type :Condo. :res2 :baths "2"^^xsd:decimal. :res2 :bedrooms "2"^^xsd:decimal. :res3 rdf:type :House :res3 :baths "1.5"^^xsd:decimal. :res3 :bedrooms "3"^^xsd:decimal. SPARQL Query SELECT?r?ba?br WHERE {?r rdf:type :House.?r :baths?ba.?r :bedrooms?br } Result Bindings?r?ba?br =================== :res1 "2.5" "3" :res3 "1.5" "3"

16 Inferencing: deriving new facts from existing data Enabling the software to perform reasoning normally done in the human brain Inference is discovering new relationships Facts + Rules = Inferencing Rules : ontology & user own rules OWL rules native to Oracle Spatial - RDFS, OWL 2 RL, OWL 2 EL, SKOS Example : :California 1. California is part of USA + USA is part of North America California is part of North America 2. Mr. A has a son Mr. B + Mr. B has a son Mr. C Mr. A is a grandfather :USA :partof :partof :NorthAmerica :partof

17 Program Agenda Theory What is Linked Data and what standards are behind it? Product Oracle Spatial and Graph Use Cases and some customer stories Markets Demo 1 Break What is GeoSPARQL? Demo 2

18 Oracle database Spatial and Graph 12.2 Polyglot: seamless from Linked Data to Relational, Sparql statement in a SQL query Geo relational combined with attributes from a Graph Things you are used to from an Oracle database: availability, scalability, compression, security, performance etc. Use of open standards

19 Integrating Oracle SQL space with the RDF Graph world SPARQL Queries using SPARQL language RDF Graph triples OWL : ontology's ( triples ) RDF Graph triples RDF view over relational data Conversion to RDF Triple store RDB2RDF SQL + SPARQL ( SEM_MATCH ) SQL User own rules

20 Oracle DB s SEM_MATCH operator : Adding SPARQL to SQL Extends SQL with full SPARQL 1.1 query constructs Benefits: Integrates graph data with existing enterprise data JOINs with other relational (and object-relational) data Allows SQL constructs/functions DDL Statements: create tables/views Allows use of enterprise SQL development tools

21 Example of a SQL statement using SEM_MATCH SELECT n1, n2 FROM TABLE_X( SEM_MATCH( 'PREFIX foaf: < SELECT?n1?n2 FROM < WHERE {?p foaf:name?n1 OPTIONAL {?p foaf:knows?f.?f foaf:name?n2 } FILTER (REGEX(?n1, "^A")) } ORDER BY?n1?n2', SEM_MODELS('M1'), ));

22 Connectivity and integration with many tools Full choice for the users due to complying to the W3C and other standards Extraction Tools Lymba, Expert Systems Data Ninja, Linguamatics, Thompson Reuters' Open Calais, GATE and many others ( some NLP or industry specific ) Graph management Tools Oracle Development or SQL access tool like SQL Developer,. Analytic Tools Oracle BI EE, Oracle R, 3 RD party tools. Data exchange Tools Oracle SQL Loader, and many other 3 rd party tools, web services, Oracle RDBMS with RDF Store Ontology management Tools Protégé, TopQuadrant TopBraid Composer Visualization Tools Tom Sawyer, Cytoscape, IO Informatics,..

23 Reporting RDF Data with Oracle BI EE Powerful BI dashboards Visually appealing 100% thin client Across all styles of analsis R-OLAP, M-OLAP, Scorecards, Reporting, Collaboration, Actions Across all data sources Federated data access Share, collaborate, & publish

24 Program Agenda Theory What is Linked Data and what standards are behind it? Product Oracle Spatial and Graph Use Cases and some customer stories Markets Demo 1 Break What is GeoSPARQL? Demo 2

25 Linked Data Use Cases: Industries Life Sciences Finance Media Networks & Communications Defense & Intelligence Police Hutchinson 3G Austria

26 Ordnance Survey Ireland Linked Data project at the Irish National Land Registry (combination with Esri software) Formulation of two use case scenarios from which requirements were distilled: 1. Accessing the same features with different geometric representations, i.e., different generalizations or resolutions. 2. Capturing the provenance and evolution of features and their geometric representations. E.g., Statutory Instruments to change boundaries.

27 EU Publication Office ( Cellar System ) Linked Metadata Platform for European Union Archive Long term preservation EUR-Lex Common Content Repository (CCR) Official publications Validation Tendering documents TED Common Portal General publications EU Bookshop Common search service Common indexes Common Metadata Repository (CMR) CORDIS CORDIS Metadata production External sources Portal Index and Search Content and Metadata = CELLAR Postproduction Production Objectives Common metadata model supports: Search and discovery of EU Publications Multiple domains and languages Solution Validate and tag EU law, tenders, and publicity to standardized vocabularies Unified RDF graph metadata model Supports discovery of content through user s terminology and language Provides variety of dissemination modes Environment ( September 2016 ) 8 million requests / 100 K SPARQL query per day 1500 milion trippels in Oracle RDF Store 4.2 TB Oracle DB ( compressed )

28 Markets All of our and your clients have data in silos

29 Program Agenda Theory What is Linked Data and what standards are behind it? Product Oracle Spatial and Graph Use Cases and some customer stories Markets Break 20 minutes What is GeoSPARQL? Some of the implementation examples

30 Program Agenda Theory What is Linked Data and what standards are behind it? Product Oracle Spatial and Graph Use Cases and some customer stories Markets Break 20 minutes What is GeoSPARQL? Some of the implementation examples

31 Issues with Geo Data Many Linked Open Data (LOD) datasets have geospatial components Barriers to integration Vendor-specific geometry support Different vocabularies W3C Basic Geo, GML XMLLiteral, Vendor-specific Different spatial reference systems WGS84 Lat-Long, British National Grid

32 Semantic GIS GIS applications with semantically complex thematic aspects Logical reasoning to classify features Land cover type, suitable farm land, etc. Complex Geometries Polygons and Multi-Polygons with 1000 s of points Complex Spatial Operations Union, Intersection, Buffers, etc. Find parcels with an area of at least 3 sq. miles that touch a local feeder road and are inside an area of suitable farm land.

33 As shown: a SPARQL Query RDF Data :res1 rdf:type :House. :res1 :baths "2.5"^^xsd:decimal. :res1 :bedrooms "3"^^xsd:decimal. :res2 rdf:type :Condo. :res2 :baths "2"^^xsd:decimal. :res2 :bedrooms "2"^^xsd:decimal. :res3 rdf:type :House :res3 :baths "1.5"^^xsd:decimal. :res3 :bedrooms "3"^^xsd:decimal. SPARQL Query SELECT?r?ba?br WHERE {?r rdf:type :House.?r :baths?ba.?r :bedrooms?br FILTER (?ba > 2) } Result Bindings?r?ba?br =================== :res1 "2.5" "3"

34 Spatial SPARQL QUERY Spatial RDF Data :res1 rdf:type :House. This is what :res1 :baths "2.5"^^xsd:decimal. GeoSPARQL :res1 :bedrooms "3"^^xsd:decimal. standardizes :res1 ogc:hasgeometry :geom1. :geom1 ogc:aswkt "POINT( )"^^ogc:wktLiteral. :res3 rdf:type :House Vocabulary & :res3 :baths "1.5"^^xsd:decimal. Datatypes :res3 :bedrooms "3"^^xsd:decimal. :res3 ogc:hasgeometry :geom3. :geom3 ogc:aswkt "POINT( )"^^ogc:wktLiteral. Find houses within a search polygon GeoSPARQL Query Extension SELECT?r?ba?br Functions WHERE {?r rdf:type :House.?r :baths?ba.?r :bedrooms?br.?r ogc:hasgeometry?g.?g ogc:aswkt?wkt FILTER(ogcf:sfWithin(?wkt, "POLYGON( )"^^ogc:wktliteral)) }

35 GeoSPARQL Vocabulary: Basic Classes and Relations ogc:spatialobject Same as ISO GM_Object ogc:feature ogc:hasgeometry 0.. * ogc:geometry ogc:hasdefaultgeometry metadata ogc:dimension : xsd:int ogc:coordinatedimension : xsd:int Same as ISO GFI_Feature ogc:spatialdimension : xsd:int ogc:isempty : xsd:boolean ogc:issimple : xsd:boolean Geometry encoded as a Literal serializations ogc:aswkt : ogc:wktliteral ogc:asgml : ogc:gmlliteral

36 Details of ogc:wktliteral All RDF Literals of type ogc:wktliteral shall consist of an optional IRI identifying the spatial reference system followed by Simple Features Well Known Text (WKT) describing a geometric value [ISO ]. WGS84 longitude latitude is the default CRS "< POINT( )"^^ogc:wktLiteral "POINT( )"^^ogc:wktLiteral European Petroleum Survey Group (EPSG) maintains a set of CRS identifiers.

37 Topological Relations between ogc:spatialobject A/B A B A B A B ogc:sfequals ogc:sftouches ogc:sfoverlaps ogc:sfcontains A A B A B A B B ogc:sfwithin ogc:sfdisjoint ogc:sfintersects ogc:sfcrosses

38 GeoSPARQL Query Functions ogcf:distance(geom1: ogc:wktliteral, geom2: ogc:wktliteral, units: xsd:anyuri): xsd:double geom1 geom2 ogcf:buffer(geom: ogc:wktliteral, radius: xsd:double, units: xsd:anyuri): ogc:wktliteral geom ogcf:convexhull(geom: ogc:wktliteral): ogc:wktliteral geom

39 GeoSPARQL Query Functions ogcf:intersection(geom1: ogc:wktliteral, geom2: ogc:wktliteral): ogc:wktliteral geom2 geom1 ogcf:union(geom1: ogc:wktliteral, geom2: ogc:wktliteral): ogc:wktliteral geom2 geom1

40 GeoSPARQL Query Functions ogcf:difference(geom1: ogc:wktliteral, geom2: ogc:wktliteral): ogc:wktliteral geom2 geom1 ogcf:symdifference(geom1: ogc:wktliteral, geom2: ogc:wktliteral): ogc:wktliteral geom2 geom1

41 GeoSPARQL Query Functions ogcf:envelope(geom: ogc:wktliteral): ogc:wktliteral geom ogcf:boundary(geom1: ogc:wktliteral): ogc:wktliteral geom ogcf:getsrid(geom: ogc:wktliteral): xsd:anyuri

42 Spatial Function Library Standard OGC functions Topological Relations ogcf:relate, ogcf:sfcontains, ogcf:sfcrosses, ogcf:sfdisjoint, ogcf:sfequals, ogcf:sfintersects, ogcf:sfoverlaps, ogcf:sftouches, ogcf:sfwithin Distance-based Operations ogcf:distance, ogcf:buffer Geometry Operations ogcf:boundary, ogcf:convexhull, ogcf:envelope, ogcf:getsrid, Geometry-Geometry Operations ogcf:difference, ogcf:intersection, ogcf:symdifference, ogcf:union

43 Spatial Function Library Oracle Extensions Topological Relations orageo:relate Distance-based Operations orageo:distance, orageo:withindistance, orageo:buffer, orageo:nearestneighbor Geometry Operations orageo:area, orageo:length orageo:centroid, orageo:mbr, orageo:convexhull Geometry-Geometry Operations orageo:intersection, orageo:union, orageo:difference, orageo:xor

44 Example Query PREFIX : < PREFIX ogc: < PREFIX ogcf: < PREFIX epsg: < SELECT?parcel WHERE {?parcel rdf:type :Residential.?parcel :exactgeometry?pgeo.?pgeo ogc:aswkt?pwkt. :District1 :exactgeometry?dgeo.?dgeo ogc:aswkt?dwkt. :City1 :extent?cgeo.?cgeo ogc:aswkt?cwkt. FILTER(ogcf:sfWithin(?pWKT, ogcf:intersection(?dwkt,?cwkt)))}

45 Summary GeoSPARQL Defines: Basic vocabulary, Query functions, Entailment component Based on existing OGC/ISO standards WKT, GML, Simple Features, ISO Uses SPARQL s built-in extensibility framework

46 GeoSPARQL GeoSPARQL Support in RDF Semantic Graph

47 GeoSPARQL Support with Oracle Spatial and Graph Support geometries encoded as ogc:wktliterals :semtech2011 ogc:aswkt "POINT( )"^^ogc:wktLiteral. Provide a library of spatial functions SELECT?s WHERE {?s ogc:aswkt?geom FILTER(ogc:distance(?geom, "POINT( )"^^ogc:WKTLiteral, uom:km) <= 10)

48 OGC wktliteral Datatype Optional leading Spatial Reference System URI followed by OGC WKT geometry string. < WGS 84 Longitude, Latitude is the default SRS (assumed if SRS URI is absent) SRS: WGS84 Longitude, Latitude "POINT( )"^^ogc:wktLiteral SRS: NAD27 Longitude, Latitude "< POINT( )"^^ogc:wktLiteral

49 OGC wktliteral Datatype Prepare for spatial querying by creating a spatial index for the ogc:wktliteral datatype SQL> exec sem_apis.add_datatype_index( ' options=>'tolerance=1.0 SRID=8307 DIMENSIONS=((LONGITUDE,-180,180)(LATITUDE,-90,90))');

50 What Types of Spatial Data are Supported? Spatial Reference Systems Built-in support for 1000 s of SRS Plus you can define your own Coordinate system transformations applied transparently during indexing and query Geometry Types Support OGC Simple Features geometry types Point, Line, Polygon Multi-Point, Multi-Line, Multi-Polyon Geometry Collection Up to 500,000 vertices per Geometry

51 RDF Semantic Graph Technologies Partners Ontology Engineering & Visualization External Reasoners NLP Entity Extractors Open Source Frameworks Standards Joseki Sesame Applications & Tools SI / Consulting NL

52 The End. Martien Vos

Developing GeoSPARQL Applications with Oracle Spatial and Graph

Developing GeoSPARQL Applications with Oracle Spatial and Graph Developing GeoSPARQL Applications with Oracle Spatial and Graph Matthew Perry Ana Estrada Souri Das Jay Banerjee First Joint International Workshop on Semantic Sensor Networks and Terra Cognita SSN-TC

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

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

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

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

Open And Linked Data Oracle proposition Subtitle

Open And Linked Data Oracle proposition Subtitle Presented with Open And Linked Data Oracle proposition Subtitle Pascal GUY Master Sales Consultant Cloud Infrastructure France May 30, 2017 Copyright 2014, Oracle and/or its affiliates. All rights reserved.

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

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

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

Newest Graph Features in Database 12c. Xavier Lopez, Oracle Server Technologies Marc Kuster, EU Publications Office

Newest Graph Features in Database 12c. Xavier Lopez, Oracle Server Technologies Marc Kuster, EU Publications Office Newest Graph Features in Database 12c Xavier Lopez, Oracle Server Technologies Marc Kuster, EU Publications Office "THE FOLLOWING IS INTENDED TO OUTLINE OUR GENERAL PRODUCT DIRECTION. IT IS INTENDED FOR

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

Oracle Spatial and Graph: Benchmarking a Trillion Edges RDF Graph ORACLE WHITE PAPER NOVEMBER 2016

Oracle Spatial and Graph: Benchmarking a Trillion Edges RDF Graph ORACLE WHITE PAPER NOVEMBER 2016 Oracle Spatial and Graph: Benchmarking a Trillion Edges RDF Graph ORACLE WHITE PAPER NOVEMBER 2016 Introduction One trillion is a really big number. What could you store with one trillion facts?» 1000

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

Linking Geospatial Data With GeoSPARQL

Linking Geospatial Data With GeoSPARQL Undefined 0 (0) 1 1 IOS Press Linking Geospatial Data With GeoSPARQL Robert Battle, Dave Kolas Knowledge Engineering Group, Raytheon BBN Technologies 1300 N 17th Street, Suite 400, Arlington, VA 22209,

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

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

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

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

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

Transformative characteristics and research agenda for the SDI-SKI step change:

Transformative characteristics and research agenda for the SDI-SKI step change: Transformative characteristics and research agenda for the SDI-SKI step change: A Cadastral Case Study Dr Lesley Arnold Research Fellow, Curtin University, CRCSI Director Geospatial Frameworks World Bank

More information

Transformative characteristics and research agenda for the SDI-SKI step change: A Cadastral Case Study

Transformative characteristics and research agenda for the SDI-SKI step change: A Cadastral Case Study Transformative characteristics and research agenda for the SDI-SKI step change: A Cadastral Case Study Dr Lesley Arnold Research Fellow, Curtin University, CRCSI Director Geospatial Frameworks World Bank

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

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

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Real Life Applications of Location Analytics Dan Geringer, Senior Software Development Manager, Oracle Jayant Sharma, Director Prod Mgmt, Oracle 2 The following is intended to outline our general product

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

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

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

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

Scaling the Semantic Wall with AllegroGraph and TopBraid Composer. A Joint Webinar by TopQuadrant and Franz

Scaling the Semantic Wall with AllegroGraph and TopBraid Composer. A Joint Webinar by TopQuadrant and Franz Scaling the Semantic Wall with AllegroGraph and TopBraid Composer A Joint Webinar by TopQuadrant and Franz Dean Allemang Chief Scientist, TopQuadrant Inc. Jans Aasman CTO, Franz Inc. July 07 1 This Seminar

More information

APPLYING KNOWLEDGE BASED AI TO MODERN DATA MANAGEMENT. Mani Keeran, CFA Gi Kim, CFA Preeti Sharma

APPLYING KNOWLEDGE BASED AI TO MODERN DATA MANAGEMENT. Mani Keeran, CFA Gi Kim, CFA Preeti Sharma APPLYING KNOWLEDGE BASED AI TO MODERN DATA MANAGEMENT Mani Keeran, CFA Gi Kim, CFA Preeti Sharma 2 What we are going to discuss During last two decades, majority of information assets have been digitized

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

The Emerging Data Lake IT Strategy

The Emerging Data Lake IT Strategy The Emerging Data Lake IT Strategy An Evolving Approach for Dealing with Big Data & Changing Environments bit.ly/datalake SPEAKERS: Thomas Kelly, Practice Director Cognizant Technology Solutions Sean Martin,

More information

Data Governance for the Connected Enterprise

Data Governance for the Connected Enterprise Data Governance for the Connected Enterprise Irene Polikoff and Jack Spivak, TopQuadrant Inc. November 3, 2016 Copyright 2016 TopQuadrant Inc. Slide 1 Data Governance for the Connected Enterprise Today

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

May 21, 2014 Walter E. Washington Convention Center Washington, DC USA. Copyright 2014, Oracle and/or its affiliates. All rights reserved.

May 21, 2014 Walter E. Washington Convention Center Washington, DC USA. Copyright 2014, Oracle and/or its affiliates. All rights reserved. May 21, 2014 Walter E. Washington Convention Center Washington, DC USA 1 Innovation in Spatial Data Processing Hans Viehmann Product Manager EMEA The following is intended to outline our general product

More information

Semantic Web: Core Concepts and Mechanisms. MMI ORR Ontology Registry and Repository

Semantic Web: Core Concepts and Mechanisms. MMI ORR Ontology Registry and Repository Semantic Web: Core Concepts and Mechanisms MMI ORR Ontology Registry and Repository Carlos A. Rueda Monterey Bay Aquarium Research Institute Moss Landing, CA ESIP 2016 Summer meeting What s all this about?!

More information

Readme file for Oracle Spatial and Graph and OBIEE Sample Application (V305) VirtualBox

Readme file for Oracle Spatial and Graph and OBIEE Sample Application (V305) VirtualBox I Sections in this Readme Sections in this Readme... 1 Introduction... 1 References... 1 Included Software Releases... 2 Software to Download... 2 Installing the Image... 2 Quick Start for RDF Semantic

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

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

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

Spatial Data on the Web

Spatial Data on the Web Spatial Data on the Web Tools and guidance for data providers The European Commission s science and knowledge service W3C Data on the Web Best Practices 35 W3C/OGC Spatial Data on the Web Best Practices

More information

BSC Smart Cities Initiative

BSC Smart Cities Initiative www.bsc.es BSC Smart Cities Initiative José Mª Cela CASE Director josem.cela@bsc.es CITY DATA ACCESS 2 City Data Access 1. Standardize data access (City Semantics) Define a software layer to keep independent

More information

Welkom bij de themasessie Oracle Spatial 11g

Welkom bij de themasessie Oracle Spatial 11g Welkom bij de themasessie Oracle Spatial 11g OGh SIM Commissie Agenda 19:00-19:05 Welkom 19:05-19:35 Managing ALL your Information in 11g (Han Wammes) 19:35-20:15 Oracle Spatial 11g

More information

Enhancing Security Exchange Commission Data Sets Querying by Using Ontology Web Language

Enhancing Security Exchange Commission Data Sets Querying by Using Ontology Web Language MPRA Munich Personal RePEc Archive Enhancing Security Exchange Commission Data Sets Querying by Using Ontology Web Language sabina-cristiana necula Alexandru Ioan Cuza University of Iasi September 2011

More information

Information Workbench

Information Workbench Information Workbench The Optique Technical Solution Christoph Pinkel, fluid Operations AG Optique: What is it, really? 3 Optique: End-user Access to Big Data 4 Optique: Scalable Access to Big Data 5 The

More information

Semantic Queries and Mediation in a RESTful Architecture

Semantic Queries and Mediation in a RESTful Architecture Semantic Queries and Mediation in a RESTful Architecture John Gilman - Dir. Architecture and Engineering Blue Shield of California Matt Fisher Sr. Systems Engineer Progeny Systems Mike Dean Principle Engineer

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

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

Disclaimer MULTIMODEL DATABASE WITH ORACLE DATABASE 18C

Disclaimer MULTIMODEL DATABASE WITH ORACLE DATABASE 18C Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver

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

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

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri Leveraging OGC Services in ArcGIS Server Satish Sankaran, Esri Yingqi Tang, Esri GIS Creating and Managing Geo Information Products - Proprietary - Open Specifications - Standards Dissemination of Geo

More information

AllegroGraph for Flexibility in the Enterprise and on the Web. Jans Aasman Franz Inc

AllegroGraph for Flexibility in the Enterprise and on the Web. Jans Aasman Franz Inc AllegroGraph for Flexibility in the Enterprise and on the Web Jans Aasman Franz Inc ja@franz.com What is a triple store (1 (2 3) (4 5) (6 7) (8 9) (10 11) (12 13) (14 15)(16 17) (18 19 20 21 22 23 24

More information

This presentation is for informational purposes only and may not be incorporated into a contract or agreement.

This presentation is for informational purposes only and may not be incorporated into a contract or agreement. This presentation is for informational purposes only and may not be incorporated into a contract or agreement. Oracle10g RDF Data Mgmt: In Life Sciences Xavier Lopez Director, Server Technologies Oracle

More information

International Organization for Standardization Technical Committee 211 (ISO/TC211)

International Organization for Standardization Technical Committee 211 (ISO/TC211) Esri Support for Geospatial Standards: Open Geospatial Consortium (OGC) International Organization for Standardization Technical Committee 211 (ISO/TC211) An Esri White Paper April 2015 Copyright 2015

More information

Semantic Integration with Apache Jena and Apache Stanbol

Semantic Integration with Apache Jena and Apache Stanbol Semantic Integration with Apache Jena and Apache Stanbol All Things Open Raleigh, NC Oct. 22, 2014 Overview Theory (~10 mins) Application Examples (~10 mins) Technical Details (~25 mins) What do we mean

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

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

Graph Databases. Guilherme Fetter Damasio. University of Ontario Institute of Technology and IBM Centre for Advanced Studies IBM Corporation

Graph Databases. Guilherme Fetter Damasio. University of Ontario Institute of Technology and IBM Centre for Advanced Studies IBM Corporation Graph Databases Guilherme Fetter Damasio University of Ontario Institute of Technology and IBM Centre for Advanced Studies Outline Introduction Relational Database Graph Database Our Research 2 Introduction

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

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

The Oracle Enterprise Geodatabase (EGDB) Charlie Crocker Farallon Geographics, Inc.

The Oracle Enterprise Geodatabase (EGDB) Charlie Crocker Farallon Geographics, Inc. The Oracle Enterprise Geodatabase (EGDB) Charlie Crocker Farallon Geographics, Inc. www.fargeo.com Norcal URISA Chapter Meeting 2/9/2005 Todays Goals Enterprise geodatabase defined Roles Oracle can play

More information

PRODUCT BROCHURE ERDAS APOLLO MANAGING AND SERVING GEOSPATIAL INFORMATION

PRODUCT BROCHURE ERDAS APOLLO MANAGING AND SERVING GEOSPATIAL INFORMATION PRODUCT BROCHURE ERDAS APOLLO MANAGING AND SERVING GEOSPATIAL INFORMATION ERDAS APOLLO Do you have large volumes of geospatial information, regularly updated data stores, and a distributed user base? Do

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

DATA SHARING AND DISCOVERY WITH ARCGIS SERVER GEOPORTAL EXTENSION. Clive Reece, Ph.D. ESRI Geoportal/SDI Solutions Team

DATA SHARING AND DISCOVERY WITH ARCGIS SERVER GEOPORTAL EXTENSION. Clive Reece, Ph.D. ESRI Geoportal/SDI Solutions Team DATA SHARING AND DISCOVERY WITH ARCGIS SERVER GEOPORTAL EXTENSION Clive Reece, Ph.D. ESRI Geoportal/SDI Solutions Team Geoportal Extension for ArcGIS Server Context within an Enterprise Spatial Data Infrastructure

More information

DB2 NoSQL Graph Store

DB2 NoSQL Graph Store DB2 NoSQL Graph Store Mario Briggs mario.briggs@in.ibm.com December 13, 2012 Agenda Introduction Some Trends: NoSQL Data Normalization Evolution Hybrid Data Comparing Relational, XML and RDF RDF Introduction

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

Practical Semantic Applications Master Title for Oil and Gas Asset Reporting. Information Integration David Price, TopQuadrant

Practical Semantic Applications Master Title for Oil and Gas Asset Reporting. Information Integration David Price, TopQuadrant Practical Semantic Applications Master Title for Oil and Gas Asset Reporting Life Click Cycle to Data edit Master Management subtitle and style Information Integration David Price, TopQuadrant Key Presentation

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

Oracle Database E

Oracle Database E Oracle Database Semantic Technologies Developer's Guide 11g Release 2 (11.2) E25609-02 November 2011 Provides usage and reference information about Oracle Database support for semantic technologies, including

More information

Title. Prolog, Rules, Reasoning and SPARQLing Magic in the real world. Franz Inc

Title. Prolog, Rules, Reasoning and SPARQLing Magic in the real world. Franz Inc Prolog, Rules, Reasoning and SPARQLing Magic in the real world 1 Contents How do we fit it all together: rules and prolog and reasoning and magic predicates and SPARQL Use case: BigBank Event view of the

More information

Novel System Architectures for Semantic Based Sensor Networks Integraion

Novel System Architectures for Semantic Based Sensor Networks Integraion Novel System Architectures for Semantic Based Sensor Networks Integraion Z O R A N B A B O V I C, Z B A B O V I C @ E T F. R S V E L J K O M I L U T N O V I C, V M @ E T F. R S T H E S C H O O L O F T

More information

Semantics. Matthew J. Graham CACR. Methods of Computational Science Caltech, 2011 May 10. matthew graham

Semantics. Matthew J. Graham CACR. Methods of Computational Science Caltech, 2011 May 10. matthew graham Semantics Matthew J. Graham CACR Methods of Computational Science Caltech, 2011 May 10 semantic web The future of the Internet (Web 3.0) Decentralized platform for distributed knowledge A web of databases

More information

Big Data For Oil & Gas

Big Data For Oil & Gas Big Data For Oil & Gas Jay Hollingsworth - 郝灵杰 Industry Principal Oil & Gas Industry Business Unit 1 The following is intended to outline our general product direction. It is intended for information purposes

More information

May 2013 Oracle Spatial and Graph User Conference

May 2013 Oracle Spatial and Graph User Conference May 2013 Oracle Spatial and Graph User Conference May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA Paul Calhoun & Vince Smith GIS Systems Analyst City Of Virginia Beach

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

Is Linked Data the future of data integration in the enterprise?

Is Linked Data the future of data integration in the enterprise? Is Linked Data the future of data integration in the enterprise? John Walker Email: john.walker@nxp.com Twitter: @NXPdata Pilot Linked Open Data NXP is a semiconductor (microchip) manufacturer Established:

More information

Connecting SMW to RDF Databases: Why, What, and How?

Connecting SMW to RDF Databases: Why, What, and How? University of Oxford Department of Computer Science Connecting SMW to RDF Databases: Why, What, and How? Markus Krötzsch University of Oxford SMWCon 2011 Fall, Berlin * * Talk given during the 2011 papal

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

warwick.ac.uk/lib-publications

warwick.ac.uk/lib-publications Original citation: Zhao, Lei, Lim Choi Keung, Sarah Niukyun and Arvanitis, Theodoros N. (2016) A BioPortalbased terminology service for health data interoperability. In: Unifying the Applications and Foundations

More information

Chevron Position Paper for W3C Workshop on Semantic Web in Oil & Gas Industry

Chevron Position Paper for W3C Workshop on Semantic Web in Oil & Gas Industry Enterprise Architecture Chevron Position Paper for W3C Workshop on Semantic Web in Oil & Gas Industry Frank Chum, ITC EA Mario Casetta, ETC IM Roger Cutler, ITC EA 9 December 2008 Houston, Texas 2008 Chevron

More information

Google indexed 3,3 billion of pages. Google s index contains 8,1 billion of websites

Google indexed 3,3 billion of pages. Google s index contains 8,1 billion of websites Access IT Training 2003 Google indexed 3,3 billion of pages http://searchenginewatch.com/3071371 2005 Google s index contains 8,1 billion of websites http://blog.searchenginewatch.com/050517-075657 Estimated

More information

Powering Knowledge Discovery. Insights from big data with Linguamatics I2E

Powering Knowledge Discovery. Insights from big data with Linguamatics I2E Powering Knowledge Discovery Insights from big data with Linguamatics I2E Gain actionable insights from unstructured data The world now generates an overwhelming amount of data, most of it written in natural

More information

Real World Data Governance- Part 1

Real World Data Governance- Part 1 Real World Data Governance- Part 1 Day in the Life of a Business Steward Jesse Lambert and Jack Spivak, TopQuadrant Inc. November 30, 2017 Today s Program TopBraid EDG: A Day in the Life of a Business

More information

Geospatial Enterprise Search. June

Geospatial Enterprise Search. June Geospatial Enterprise Search June 2013 www.voyagersearch.com www.voyagersearch.com/demo The Problem: Data Not Found The National Geospatial-Intelligence Agency is the primary source of geospatial intelligence

More information

Semantiska webben DFS/Gbg

Semantiska webben DFS/Gbg 1 Semantiska webben 2010 DFS/Gbg 100112 Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) With thanks to Ivan for many slides 2 Trends and forces: Technology Internet

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

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

Use of Semantic Technologies at Eli Lilly and Company. J Phil Brooks Information Consultant, SE Data Team Discover IT Eli Lilly and Company

Use of Semantic Technologies at Eli Lilly and Company. J Phil Brooks Information Consultant, SE Data Team Discover IT Eli Lilly and Company Use of Semantic Technologies at Eli Lilly and Company J Phil Brooks Information Consultant, SE Data Team Discover IT Eli Lilly and Company Notable Semantic Projects at Lilly Discovery Metadata Integration

More information

Adopting the Appropriate GIS Web Service Technologies

Adopting the Appropriate GIS Web Service Technologies Adopting the Appropriate GIS Web Service Technologies Bo Guo, PE, PhD GIS/IT Integration Consultant Gistic Research Inc. UT & AZ Jake Payne Database Administrator & Architect State of Utah Department of

More information

ENGRG 59910: Introduction to GIS

ENGRG 59910: Introduction to GIS ENGRG 59910: Introduction to GIS Lecture 05: GIS and Databases Basics Acknowledgment: Michael Piasecki Where are we now? Basic geographic concepts Introduction to GIS, coordinate system, projection, datum

More information

Optimising a Semantic IoT Data Hub

Optimising a Semantic IoT Data Hub Optimising a Semantic IoT Data Hub Ilias Tachmazidis, Sotiris Batsakis, John Davies, Alistair Duke, Grigoris Antoniou and Sandra Stincic Clarke John Davies, BT Overview Motivation de-siloization and data

More information

Semantic Web Information Management

Semantic Web Information Management Semantic Web Information Management Norberto Fernández ndez Telematics Engineering Department berto@ it.uc3m.es.es 1 Motivation n Module 1: An ontology models a domain of knowledge n Module 2: using the

More information

Presented by Kit Na Goh

Presented by Kit Na Goh Developing A Geo-Spatial Search Tool Using A Relational Database Implementation of the FGDC CSDGM Model Presented by Kit Na Goh Introduction Executive Order 12906 was issued on April 13, 1994 with the

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

Linked Data: Fast, low cost semantic interoperability for health care?

Linked Data: Fast, low cost semantic interoperability for health care? Linked Data: Fast, low cost semantic interoperability for health care? About the presentation Part I: Motivation Why we need semantic operability in health care Why enhancing existing systems to increase

More information