SlideShare une entreprise Scribd logo
1  sur  29
Télécharger pour lire hors ligne
Spatial Data: where is the link?
FLAGIS Academic Session, Leuven, 12 May 2016
Stijn Goedertier
Linked Data design rules
Linked Data design rules
HTTP GET http://dbpedia.org/resource/Tim_berners-lee Accept: "text/rdf+n3"
HTTP/1.1 303 See Other
Server: Virtuoso/07.20.3217 (Linux) i686-generic-linux-glibc212-64 VDB
Content-Type: text/rdf+n3
Location: http://dbpedia.org/data/Tim_berners-lee.nt
HTTP GET http://dbpedia.org/data/Tim_berners-lee.nt
HTTP/1.1 200 OK
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix wikipedia-en: <http://en.wikipedia.org/wiki/> .
@prefix dbr: <http://dbpedia.org/resource/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
wikipedia-en:Tim_berners-lee foaf:primaryTopicdbr:Tim_berners-lee .
dbr:Tim_berners-lee owl:sameAs <http://rdf.freebase.com/ns/m.07d5b> .
dbr:Tim_berners-lee rdfs:label "Tim berners-lee"@en ;
foaf:isPrimaryTopicOf wikipedia-en:Tim_berners-lee .
dbr:Tim_berners-lee prov:wasDerivedFrom
<http://en.wikipedia.org/wiki/Tim_berners-lee?oldid=291475851> .
Linked Data design rules
HTTP GET http://dbpedia.org/resource/Tim_berners-lee Accept: "text/rdf+n3"
HTTP/1.1 303 See Other
Server: Virtuoso/07.20.3217 (Linux) i686-generic-linux-glibc212-64 VDB
Content-Type: text/rdf+n3
Location: http://dbpedia.org/data/Tim_berners-lee.nt
HTTP GET http://dbpedia.org/data/Tim_berners-lee.nt
HTTP/1.1 200 OK
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix wikipedia-en: <http://en.wikipedia.org/wiki/> .
@prefix dbr: <http://dbpedia.org/resource/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
wikipedia-en:Tim_berners-lee foaf:primaryTopicdbr:Tim_berners-lee .
dbr:Tim_berners-lee owl:sameAs <http://rdf.freebase.com/ns/m.07d5b> .
dbr:Tim_berners-lee rdfs:label "Tim berners-lee"@en ;
foaf:isPrimaryTopicOf wikipedia-en:Tim_berners-lee .
dbr:Tim_berners-lee prov:wasDerivedFrom
<http://en.wikipedia.org/wiki/Tim_berners-lee?oldid=291475851> .
1. Use URIs as names for things
2. Use HTTP URIs so that people can look up those
names.
Linked Data design rules
HTTP GET http://dbpedia.org/resource/Tim_berners-lee Accept: "text/rdf+n3"
HTTP/1.1 303 See Other
Server: Virtuoso/07.20.3217 (Linux) i686-generic-linux-glibc212-64 VDB
Content-Type: text/rdf+n3
Location: http://dbpedia.org/data/Tim_berners-lee.nt
HTTP GET http://dbpedia.org/data/Tim_berners-lee.nt
HTTP/1.1 200 OK
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix wikipedia-en: <http://en.wikipedia.org/wiki/> .
@prefix dbr: <http://dbpedia.org/resource/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
wikipedia-en:Tim_berners-lee foaf:primaryTopicdbr:Tim_berners-lee .
dbr:Tim_berners-lee owl:sameAs <http://rdf.freebase.com/ns/m.07d5b> .
dbr:Tim_berners-lee rdfs:label "Tim berners-lee"@en ;
foaf:isPrimaryTopicOf wikipedia-en:Tim_berners-lee .
dbr:Tim_berners-lee prov:wasDerivedFrom
<http://en.wikipedia.org/wiki/Tim_berners-lee?oldid=291475851> .
1. Use URIs as names for things
2. Use HTTP URIs so that people can look up those
names.
3. Provide useful information, using the
standards (RDF*, SPARQL), when
someone looks up a URI.
4. Include links to other URIs so that
they can discover more things.
Not all Linked Data is Open Data…
Open data is data available under an open licence (open
data and content can be freely used, modified, and
shared by anyone for any purpose e.g. CC0)
[OpenDefinition]
There is also Linked Closed Data, e.g. for privacy or
commercial reasons.
What is special about spatial data?
Spatial data is data about spatial things represented as
objects using classes, properties, and relationships.
A spatial object can have:
- geo-name: Leuven
- address: Philipssite 5 Bus 27 3001 Leuven
- geometry: POINT(4.7135173 50.8669778 )
POLYGON(4.6894703 50.944070
7, 4.6897756 50.9439115,
4.6903806 50.9436067,
4.690979 50.9432192, …)
Administrative Boundary Leuven © OpenStreetMap contributors, available under the Open Database licence
In RDF
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix sf: <http://www.opengis.net/ont/sf#>.
@prefix locn: <https://www.w3.org/ns/locn#> .
@prefix kbo: <http://data.kbodata.be/organisation/> .
@prefix statbel: <http://location.testproject.eu/so/au/AdministrativeUnit/STATBEL/>.
kbo:0454_064_819 a rov:RegisteredOrganization;
rdfs:label "G.I.M - Geographic Information Management";
locn:address :gimAddress;
geo:hasGeometry :gimPoint.
:gimPoint a sf:Point;
geo:asWKT "POINT(50.8669778 4.7135173)"^^geo:wktLiteral.
:gimAddress a locn:Address
locn:fullAddress "Philipssite 5 Bus 27 3001 Leuven";
locn:geometry :gimPoint.
statbel:24062 a locn:GeographicName;
rdfs:label "Leuven";
geo:hasGeometry :leuvenPolygon.
:leuvenPolygon a sf:Polygon;
geo:asWKT "POLYGON(4.6894703 50.9440707, 4.6897756 50.9439115,
4.6903806 50.9436067, 4.690979 50.9432192, …)"^^geo:wktLiteral.
Spatial Data Infrastructures
… and the Web
▶ Spatial Data Infrastructures: for experts
• Rich APIs: OGC CSW, WMS, WFS, …
• Rich representations: GML, …
• Many Coordinate Reference Systems
Spatial Data Infrastructures
… and the Web
▶ Spatial Data Infrastructures: for experts
• Rich APIs: OGC CSW, WMS, WFS, …
• Rich representations: GML, …
• Many Coordinate Reference Systems
▶ Linked Spatial Data: for Web developers
• Simple APIs: HTTP, (SPARQL)
• Simple representations: GeoJSON, RDF,
GeoSPARQL, …
• Fewer Coordinate Reference Systems:
WGS84
Spatial standards and the Web
1989: Word Wide Web
1991: HTTPv0.9
1999: W3C RDF
2006: Linked Data Design Rules
2008: KML
2008: GeoJSON
2009: OGC GeoSPARQL
2012: ISA Core Location
2013: Annex on URIs in INSPIRE
2014: INSPIRE as Linked Data
2014: OGC/W3C Spatial Data on the Web
2008: W3C SPARQL
2007: OGC GML
1995: IETF HTML 2.0
2000: HTTPv1.1
2000: ReST
1999: OGC WKT (SQL)
WebStandardsSpatialDataStandards
2002: OGC WFS
GeoDCAT-AP
The geospatial community use mature standards for
descriptive metadata (ISO19115) and discovery services
(OGC CSW) …
… but open data portals speak DCAT-AP.
GeoDCAT-AP indicates how geo-
metadata records can be encoded in
DCAT-AP.
Translation from ISO19115 to
GeoDCAT-AP implemented using
XSLT and embedded in GeoNetwork.
A large majority of datasets on open
data portals are spatial data.
URIs for spatial data
Generic use cases for linked spatial data
Identifier
(HTTP URI)
Name or
Address
Look up: get data
from a URI such as the
name or address of a
feature
Identify (reconcile,
disambiguate) an
address notation
Link datasets by means
of commonly used
identifiers
Example:
Chaussée de Bruxelles 135
1310 La Hulpe
Example:
http://location.testproject.
eu/so/ad/AddressRepresen
tation/SPW/248565
50.8672312,4.7127429
Geometry
Reverse geocode
find feature(s) based on
a location
Geocode retrieve the
location(s) of a feature
expressed as a geometry
Locate objects by
comparing their relative
geometric positions
Linked DataSpatial Data
Example: Linked Address Data
OpenLink Virtuoso
UrBIS - Brussels
Capital Region
CRAB - Flanders PICC - Wallonia
DATA CONSUMER
sample address data in native format
Linked address data
Common Data models
RDF view
SPARQL endpoint
INSPIRE
lookup, identify, link, locate, geocode,
reverse gecode
XML view
Xquery,
Xpath
• XML and RDF
views on
relational data
served over a
Web interface
http://location.testproject.eu/BEL/
Use case: identify
Identify: Reconcile or disambiguate a name or
address.
Use case: lookup
GIM - linked spatial data: where is the link?
Lookup: Retrieve structured data from a URI in
various formats.
Use case: lookup
GIM - linked spatial data: where is the link?
Lookup: Retrieve structured data from a URI in
various formats.
GET http://location.testproject.eu/so/au/AdministrativeUnit/STATBEL/25050
Accept: "application/rdf+xml"
HTTP/1.1 303 See Other
Server: Virtuoso/07.10.3207 (Linux) x86_64-pc-linux-gnu
Date: Mon, 09 May 2016 14:15:22 GMT
Location: http://location.testproject.eu/doc/au/AdministrativeUnit/STATBEL/25050.rdf
GET http://location.testproject.eu/so/au/AdministrativeUnit/STATBEL/25050
Accept: "application/gml+xml"
HTTP/1.1 303 See Other
Server: Virtuoso/07.10.3207 (Linux) x86_64-pc-linux-gnu
Date: Mon, 09 May 2016 14:15:23 GMT
Location: http://location.testproject.eu/doc/au/AdministrativeUnit/STATBEL/25050.xml
Use case: locate – implicit links
Locate spatial objects by comparing their relative
geometric positions. (Spatial data is implicitly linked
without URIs!)
Topological relations:
:A geo:sfEquals :B. :A geo:sfDisjoint :B
:A geo:sfContains :B:B geo:sfOverlaps :A
A geo:sfTouches :B
Use case: locate
GeoSPARQL query: which companies are within the
administrative boundaries of Leuven?
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX rov: <http://www.w3.org/ns/regorg#>
SELECT ?company
WHERE {
?company a rov:RegisteredOrganization;
geo:hasGeometry ?cgeo .
statbel:24062 geo:hasGeometry ?leuvenPolygon .
?cgeo geo:sfWithin ?leuvenPolygon .
}
Use case: link
Link: Link two datasets on the basis of common
identifiers.
Use case: link
Link: Link two datasets on the basis of common
identifiers.
BelMap GeoDaaS
GIMs BelMap GeoDaaS platform offers linked data on
Belgian addressable objects with persistent identifiers.
Used within the COMBUST ICONProject (Funded by
iMinds, IWT and Innoviris.) for linking data on
businesses.
Revenue models for Linked Data?
• Public funding: governments publish linked open
data to grow the data economy and bring social
benefits.
• Advertisement: being paid for online advertisements
on generated traffic.
• Subscription: being paid by a user base of
professional clients. Often using a freemium pricing
model.
Google Knowledge Graph
Index structured data from the Web using
e.g. Schema.org annotated content
Lots of spatial data modelling in
schema.org:
• schema:Place
• schema:AdministrativeArea
• schema:LocalBusiness
• …
• schema:StruturedValue
• schema:PostalAddres
• schema:GeoCoordinates
• schema:GeoShape
Where is the link?
Linked Data requires stable interfaces.
App developers will only rely on Web identifiers of
others if they provide credible service level
guarantees...
How to publish linked spatial data?
Continually improve the quality of your data
Find the right licence and funding model
Define persistent URIs
Use a stable vocabulary
Reuse existing infrastructure (e.g. WFS)
You don’t need a public SPARQL endpoint 
Stijn Goedertier
GeoICT Project Manager
stijn.goedertier@gim.be
Steven Smolders
Technology Director
steven.smolders@gim.be
Thank you!

