Changes between Version 6 and Version 7 of proposals/DCATandRDFServices


Ignore:
Timestamp:
May 31, 2012, 8:23:50 AM (12 years ago)
Author:
fxp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • proposals/DCATandRDFServices

    v6 v7  
    467467}}}
    468468
    469 == Example of use of RDF outputs ==
     469== Using RDF outputs ==
    470470
    471471=== Visualization tools ===
     
    481481[[Image(rdf-visual-ex-by-inspire-themes.png)]]
    482482
     483=== SPARQL queries ===
     484
     485Once loaded in a SPARQL endpoint, the catalogue content could be queried using SPARQL:
     486
     487 * Get metadata titles
     488{{{
     489sparql select ?title where {?s <http://purl.org/dc/elements/1.1/title> ?title};
     490}}}
     491
     492 * Get metadata about transport network
     493{{{
     494sparql
     495PREFIX  dc: <http://purl.org/dc/elements/1.1/>
     496PREFIX  dcat: <http://www.w3.org/ns/dcat#>
     497PREFIX  skos: <http://www.w3.org/2004/02/skos/core#>
     498SELECT  ?title, ?label
     499WHERE   { ?x dc:title ?title .
     500          ?x dcat:theme ?theme .
     501          ?theme skos:prefLabel ?label
     502          FILTER(?label = "Transport network")
     503        };
     504}}}
    483505
    484506== Risks ==