Thesauri

Linked ISPRA broadly uses controlled thesauri and vocabularies used by its different departments to classify resources. In this section you can download them using the predefined SPARQL query.

Vocabularies for Bathing water

  • Vocabulary of bathing water zone types
    IRI: https://w3id.org/italia/env/vocab/bathing_waters/bodies
    download
  • Vocabulary of bathing water quality
    IRI: https://w3id.org/italia/env/vocab/bathing_waters/quality
    download

 
Vocabularies for Data Buoy and Tide Gauge Networks

  • Vocabulary for data validation level of the national data buoy network
    IRI: https://w3id.org/italia/env/vocab/observations/certainty
    download
  • Vocabulary of types of measure stations
    IRI: https://w3id.org/italia/env/vocab/platforms/datastation_types
    download
  • Vocabulary of operational status
    IRI: https://w3id.org/italia/env/vocab/platforms/operational_status
    download

 
Vocabularies for the classification of hydrogeological instabilities and soil protection works – rendis data bank

  • Vocabulary of types of hydrogeological instability
    IRI: https://w3id.org/italia/env/ld/skos/ihi/instabilitytype/vocabolario
    download
  • Vocabulary of types of lithology
    IRI: https://w3id.org/italia/env/ld/skos/ihi/lithologytype/vocabolario
    download
  • Vocabulary of types of procedure
    IRI: https://w3id.org/italia/env/ld/skos/ihi/itertype/vocabolario
    download
  • Vocabulary of types of procedure steps
    IRI: https://w3id.org/italia/env/ld/skos/ihi/steptype/vocabolario
    download
  • Vocabulary of types of works
    IRI: https://w3id.org/italia/env/ld/skos/ihi/repairtype/vocabolario
    download
  • Vocabulary of economic indicators of hydrogeological instabilities
    IRI: https://w3id.org/italia/env/ld/skos/ihi/vocabolario
    download

 
Vocabulary for the classification of land consumption indicators

  • Vocabulary of land consumption indicators
    IRI: https://w3id.org/italia/env/vocab/soilc/indicators (eventually publishable)
    download

Examples of Query

To generate download files, the following query on SPARQL endpoint was executed (IRI_OF_THESAURO shall be substituted with the related IRI)

CONSTRUCT {?s ?p ?o}
WHERE {
 {?s ?p ?o . FILTER(?s = <IRI_OF_THESAURO>)}
 UNION
 {?s ?p ?o . ?s <http://www.w3.org/2004/02/skos/core#inScheme> <IRI_OF_THESAURO>}
}

To generate download file of the land consumption indicators Vocabulary (possibly publishable), the following query on SPARQL endpoint was executed

PREFIX ispra-top: <https://w3id.org/italia/env/onto/top/>
PREFIX dcterms: <http://purl.org/dc/terms/>

CONSTRUCT 
{
<https://w3id.org/italia/env/vocab/soilc/indicators> a skos:ConceptScheme ;
  a skos:ConceptScheme ;
  dcterms:title "Vocabolario degli indicatori di consumo suolo"@it, "Vocabulary of land consumption indicators"@en ;
  rdfs:label "Vocabolario degli indicatori di consumo suolo"@it, "Vocabulary of land consumption indicators"@en ;
  dcterms:description "Vocabolario degli indicatori di consumo suolo (es. Percentuale di suolo consumato, Superficie di suolo non consumato in aree a pericolosità idraulica, ...)"@it, "Vocabulary of land consumption indicators (e.g. Consumed land in %, Not consumed land in flood hazard zones, ...)"@en ;
  rdfs:comment "Vocabolario degli indicatori di consumo suolo (es. Percentuale di suolo consumato, Superficie di suolo non consumato in aree a pericolosità idraulica, ...)"@it, "Vocabulary of land consumption indicators (e.g. Consumed land in %,Not consumed land in flood hazard zones, ...)"@en ;
  dcterms:language <http://publications.europa.eu/resource/authority/language/ITA>, <http://publications.europa.eu/resource/authority/language/ENG> ;
  dcterms:issued "2023-03-03"^^xsd:date .


?s a skos:Concept;
  skos:inScheme <https://w3id.org/italia/env/vocab/soilc/indicators> ;
  dcterms:identifier ?id;
  skos:broader ?broader;
  skos:prefLabel ?label;
  skos:definition ?description .
}
WHERE 
{
?s  a ispra-top:Parameter;
  ispra-top:identifier ?identifier;
  rdfs:label ?label .
OPTIONAL { ?s   dcterms:description ?description . }
OPTIONAL { ?s ispra-top:hasBroader ?broader . }
FILTER(SUBSTR(str(?identifier), 1, 5) = "soilc")
BIND(SUBSTR(?identifier, 7) AS ?id)
}