Contenu connexe

Tendances

A researcher driven data description for the archived web: Why and how?
A researcher driven data description for the archived web: Why and how?A researcher driven data description for the archived web: Why and how?
A researcher driven data description for the archived web: Why and how?
WARCnet
 
Arkstore web ready2013
Arkstore web ready2013Arkstore web ready2013
Arkstore web ready2013
coldsnipe
 

Tendances (20)

A researcher driven data description for the archived web: Why and how?
A researcher driven data description for the archived web: Why and how?A researcher driven data description for the archived web: Why and how?
A researcher driven data description for the archived web: Why and how?
 
SDI4Apps - INSPIRE Hackathon
SDI4Apps - INSPIRE HackathonSDI4Apps - INSPIRE Hackathon
SDI4Apps - INSPIRE Hackathon
 
Web Archive Profiling Through Fulltext Search
Web Archive Profiling Through Fulltext SearchWeb Archive Profiling Through Fulltext Search
Web Archive Profiling Through Fulltext Search
 
Maintaining scholarly standards in the digital age: Publishing historical gaz...
Maintaining scholarly standards in the digital age: Publishing historical gaz...Maintaining scholarly standards in the digital age: Publishing historical gaz...
Maintaining scholarly standards in the digital age: Publishing historical gaz...
 
