Project

General

Profile

Actions

EEAKeywords Query

To update the list of keywords in https://taskman.eionet.europa.eu/projects/public-docs/wiki/Catalogueeea_keywords it is necessary to apply the following query on https://semantic.eea.europa.eu/sparql

PREFIX dct: <http://purl.org/dc/terms/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT lcase(?label) 
WHERE {
 ?sub dct:subject ?label . 
 FILTER(isLiteral(?label))
 OPTIONAL {
  GRAPH <http://glossary.eea.europa.eu/EEAGlossary/skos.rdf?fromidx=0&toidx=10000> {
     ?glossaryuri rdfs:label ?label
  }
 }
} ORDER BY ?label

Updated by Jose Rubio about 1 year ago · 1 revisions

Go to top