SlideShare a Scribd company logo
1 of 22
Download to read offline
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) {
/* ... */
});

More Related Content

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

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

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

Recently uploaded

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
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
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 

Recently uploaded (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
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...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 

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) { /* ... */ });