Database Researchers Map
Database Researchers MapDatabase Researchers Map
Database Researchers Map
 
nanopub-java: A Java Library for Nanopublications
nanopub-java: A Java Library for Nanopublicationsnanopub-java: A Java Library for Nanopublications
nanopub-java: A Java Library for Nanopublications
 
Open Land Use Map and Smart Points of Interest
Open Land Use Map and Smart Points of InterestOpen Land Use Map and Smart Points of Interest
Open Land Use Map and Smart Points of Interest
 
WG5: A data wrangling experiment
WG5: A data wrangling experimentWG5: A data wrangling experiment
WG5: A data wrangling experiment
 
Linked data life cycles
Linked data life cyclesLinked data life cycles
Linked data life cycles
 
Arkstore web ready2013
Arkstore web ready2013Arkstore web ready2013
Arkstore web ready2013
 
RDTF Metadata Guidelines: an update
RDTF Metadata Guidelines: an updateRDTF Metadata Guidelines: an update
RDTF Metadata Guidelines: an update
 
The Web of data and web data commons
The Web of data and web data commonsThe Web of data and web data commons
The Web of data and web data commons
 
Geospatial Querying in Apache Marmotta - Apache Big Data North America 2016
Geospatial Querying in Apache Marmotta -  Apache Big Data North America 2016Geospatial Querying in Apache Marmotta -  Apache Big Data North America 2016
Geospatial Querying in Apache Marmotta - Apache Big Data North America 2016
 
