SlideShare una empresa de Scribd logo
1 de 22
Descargar para leer sin conexión
Creating Knowledge out of Interlinked Data
LOD2 Presentation . 02.09.2010 . Page
Facete
Claus Stadler
2015.09.15 GeoLD Workshop
Exploring the spatial Web of Data with
2
Facete
A faceted browser for the Web of Data
AgendaAgenda
●
MotivationMotivation
●
Screenshot of FaceteScreenshot of Facete
●
New FeaturesNew Features
●
ArchitectureArchitecture
●
JassaJassa
●
Jassa-UIJassa-UI
●
DemoDemo
3
Facete
Motivation
The LinkedGeoData BrowserThe LinkedGeoData Browser
4
Facete
Motivation
The LinkedGeoData BrowserThe LinkedGeoData Browser
●
““Naive SPARQL-based” browserNaive SPARQL-based” browser
●
Cannot handle large amount of geometriesCannot handle large amount of geometries
●
Cannot handle large amounts of featuresCannot handle large amounts of features
●
Can only filter by classesCan only filter by classes
●
Can only show direct properties of resourcesCan only show direct properties of resources
●
Only works for WGS84Only works for WGS84
●
No internationalizationNo internationalization
5
Facete
A faceted browser for the Web of Data
Screenshot of the ApplicationScreenshot of the Application
6
Facete
New features
Integrated Dataset CatalogIntegrated Dataset Catalog
7
Facete
New features
RDF EditorRDF Editor
8
Application Container (Tomcat, Jetty, ...)
Facete
Architecture
ArchitectureArchitecture
Facete
Sparql
Query Cache
Client
(Browser)
Server
Remote
Sparql
Endpoints
Config
Concept
Property Path Finder
Spring
Batch
Sparql
Exporter
Spring
Batch
Join
Summaries
Facete
Jassa Library Jassa UI Library
Application
Logic
EDIT
RDF Editing on the Web
1. Annotate your HTML 3. Get live feeback
of the RDF and
changes
2. Interact with your
pre-filled form
Claus Stadler, Natanael Arndt, Michael Martin and Jens Lehmann
<div
rex-subject=”dbr:Vienna”
rex-predicate=”geo:geometry”>
<rdf-term-input ng-model=”wkt”
rex-value=”wkt” />
<geometry-input
ng-model=”wkt” rex-literal />
</div>
bower install jassa-ui-angular-edit https://github.com/GeoKnow/Jassa-UI-Angular
10
Facete
Architecture
Edit WorkflowEdit Workflow
Facete
Sparql Cache
Client
(Browser)
Server
Remote
Sparql
Endpoints
Facete UI Component Reset form to pristine
Invalidate server side
cache
Invalidate client side
cache
Create a new
SparqlService object
will refresh
client components
and edit forms
Sparql Service
UI Component RDF Editor
Sparql Cache
Sparql Service
https://github.com/GeoKnow/DataDrivenDependencyInjection-Angular
11
Facete
A faceted browser for the Web of Data
The JAvascript Suite for Sparql Access (Jassa) LibraryThe JAvascript Suite for Sparql Access (Jassa) Library
rdf
rdf.Node, rdf.NodeFactory
rdf.Tripel, rdf.Graph
rdf.vocab.rdf.*, rdf.vocab.rdfs.*
sparql.Element*
sparql.Expr*
sparql.Concept
RDF core classes
and vocabs
SPARQL syntax
classes
service
SPARQL service
classes
service.SparqlServiceHttp
service.SparqlServiceCache
service.ResultSet
Purpose Module Excerpt of important Classes
sparql
depends on
depends on
sparqlService = new service.SparqlServiceHttp('http://dbpedia.org/sparql'
['http://dbpedia.org']);
sparqlService = new service.SparqlServiceCache(sparqlService);
sparqlService = new service.SparqlServiceVirtFix(sparqlService);
sparqlService = new service.SparqlServicePaginate(sparqlService, 1000);
sparqlService = new service.SparqlServicePageExpand(sparqlService, 100);
var qe = sparqlService.createQueryExecution('Select * { ?s ?p ?o } Limit 10'
qe.setTimeout(5000);
qe.execSelect().then(function(rs) { while(rs.hasNext()) { /* ... */ } });
12
Facete
A faceted browser for the Web of Data
The JAvascript Suite for Sparql Access (Jassa) LibraryThe JAvascript Suite for Sparql Access (Jassa) Library
sponate sponate.Map
sponate.StoreFacade
facete
SPARQL result set
to JSON document mapper
Supports regex search, limit,
offset, counting, …
on virtual JS documents
rather than raw result set rows
facete.FacetConfig
facete.FacetService
facete.FacetTreeConfig
facete.FacetTreeService
service
SPARQL service
classes
service.SparqlServiceHttp
service.SparqlServiceCache
service.ResultSet
Purpose Module Excerpt of important Classes
depends on
depends on
depends on
Faceted Search module
Supports nested facets;
regex search, pagination
for both facets and facet
values
13
Facete
Jassa-UI
Jassa-UI - User Interface ComponentsJassa-UI - User Interface Components
14
Facete
Demo
AgendaAgenda
DemoDemo
15
Facete
Achievements
IssuesIssues
● Cannot handle large amounts of geometries
●
Large amounts of Geometries supported viaLarge amounts of Geometries supported via
client side Sparql-based clustering using bounding boxesclient side Sparql-based clustering using bounding boxes
● Cannot handle large amounts of features
●
Intensional description of the set of resources matchingIntensional description of the set of resources matching
the facet constraints enables paginationthe facet constraints enables pagination
● Can only filter by classes
●
Can filter by values of any propertyCan filter by values of any property
16
Facete
Achievements
IssuesIssues
● Can only show direct properties of resources
●
Can show values of indirectly related (inverse) propertiesCan show values of indirectly related (inverse) properties
● Only works for WGS84
●
Geometry Literals (GeoSPARQL / Virtuoso), WGS84, GeoRSSGeometry Literals (GeoSPARQL / Virtuoso), WGS84, GeoRSS
●
Indirection supportedIndirection supported
● No internationalization
●
Preferred languages and labelPreferred languages and label
properties supported via Sponateproperties supported via Sponate
17
Facete
Future Work
InterlinkingInterlinking
18
Facete
Demo
The EndThe End
Thank You!Thank You!
Questions?Questions?
19
Facete
Links
Related LinksRelated Links
●
http://facete.aksw.org/http://facete.aksw.org/
●
https://github.com/GeoKnow/Facete2https://github.com/GeoKnow/Facete2
JavaScript ComponentsJavaScript Components
●
https://github.com/GeoKnow/Jassahttps://github.com/GeoKnow/Jassa
●
https://github.com/GeoKnow/Jassa-UI-Angularhttps://github.com/GeoKnow/Jassa-UI-Angular
Java ComponentsJava Components
●
https://github.com/AKSW/jena-sparql-apihttps://github.com/AKSW/jena-sparql-api
20
Facete
Property Path Finding
Concept Property Path Finding (Sketch)Concept Property Path Finding (Sketch)
({?s a Project}, ?s)
({?s long ?x ; lat ?y}, ?s)
Create a graph where
each node corresponds to a property, and
each edge corresponds to a connection between these properties
21
Facete
Motivation
Jassa – Faceted Browsing Module (Facete-Module)Jassa – Faceted Browsing Module (Facete-Module)
var facetConfig = new facete.FacetConfig();
var constraintPath = facete.Path.parse('http://www.w3.org/1999/02/22-
rdf-syntax-ns#type');
facetConfig.getConstraintManager().addConstraint(
new facete.ConstraintEquals(constraintPath,
rdf.NodeFactory.createUri('http://fp7-
pp.publicdata.eu/ontology/Project')));
var facetValueService = new facete.FacetValueService(sparqlService,
facetConfig, 5000000);
var path = facete.Path.parse('http://fp7-
pp.publicdata.eu/ontology/funding http://fp7-
pp.publicdata.eu/ontology/partner http://fp7-
pp.publicdata.eu/ontology/address http://fp7-
pp.publicdata.eu/ontology/country');
facetValueService.prepareListService(path).then(function(ls) {
ls.fetchItems().then(function(items) { /* … */ });
});
22
Facete
Motivation
Jassa – Sparql To JavaScript Mapper (Sponate)Jassa – Sparql To JavaScript Mapper (Sponate)
●
Inspired by SParql + jsON + hibernATEInspired by SParql + jsON + hibernATE
store = new sponate.StoreFacade(sparqlService, {
'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'
/* ... */
});
store.addMap({
name: 'castles',
template: [{
id: '?s',
displayLabel: { $ref: { target: 'labels', attr: 'displayLabel' }}
}],
from: '?s a dbpedia-owl:Castle'
});
store.addMap({
name: 'labels',
template: [{
id: '?s',
displayLabel: new AggBestLabel('s', 'p', 'o',
['en', 'de', ''],
['skos:prefLabel', 'rdfs:label', 'doap:name']),
hiddenLabels: ['?o']
}],
from: '?s ?p ?o . Filter(?p In (skos:prefLabel, rdfs:label, doap:name))'
});
store.castles.find().limit(10).list().then(function(castles) {
/* ... */
});

Más contenido relacionado

Similar a Facete - Exploring the web of spatial data with facete

Scala's evolving ecosystem- Introduction to Scala.js
Scala's evolving ecosystem- Introduction to Scala.jsScala's evolving ecosystem- Introduction to Scala.js
Scala's evolving ecosystem- Introduction to Scala.jsKnoldus Inc.
 
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 2016Sergio Fernández
 
JavaOne 2014 - Scalable JavaScript Applications with Project Nashorn [CON6423]
JavaOne 2014 - Scalable JavaScript Applications with Project Nashorn [CON6423]JavaOne 2014 - Scalable JavaScript Applications with Project Nashorn [CON6423]
JavaOne 2014 - Scalable JavaScript Applications with Project Nashorn [CON6423]Leonardo Zanivan
 
"Xapi-lang For declarative code generation" By James Nelson
"Xapi-lang For declarative code generation" By James Nelson"Xapi-lang For declarative code generation" By James Nelson
"Xapi-lang For declarative code generation" By James NelsonGWTcon
 
20091226 名古屋SGGAE/J勉強会発表資料『Lift on GAE/J』
20091226 名古屋SGGAE/J勉強会発表資料『Lift on GAE/J』20091226 名古屋SGGAE/J勉強会発表資料『Lift on GAE/J』
20091226 名古屋SGGAE/J勉強会発表資料『Lift on GAE/J』Ryo RKTM
 
Spark Concepts - Spark SQL, Graphx, Streaming
Spark Concepts - Spark SQL, Graphx, StreamingSpark Concepts - Spark SQL, Graphx, Streaming
Spark Concepts - Spark SQL, Graphx, StreamingPetr Zapletal
 
When it all GOes right
When it all GOes rightWhen it all GOes right
When it all GOes rightPavlo Golub
 
Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...
Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...
Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...The Software House
 
Linking the world with Python and Semantics
Linking the world with Python and SemanticsLinking the world with Python and Semantics
Linking the world with Python and SemanticsTatiana Al-Chueyr
 
Visualizing Web Data Query Results
Visualizing Web Data Query ResultsVisualizing Web Data Query Results
Visualizing Web Data Query ResultsAnja Jentzsch
 
WWW2012 Tutorial Visualizing SPARQL Queries
WWW2012 Tutorial Visualizing SPARQL QueriesWWW2012 Tutorial Visualizing SPARQL Queries
WWW2012 Tutorial Visualizing SPARQL QueriesPablo Mendes
 
Introduction to Property Graph Features (AskTOM Office Hours part 1)
Introduction to Property Graph Features (AskTOM Office Hours part 1) Introduction to Property Graph Features (AskTOM Office Hours part 1)
Introduction to Property Graph Features (AskTOM Office Hours part 1) Jean Ihm
 
企业级软件的组件化和动态化开发实践
企业级软件的组件化和动态化开发实践企业级软件的组件化和动态化开发实践
企业级软件的组件化和动态化开发实践Jacky Chi
 
3 rad extensibility-srilakshmi_s_rajesh_k
3 rad extensibility-srilakshmi_s_rajesh_k3 rad extensibility-srilakshmi_s_rajesh_k
3 rad extensibility-srilakshmi_s_rajesh_kIBM
 
Rad Extensibility - Srilakshmi S Rajesh K
Rad Extensibility - Srilakshmi S Rajesh KRad Extensibility - Srilakshmi S Rajesh K
Rad Extensibility - Srilakshmi S Rajesh KRoopa Nadkarni
 
Cassandra Community Webinar: Apache Spark Analytics at The Weather Channel - ...
Cassandra Community Webinar: Apache Spark Analytics at The Weather Channel - ...Cassandra Community Webinar: Apache Spark Analytics at The Weather Channel - ...
Cassandra Community Webinar: Apache Spark Analytics at The Weather Channel - ...DataStax Academy
 
Getting Started with Spring for GraphQL
Getting Started with Spring for GraphQLGetting Started with Spring for GraphQL
Getting Started with Spring for GraphQLVMware Tanzu
 

Similar a Facete - Exploring the web of spatial data with facete (20)

Scala's evolving ecosystem- Introduction to Scala.js
Scala's evolving ecosystem- Introduction to Scala.jsScala's evolving ecosystem- Introduction to Scala.js
Scala's evolving ecosystem- Introduction to Scala.js
 
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
 
JavaOne 2014 - Scalable JavaScript Applications with Project Nashorn [CON6423]
JavaOne 2014 - Scalable JavaScript Applications with Project Nashorn [CON6423]JavaOne 2014 - Scalable JavaScript Applications with Project Nashorn [CON6423]
JavaOne 2014 - Scalable JavaScript Applications with Project Nashorn [CON6423]
 
"Xapi-lang For declarative code generation" By James Nelson
"Xapi-lang For declarative code generation" By James Nelson"Xapi-lang For declarative code generation" By James Nelson
"Xapi-lang For declarative code generation" By James Nelson
 
20091226 名古屋SGGAE/J勉強会発表資料『Lift on GAE/J』
20091226 名古屋SGGAE/J勉強会発表資料『Lift on GAE/J』20091226 名古屋SGGAE/J勉強会発表資料『Lift on GAE/J』
20091226 名古屋SGGAE/J勉強会発表資料『Lift on GAE/J』
 
Java 8 Lambda
Java 8 LambdaJava 8 Lambda
Java 8 Lambda
 
DSLs in JavaScript
DSLs in JavaScriptDSLs in JavaScript
DSLs in JavaScript
 
Spark Concepts - Spark SQL, Graphx, Streaming
Spark Concepts - Spark SQL, Graphx, StreamingSpark Concepts - Spark SQL, Graphx, Streaming
Spark Concepts - Spark SQL, Graphx, Streaming
 
When it all GOes right
When it all GOes rightWhen it all GOes right
When it all GOes right
 
The Java alternative to Javascript
The Java alternative to JavascriptThe Java alternative to Javascript
The Java alternative to Javascript
 
Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...
Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...
Mój przepis na skalowalną architekturę mikroserwisową? Apollo Federation i Gr...
 
Linking the world with Python and Semantics
Linking the world with Python and SemanticsLinking the world with Python and Semantics
Linking the world with Python and Semantics
 
Visualizing Web Data Query Results
Visualizing Web Data Query ResultsVisualizing Web Data Query Results
Visualizing Web Data Query Results
 
WWW2012 Tutorial Visualizing SPARQL Queries
WWW2012 Tutorial Visualizing SPARQL QueriesWWW2012 Tutorial Visualizing SPARQL Queries
WWW2012 Tutorial Visualizing SPARQL Queries
 
Introduction to Property Graph Features (AskTOM Office Hours part 1)
Introduction to Property Graph Features (AskTOM Office Hours part 1) Introduction to Property Graph Features (AskTOM Office Hours part 1)
Introduction to Property Graph Features (AskTOM Office Hours part 1)
 
企业级软件的组件化和动态化开发实践
企业级软件的组件化和动态化开发实践企业级软件的组件化和动态化开发实践
企业级软件的组件化和动态化开发实践
 
3 rad extensibility-srilakshmi_s_rajesh_k
3 rad extensibility-srilakshmi_s_rajesh_k3 rad extensibility-srilakshmi_s_rajesh_k
3 rad extensibility-srilakshmi_s_rajesh_k
 
Rad Extensibility - Srilakshmi S Rajesh K
Rad Extensibility - Srilakshmi S Rajesh KRad Extensibility - Srilakshmi S Rajesh K
Rad Extensibility - Srilakshmi S Rajesh K
 
Cassandra Community Webinar: Apache Spark Analytics at The Weather Channel - ...
Cassandra Community Webinar: Apache Spark Analytics at The Weather Channel - ...Cassandra Community Webinar: Apache Spark Analytics at The Weather Channel - ...
Cassandra Community Webinar: Apache Spark Analytics at The Weather Channel - ...
 
Getting Started with Spring for GraphQL
Getting Started with Spring for GraphQLGetting Started with Spring for GraphQL
Getting Started with Spring for GraphQL
 

Más de geoknow

ESTA-LD exploring spatio-temporal linked statistical data
ESTA-LD exploring spatio-temporal linked statistical dataESTA-LD exploring spatio-temporal linked statistical data
ESTA-LD exploring spatio-temporal linked statistical datageoknow
 
The Linked Data Lifecycle
The Linked Data LifecycleThe Linked Data Lifecycle
The Linked Data Lifecyclegeoknow
 
Towards Transfer Learning of Link Specifications
Towards Transfer Learning of Link SpecificationsTowards Transfer Learning of Link Specifications
Towards Transfer Learning of Link Specificationsgeoknow
 
Can we crate better links playing games?
Can we crate better links playing games?Can we crate better links playing games?
Can we crate better links playing games?geoknow
 
LinkedGeoData and GeoKnow
LinkedGeoData and GeoKnowLinkedGeoData and GeoKnow
LinkedGeoData and GeoKnowgeoknow
 
LinkedGeodata (Deutsch)
LinkedGeodata (Deutsch)LinkedGeodata (Deutsch)
LinkedGeodata (Deutsch)geoknow
 
Geo know general presentation 2013
Geo know general presentation 2013Geo know general presentation 2013
Geo know general presentation 2013geoknow
 
Geo know odw13-presentation
Geo know odw13-presentationGeo know odw13-presentation
Geo know odw13-presentationgeoknow
 

Más de geoknow (8)

ESTA-LD exploring spatio-temporal linked statistical data
ESTA-LD exploring spatio-temporal linked statistical dataESTA-LD exploring spatio-temporal linked statistical data
ESTA-LD exploring spatio-temporal linked statistical data
 
The Linked Data Lifecycle
The Linked Data LifecycleThe Linked Data Lifecycle
The Linked Data Lifecycle
 
Towards Transfer Learning of Link Specifications
Towards Transfer Learning of Link SpecificationsTowards Transfer Learning of Link Specifications
Towards Transfer Learning of Link Specifications
 
Can we crate better links playing games?
Can we crate better links playing games?Can we crate better links playing games?
Can we crate better links playing games?
 
LinkedGeoData and GeoKnow
LinkedGeoData and GeoKnowLinkedGeoData and GeoKnow
LinkedGeoData and GeoKnow
 
LinkedGeodata (Deutsch)
LinkedGeodata (Deutsch)LinkedGeodata (Deutsch)
LinkedGeodata (Deutsch)
 
Geo know general presentation 2013
Geo know general presentation 2013Geo know general presentation 2013
Geo know general presentation 2013
 
Geo know odw13-presentation
Geo know odw13-presentationGeo know odw13-presentation
Geo know odw13-presentation
 

Último

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusZilliz
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 

Último (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 

Facete - Exploring the web of spatial data with facete

  • 1. Creating Knowledge out of Interlinked Data LOD2 Presentation . 02.09.2010 . Page Facete Claus Stadler 2015.09.15 GeoLD Workshop Exploring the spatial Web of Data with
  • 2. 2 Facete A faceted browser for the Web of Data AgendaAgenda ● MotivationMotivation ● Screenshot of FaceteScreenshot of Facete ● New FeaturesNew Features ● ArchitectureArchitecture ● JassaJassa ● Jassa-UIJassa-UI ● DemoDemo
  • 4. 4 Facete Motivation The LinkedGeoData BrowserThe LinkedGeoData Browser ● ““Naive SPARQL-based” browserNaive SPARQL-based” browser ● Cannot handle large amount of geometriesCannot handle large amount of geometries ● Cannot handle large amounts of featuresCannot handle large amounts of features ● Can only filter by classesCan only filter by classes ● Can only show direct properties of resourcesCan only show direct properties of resources ● Only works for WGS84Only works for WGS84 ● No internationalizationNo internationalization
  • 5. 5 Facete A faceted browser for the Web of Data Screenshot of the ApplicationScreenshot of the Application
  • 6. 6 Facete New features Integrated Dataset CatalogIntegrated Dataset Catalog
  • 8. 8 Application Container (Tomcat, Jetty, ...) Facete Architecture ArchitectureArchitecture Facete Sparql Query Cache Client (Browser) Server Remote Sparql Endpoints Config Concept Property Path Finder Spring Batch Sparql Exporter Spring Batch Join Summaries Facete Jassa Library Jassa UI Library Application Logic EDIT
  • 9. RDF Editing on the Web 1. Annotate your HTML 3. Get live feeback of the RDF and changes 2. Interact with your pre-filled form Claus Stadler, Natanael Arndt, Michael Martin and Jens Lehmann <div rex-subject=”dbr:Vienna” rex-predicate=”geo:geometry”> <rdf-term-input ng-model=”wkt” rex-value=”wkt” /> <geometry-input ng-model=”wkt” rex-literal /> </div> bower install jassa-ui-angular-edit https://github.com/GeoKnow/Jassa-UI-Angular
  • 10. 10 Facete Architecture Edit WorkflowEdit Workflow Facete Sparql Cache Client (Browser) Server Remote Sparql Endpoints Facete UI Component Reset form to pristine Invalidate server side cache Invalidate client side cache Create a new SparqlService object will refresh client components and edit forms Sparql Service UI Component RDF Editor Sparql Cache Sparql Service https://github.com/GeoKnow/DataDrivenDependencyInjection-Angular
  • 11. 11 Facete A faceted browser for the Web of Data The JAvascript Suite for Sparql Access (Jassa) LibraryThe JAvascript Suite for Sparql Access (Jassa) Library rdf rdf.Node, rdf.NodeFactory rdf.Tripel, rdf.Graph rdf.vocab.rdf.*, rdf.vocab.rdfs.* sparql.Element* sparql.Expr* sparql.Concept RDF core classes and vocabs SPARQL syntax classes service SPARQL service classes service.SparqlServiceHttp service.SparqlServiceCache service.ResultSet Purpose Module Excerpt of important Classes sparql depends on depends on sparqlService = new service.SparqlServiceHttp('http://dbpedia.org/sparql' ['http://dbpedia.org']); sparqlService = new service.SparqlServiceCache(sparqlService); sparqlService = new service.SparqlServiceVirtFix(sparqlService); sparqlService = new service.SparqlServicePaginate(sparqlService, 1000); sparqlService = new service.SparqlServicePageExpand(sparqlService, 100); var qe = sparqlService.createQueryExecution('Select * { ?s ?p ?o } Limit 10' qe.setTimeout(5000); qe.execSelect().then(function(rs) { while(rs.hasNext()) { /* ... */ } });
  • 12. 12 Facete A faceted browser for the Web of Data The JAvascript Suite for Sparql Access (Jassa) LibraryThe JAvascript Suite for Sparql Access (Jassa) Library sponate sponate.Map sponate.StoreFacade facete SPARQL result set to JSON document mapper Supports regex search, limit, offset, counting, … on virtual JS documents rather than raw result set rows facete.FacetConfig facete.FacetService facete.FacetTreeConfig facete.FacetTreeService service SPARQL service classes service.SparqlServiceHttp service.SparqlServiceCache service.ResultSet Purpose Module Excerpt of important Classes depends on depends on depends on Faceted Search module Supports nested facets; regex search, pagination for both facets and facet values
  • 13. 13 Facete Jassa-UI Jassa-UI - User Interface ComponentsJassa-UI - User Interface Components
  • 15. 15 Facete Achievements IssuesIssues ● Cannot handle large amounts of geometries ● Large amounts of Geometries supported viaLarge amounts of Geometries supported via client side Sparql-based clustering using bounding boxesclient side Sparql-based clustering using bounding boxes ● Cannot handle large amounts of features ● Intensional description of the set of resources matchingIntensional description of the set of resources matching the facet constraints enables paginationthe facet constraints enables pagination ● Can only filter by classes ● Can filter by values of any propertyCan filter by values of any property
  • 16. 16 Facete Achievements IssuesIssues ● Can only show direct properties of resources ● Can show values of indirectly related (inverse) propertiesCan show values of indirectly related (inverse) properties ● Only works for WGS84 ● Geometry Literals (GeoSPARQL / Virtuoso), WGS84, GeoRSSGeometry Literals (GeoSPARQL / Virtuoso), WGS84, GeoRSS ● Indirection supportedIndirection supported ● No internationalization ● Preferred languages and labelPreferred languages and label properties supported via Sponateproperties supported via Sponate
  • 18. 18 Facete Demo The EndThe End Thank You!Thank You! Questions?Questions?
  • 19. 19 Facete Links Related LinksRelated Links ● http://facete.aksw.org/http://facete.aksw.org/ ● https://github.com/GeoKnow/Facete2https://github.com/GeoKnow/Facete2 JavaScript ComponentsJavaScript Components ● https://github.com/GeoKnow/Jassahttps://github.com/GeoKnow/Jassa ● https://github.com/GeoKnow/Jassa-UI-Angularhttps://github.com/GeoKnow/Jassa-UI-Angular Java ComponentsJava Components ● https://github.com/AKSW/jena-sparql-apihttps://github.com/AKSW/jena-sparql-api
  • 20. 20 Facete Property Path Finding Concept Property Path Finding (Sketch)Concept Property Path Finding (Sketch) ({?s a Project}, ?s) ({?s long ?x ; lat ?y}, ?s) Create a graph where each node corresponds to a property, and each edge corresponds to a connection between these properties
  • 21. 21 Facete Motivation Jassa – Faceted Browsing Module (Facete-Module)Jassa – Faceted Browsing Module (Facete-Module) var facetConfig = new facete.FacetConfig(); var constraintPath = facete.Path.parse('http://www.w3.org/1999/02/22- rdf-syntax-ns#type'); facetConfig.getConstraintManager().addConstraint( new facete.ConstraintEquals(constraintPath, rdf.NodeFactory.createUri('http://fp7- pp.publicdata.eu/ontology/Project'))); var facetValueService = new facete.FacetValueService(sparqlService, facetConfig, 5000000); var path = facete.Path.parse('http://fp7- pp.publicdata.eu/ontology/funding http://fp7- pp.publicdata.eu/ontology/partner http://fp7- pp.publicdata.eu/ontology/address http://fp7- pp.publicdata.eu/ontology/country'); facetValueService.prepareListService(path).then(function(ls) { ls.fetchItems().then(function(items) { /* … */ }); });
  • 22. 22 Facete Motivation Jassa – Sparql To JavaScript Mapper (Sponate)Jassa – Sparql To JavaScript Mapper (Sponate) ● Inspired by SParql + jsON + hibernATEInspired by SParql + jsON + hibernATE store = new sponate.StoreFacade(sparqlService, { 'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#' /* ... */ }); store.addMap({ name: 'castles', template: [{ id: '?s', displayLabel: { $ref: { target: 'labels', attr: 'displayLabel' }} }], from: '?s a dbpedia-owl:Castle' }); store.addMap({ name: 'labels', template: [{ id: '?s', displayLabel: new AggBestLabel('s', 'p', 'o', ['en', 'de', ''], ['skos:prefLabel', 'rdfs:label', 'doap:name']), hiddenLabels: ['?o'] }], from: '?s ?p ?o . Filter(?p In (skos:prefLabel, rdfs:label, doap:name))' }); store.castles.find().limit(10).list().then(function(castles) { /* ... */ });