Drupal and the Semantic Web
Drupal and the Semantic WebDrupal and the Semantic Web
Drupal and the Semantic Web
 
The Semantic Data Web, Sören Auer, University of Leipzig
The Semantic Data Web, Sören Auer, University of LeipzigThe Semantic Data Web, Sören Auer, University of Leipzig
The Semantic Data Web, Sören Auer, University of Leipzig
 
ResourceSync Quick Overview
ResourceSync Quick OverviewResourceSync Quick Overview
ResourceSync Quick Overview
 
[Webinar] FactForge Debuts: Trump World Data and Instant Ranking of Industry ...
[Webinar] FactForge Debuts: Trump World Data and Instant Ranking of Industry ...[Webinar] FactForge Debuts: Trump World Data and Instant Ranking of Industry ...
[Webinar] FactForge Debuts: Trump World Data and Instant Ranking of Industry ...
 
Sitemap4rdf(v2 boris)
Sitemap4rdf(v2 boris)Sitemap4rdf(v2 boris)
Sitemap4rdf(v2 boris)
 
Open Data - a goldmine (JavaZone 2009)
Open Data - a goldmine (JavaZone 2009)Open Data - a goldmine (JavaZone 2009)
Open Data - a goldmine (JavaZone 2009)
 
The Danish case: What does the danish web talk about
The Danish case: What does the danish web talk aboutThe Danish case: What does the danish web talk about
The Danish case: What does the danish web talk about
 

Similaire à Flagis linked open_data_stijn_goedertier

Science Services and Science Platforms: Using the Cloud to Accelerate and Dem...
Science Services and Science Platforms: Using the Cloud to Accelerate and Dem...Science Services and Science Platforms: Using the Cloud to Accelerate and Dem...
Science Services and Science Platforms: Using the Cloud to Accelerate and Dem...
Ian Foster
 
OpenSearch 2010-09
OpenSearch 2010-09OpenSearch 2010-09
OpenSearch 2010-09
Oscar Fonts
 

Similaire à Flagis linked open_data_stijn_goedertier (20)

EuroGeographics Linked Data by geo.admin.ch /swisstopo
EuroGeographics Linked Data by geo.admin.ch /swisstopoEuroGeographics Linked Data by geo.admin.ch /swisstopo
EuroGeographics Linked Data by geo.admin.ch /swisstopo
 
Linked Data Overview - AGI Technical SIG
Linked Data Overview - AGI Technical SIGLinked Data Overview - AGI Technical SIG
Linked Data Overview - AGI Technical SIG
 
The new CIARD RING , a machine-readable directory of datasets for agriculture
The new CIARD RING, a machine-readable directory of datasets for agricultureThe new CIARD RING, a machine-readable directory of datasets for agriculture
The new CIARD RING , a machine-readable directory of datasets for agriculture
 
OSFair2017 Workshop | EPOS: European Plate Observing System
OSFair2017 Workshop | EPOS: European Plate Observing SystemOSFair2017 Workshop | EPOS: European Plate Observing System
OSFair2017 Workshop | EPOS: European Plate Observing System
 
Lodstats: The Data Web Census Dataset. Kobe, Japan, 2016
Lodstats: The Data Web Census Dataset. Kobe, Japan, 2016Lodstats: The Data Web Census Dataset. Kobe, Japan, 2016
Lodstats: The Data Web Census Dataset. Kobe, Japan, 2016
 
OpenAIRE and the Case of Irish Repositories
OpenAIRE and the Case of Irish RepositoriesOpenAIRE and the Case of Irish Repositories
OpenAIRE and the Case of Irish Repositories
 
OpenAIRE and the case of Irish Repositories, by Jochen Schirrwagen (RIAN Work...
OpenAIRE and the case of Irish Repositories, by Jochen Schirrwagen (RIAN Work...OpenAIRE and the case of Irish Repositories, by Jochen Schirrwagen (RIAN Work...
OpenAIRE and the case of Irish Repositories, by Jochen Schirrwagen (RIAN Work...
 
EUDAT B2STAGE & EOSC-hub
EUDAT B2STAGE & EOSC-hubEUDAT B2STAGE & EOSC-hub
EUDAT B2STAGE & EOSC-hub
 
20100614 ISWSA Keynote
20100614 ISWSA Keynote20100614 ISWSA Keynote
20100614 ISWSA Keynote
 
Towards an architecture and adoption process for Linked Data technologies in ...
Towards an architecture and adoption process for Linked Data technologies in ...Towards an architecture and adoption process for Linked Data technologies in ...
Towards an architecture and adoption process for Linked Data technologies in ...
 
LOD2 webinar series: Virtuoso by OpenLink Software
LOD2 webinar series: Virtuoso by OpenLink SoftwareLOD2 webinar series: Virtuoso by OpenLink Software
LOD2 webinar series: Virtuoso by OpenLink Software
 
RO-Crate: A framework for packaging research products into FAIR Research Objects
RO-Crate: A framework for packaging research products into FAIR Research ObjectsRO-Crate: A framework for packaging research products into FAIR Research Objects
RO-Crate: A framework for packaging research products into FAIR Research Objects
 
Science Services and Science Platforms: Using the Cloud to Accelerate and Dem...
Science Services and Science Platforms: Using the Cloud to Accelerate and Dem...Science Services and Science Platforms: Using the Cloud to Accelerate and Dem...
Science Services and Science Platforms: Using the Cloud to Accelerate and Dem...
 
LOD2: State of Play WP6 - LOD2 Stack Architecture
LOD2: State of Play WP6 - LOD2 Stack ArchitectureLOD2: State of Play WP6 - LOD2 Stack Architecture
LOD2: State of Play WP6 - LOD2 Stack Architecture
 
2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...
2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...
2015 FOSS4G Track: Open Specifications for the Storage, Transport and Process...
 
OpenSearch 2010-09
OpenSearch 2010-09OpenSearch 2010-09
OpenSearch 2010-09
 
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Introduction to the Data Web, DBpedia and the Life-cycle of Linked DataIntroduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data
 
Apache Spark and Object Stores —for London Spark User Group
Apache Spark and Object Stores —for London Spark User GroupApache Spark and Object Stores —for London Spark User Group
Apache Spark and Object Stores —for London Spark User Group
 
Raster data in GeoServer and GeoTools: Achievements, issues and future devel...
Raster data in GeoServer and GeoTools:  Achievements, issues and future devel...Raster data in GeoServer and GeoTools:  Achievements, issues and future devel...
Raster data in GeoServer and GeoTools: Achievements, issues and future devel...
 
Visualising statistical Linked Data with Plone
Visualising statistical Linked Data with PloneVisualising statistical Linked Data with Plone
Visualising statistical Linked Data with Plone
 

Plus de Flagis VZW

Beleidsinput 30/1: Eindverslag
Beleidsinput 30/1: EindverslagBeleidsinput 30/1: Eindverslag
Beleidsinput 30/1: Eindverslag
Flagis VZW
 
Beleidsinput 30/1: Keynote
Beleidsinput 30/1: KeynoteBeleidsinput 30/1: Keynote
Beleidsinput 30/1: Keynote
Flagis VZW
 
Beleidsinput 30/1: Domein Slimme Mobiliteit
Beleidsinput 30/1: Domein Slimme MobiliteitBeleidsinput 30/1: Domein Slimme Mobiliteit
Beleidsinput 30/1: Domein Slimme Mobiliteit
Flagis VZW
 
Beleidsinput 30/1: Domein Energie
Beleidsinput 30/1: Domein EnergieBeleidsinput 30/1: Domein Energie
Beleidsinput 30/1: Domein Energie
Flagis VZW
 
Beleidsinput 30/1: Domein Ruimte voor Morgen
Beleidsinput 30/1: Domein Ruimte voor MorgenBeleidsinput 30/1: Domein Ruimte voor Morgen
Beleidsinput 30/1: Domein Ruimte voor Morgen
Flagis VZW
 
Beleidsinput 30/1: Domein Zorg
Beleidsinput 30/1: Domein ZorgBeleidsinput 30/1: Domein Zorg
Beleidsinput 30/1: Domein Zorg
Flagis VZW
 

Plus de Flagis VZW (8)

Flagis linked open_data_thimo_thoeye
Flagis linked open_data_thimo_thoeyeFlagis linked open_data_thimo_thoeye
Flagis linked open_data_thimo_thoeye
 
Flagis linked open_data_bart_delathouwer
Flagis linked open_data_bart_delathouwerFlagis linked open_data_bart_delathouwer
Flagis linked open_data_bart_delathouwer
 
Beleidsinput 30/1: Eindverslag
Beleidsinput 30/1: EindverslagBeleidsinput 30/1: Eindverslag
Beleidsinput 30/1: Eindverslag
 
Beleidsinput 30/1: Keynote
Beleidsinput 30/1: KeynoteBeleidsinput 30/1: Keynote
Beleidsinput 30/1: Keynote
 
Beleidsinput 30/1: Domein Slimme Mobiliteit
Beleidsinput 30/1: Domein Slimme MobiliteitBeleidsinput 30/1: Domein Slimme Mobiliteit
Beleidsinput 30/1: Domein Slimme Mobiliteit
 
Beleidsinput 30/1: Domein Energie
Beleidsinput 30/1: Domein EnergieBeleidsinput 30/1: Domein Energie
Beleidsinput 30/1: Domein Energie
 
Beleidsinput 30/1: Domein Ruimte voor Morgen
Beleidsinput 30/1: Domein Ruimte voor MorgenBeleidsinput 30/1: Domein Ruimte voor Morgen
Beleidsinput 30/1: Domein Ruimte voor Morgen
 
Beleidsinput 30/1: Domein Zorg
Beleidsinput 30/1: Domein ZorgBeleidsinput 30/1: Domein Zorg
Beleidsinput 30/1: Domein Zorg
 

Dernier

👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
karishmasinghjnh
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
amitlee9823
 
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
amitlee9823
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
amitlee9823
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
amitlee9823
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
only4webmaster01
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
amitlee9823
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
amitlee9823
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
amitlee9823
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
amitlee9823
 

Dernier (20)

👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
 
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
 

Flagis linked open_data_stijn_goedertier

  • 1. Spatial Data: where is the link? FLAGIS Academic Session, Leuven, 12 May 2016 Stijn Goedertier
  • 3. Linked Data design rules HTTP GET http://dbpedia.org/resource/Tim_berners-lee Accept: "text/rdf+n3" HTTP/1.1 303 See Other Server: Virtuoso/07.20.3217 (Linux) i686-generic-linux-glibc212-64 VDB Content-Type: text/rdf+n3 Location: http://dbpedia.org/data/Tim_berners-lee.nt HTTP GET http://dbpedia.org/data/Tim_berners-lee.nt HTTP/1.1 200 OK @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix wikipedia-en: <http://en.wikipedia.org/wiki/> . @prefix dbr: <http://dbpedia.org/resource/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix prov: <http://www.w3.org/ns/prov#> . wikipedia-en:Tim_berners-lee foaf:primaryTopicdbr:Tim_berners-lee . dbr:Tim_berners-lee owl:sameAs <http://rdf.freebase.com/ns/m.07d5b> . dbr:Tim_berners-lee rdfs:label "Tim berners-lee"@en ; foaf:isPrimaryTopicOf wikipedia-en:Tim_berners-lee . dbr:Tim_berners-lee prov:wasDerivedFrom <http://en.wikipedia.org/wiki/Tim_berners-lee?oldid=291475851> .
  • 4. Linked Data design rules HTTP GET http://dbpedia.org/resource/Tim_berners-lee Accept: "text/rdf+n3" HTTP/1.1 303 See Other Server: Virtuoso/07.20.3217 (Linux) i686-generic-linux-glibc212-64 VDB Content-Type: text/rdf+n3 Location: http://dbpedia.org/data/Tim_berners-lee.nt HTTP GET http://dbpedia.org/data/Tim_berners-lee.nt HTTP/1.1 200 OK @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix wikipedia-en: <http://en.wikipedia.org/wiki/> . @prefix dbr: <http://dbpedia.org/resource/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix prov: <http://www.w3.org/ns/prov#> . wikipedia-en:Tim_berners-lee foaf:primaryTopicdbr:Tim_berners-lee . dbr:Tim_berners-lee owl:sameAs <http://rdf.freebase.com/ns/m.07d5b> . dbr:Tim_berners-lee rdfs:label "Tim berners-lee"@en ; foaf:isPrimaryTopicOf wikipedia-en:Tim_berners-lee . dbr:Tim_berners-lee prov:wasDerivedFrom <http://en.wikipedia.org/wiki/Tim_berners-lee?oldid=291475851> . 1. Use URIs as names for things 2. Use HTTP URIs so that people can look up those names.
  • 5. Linked Data design rules HTTP GET http://dbpedia.org/resource/Tim_berners-lee Accept: "text/rdf+n3" HTTP/1.1 303 See Other Server: Virtuoso/07.20.3217 (Linux) i686-generic-linux-glibc212-64 VDB Content-Type: text/rdf+n3 Location: http://dbpedia.org/data/Tim_berners-lee.nt HTTP GET http://dbpedia.org/data/Tim_berners-lee.nt HTTP/1.1 200 OK @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix wikipedia-en: <http://en.wikipedia.org/wiki/> . @prefix dbr: <http://dbpedia.org/resource/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix prov: <http://www.w3.org/ns/prov#> . wikipedia-en:Tim_berners-lee foaf:primaryTopicdbr:Tim_berners-lee . dbr:Tim_berners-lee owl:sameAs <http://rdf.freebase.com/ns/m.07d5b> . dbr:Tim_berners-lee rdfs:label "Tim berners-lee"@en ; foaf:isPrimaryTopicOf wikipedia-en:Tim_berners-lee . dbr:Tim_berners-lee prov:wasDerivedFrom <http://en.wikipedia.org/wiki/Tim_berners-lee?oldid=291475851> . 1. Use URIs as names for things 2. Use HTTP URIs so that people can look up those names. 3. Provide useful information, using the standards (RDF*, SPARQL), when someone looks up a URI. 4. Include links to other URIs so that they can discover more things.
  • 6. Not all Linked Data is Open Data… Open data is data available under an open licence (open data and content can be freely used, modified, and shared by anyone for any purpose e.g. CC0) [OpenDefinition] There is also Linked Closed Data, e.g. for privacy or commercial reasons.
  • 7. What is special about spatial data? Spatial data is data about spatial things represented as objects using classes, properties, and relationships. A spatial object can have: - geo-name: Leuven - address: Philipssite 5 Bus 27 3001 Leuven - geometry: POINT(4.7135173 50.8669778 ) POLYGON(4.6894703 50.944070 7, 4.6897756 50.9439115, 4.6903806 50.9436067, 4.690979 50.9432192, …) Administrative Boundary Leuven © OpenStreetMap contributors, available under the Open Database licence
  • 8. In RDF @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix geo: <http://www.opengis.net/ont/geosparql#> . @prefix sf: <http://www.opengis.net/ont/sf#>. @prefix locn: <https://www.w3.org/ns/locn#> . @prefix kbo: <http://data.kbodata.be/organisation/> . @prefix statbel: <http://location.testproject.eu/so/au/AdministrativeUnit/STATBEL/>. kbo:0454_064_819 a rov:RegisteredOrganization; rdfs:label "G.I.M - Geographic Information Management"; locn:address :gimAddress; geo:hasGeometry :gimPoint. :gimPoint a sf:Point; geo:asWKT "POINT(50.8669778 4.7135173)"^^geo:wktLiteral. :gimAddress a locn:Address locn:fullAddress "Philipssite 5 Bus 27 3001 Leuven"; locn:geometry :gimPoint. statbel:24062 a locn:GeographicName; rdfs:label "Leuven"; geo:hasGeometry :leuvenPolygon. :leuvenPolygon a sf:Polygon; geo:asWKT "POLYGON(4.6894703 50.9440707, 4.6897756 50.9439115, 4.6903806 50.9436067, 4.690979 50.9432192, …)"^^geo:wktLiteral.
  • 9. Spatial Data Infrastructures … and the Web ▶ Spatial Data Infrastructures: for experts • Rich APIs: OGC CSW, WMS, WFS, … • Rich representations: GML, … • Many Coordinate Reference Systems
  • 10. Spatial Data Infrastructures … and the Web ▶ Spatial Data Infrastructures: for experts • Rich APIs: OGC CSW, WMS, WFS, … • Rich representations: GML, … • Many Coordinate Reference Systems ▶ Linked Spatial Data: for Web developers • Simple APIs: HTTP, (SPARQL) • Simple representations: GeoJSON, RDF, GeoSPARQL, … • Fewer Coordinate Reference Systems: WGS84
  • 11. Spatial standards and the Web 1989: Word Wide Web 1991: HTTPv0.9 1999: W3C RDF 2006: Linked Data Design Rules 2008: KML 2008: GeoJSON 2009: OGC GeoSPARQL 2012: ISA Core Location 2013: Annex on URIs in INSPIRE 2014: INSPIRE as Linked Data 2014: OGC/W3C Spatial Data on the Web 2008: W3C SPARQL 2007: OGC GML 1995: IETF HTML 2.0 2000: HTTPv1.1 2000: ReST 1999: OGC WKT (SQL) WebStandardsSpatialDataStandards 2002: OGC WFS
  • 12. GeoDCAT-AP The geospatial community use mature standards for descriptive metadata (ISO19115) and discovery services (OGC CSW) … … but open data portals speak DCAT-AP. GeoDCAT-AP indicates how geo- metadata records can be encoded in DCAT-AP. Translation from ISO19115 to GeoDCAT-AP implemented using XSLT and embedded in GeoNetwork. A large majority of datasets on open data portals are spatial data.
  • 14. Generic use cases for linked spatial data Identifier (HTTP URI) Name or Address Look up: get data from a URI such as the name or address of a feature Identify (reconcile, disambiguate) an address notation Link datasets by means of commonly used identifiers Example: Chaussée de Bruxelles 135 1310 La Hulpe Example: http://location.testproject. eu/so/ad/AddressRepresen tation/SPW/248565 50.8672312,4.7127429 Geometry Reverse geocode find feature(s) based on a location Geocode retrieve the location(s) of a feature expressed as a geometry Locate objects by comparing their relative geometric positions Linked DataSpatial Data
  • 15. Example: Linked Address Data OpenLink Virtuoso UrBIS - Brussels Capital Region CRAB - Flanders PICC - Wallonia DATA CONSUMER sample address data in native format Linked address data Common Data models RDF view SPARQL endpoint INSPIRE lookup, identify, link, locate, geocode, reverse gecode XML view Xquery, Xpath • XML and RDF views on relational data served over a Web interface http://location.testproject.eu/BEL/
  • 16. Use case: identify Identify: Reconcile or disambiguate a name or address.
  • 17. Use case: lookup GIM - linked spatial data: where is the link? Lookup: Retrieve structured data from a URI in various formats.
  • 18. Use case: lookup GIM - linked spatial data: where is the link? Lookup: Retrieve structured data from a URI in various formats. GET http://location.testproject.eu/so/au/AdministrativeUnit/STATBEL/25050 Accept: "application/rdf+xml" HTTP/1.1 303 See Other Server: Virtuoso/07.10.3207 (Linux) x86_64-pc-linux-gnu Date: Mon, 09 May 2016 14:15:22 GMT Location: http://location.testproject.eu/doc/au/AdministrativeUnit/STATBEL/25050.rdf GET http://location.testproject.eu/so/au/AdministrativeUnit/STATBEL/25050 Accept: "application/gml+xml" HTTP/1.1 303 See Other Server: Virtuoso/07.10.3207 (Linux) x86_64-pc-linux-gnu Date: Mon, 09 May 2016 14:15:23 GMT Location: http://location.testproject.eu/doc/au/AdministrativeUnit/STATBEL/25050.xml
  • 19. Use case: locate – implicit links Locate spatial objects by comparing their relative geometric positions. (Spatial data is implicitly linked without URIs!) Topological relations: :A geo:sfEquals :B. :A geo:sfDisjoint :B :A geo:sfContains :B:B geo:sfOverlaps :A A geo:sfTouches :B
  • 20. Use case: locate GeoSPARQL query: which companies are within the administrative boundaries of Leuven? PREFIX geo: <http://www.opengis.net/ont/geosparql#> PREFIX rov: <http://www.w3.org/ns/regorg#> SELECT ?company WHERE { ?company a rov:RegisteredOrganization; geo:hasGeometry ?cgeo . statbel:24062 geo:hasGeometry ?leuvenPolygon . ?cgeo geo:sfWithin ?leuvenPolygon . }
  • 21. Use case: link Link: Link two datasets on the basis of common identifiers.
  • 22. Use case: link Link: Link two datasets on the basis of common identifiers.
  • 23. BelMap GeoDaaS GIMs BelMap GeoDaaS platform offers linked data on Belgian addressable objects with persistent identifiers. Used within the COMBUST ICONProject (Funded by iMinds, IWT and Innoviris.) for linking data on businesses.
  • 24. Revenue models for Linked Data? • Public funding: governments publish linked open data to grow the data economy and bring social benefits. • Advertisement: being paid for online advertisements on generated traffic. • Subscription: being paid by a user base of professional clients. Often using a freemium pricing model.
  • 26. Index structured data from the Web using e.g. Schema.org annotated content Lots of spatial data modelling in schema.org: • schema:Place • schema:AdministrativeArea • schema:LocalBusiness • … • schema:StruturedValue • schema:PostalAddres • schema:GeoCoordinates • schema:GeoShape
  • 27. Where is the link? Linked Data requires stable interfaces. App developers will only rely on Web identifiers of others if they provide credible service level guarantees...
  • 28. How to publish linked spatial data? Continually improve the quality of your data Find the right licence and funding model Define persistent URIs Use a stable vocabulary Reuse existing infrastructure (e.g. WFS) You don’t need a public SPARQL endpoint 
  • 29. Stijn Goedertier GeoICT Project Manager stijn.goedertier@gim.be Steven Smolders Technology Director steven.smolders@gim.be Thank you!