Land Consumption

Land consumption in Italy

An overall knowledge of land consumption in our country is available thanks to the data provided by the national land consumption maps, developed by ISPRA in collaboration with the Environmental Protection Agencies of the Italian Regions and Autonomous Provinces. Currently, this system allows to recreate the trend of land consumption in Italy since 2012 up to now.

The national monitoring of land consumption ensures the availability of high accuracy thematic maps and quantitative estimates over the whole territory and could be integrated with other high resolution cartographic sources to derive several indicators.

ISPRA national map of land consumption can assure land consumption monitoring also at a local scale (e.g.: municipalities). Land consumption maps at 10m resolution are available for 2012, and are produced yearly since 2015. These data, and the indicators derived from them, are published here in RDF and on SINANET in table format.

This investigation is currently integrated with other cartographies necessary to ensure both its validation and a greater and more consistent data spatialization, thus directly and actively participating, in particular, in the Copernicus initiative, which in the latest years allowed to achieve cartographies that are extremely more detailed than those ones provided by the Corine Land Cover previously used.

At national level the maps and derived indicators are the official landmark for statistical information derived from land consumption monitoring. ISPRA’s investigation is the more significant data collection at national level that recreates the trend of land consumption in Italy since the ‘50s up to now. The survey method developed, the only one specifically dedicated to land consumption, can integrate the different data sources with Earth observation data at European level, using cartographic and aerial photogrammetric analyses.

For further details:

Section dedicated to land Consumption

Report on land Consumption in Italy

consumosuolo@isprambiente.it

WHAT DOES IT INCLUDE?
  • For each location (region/province/municipality) collection of land consumption indicators associated to the reference year
  • Each particular indicator is defined in the land consumption vocabulary (in SKOS format)

EXAMPLE OF QUERY

[execute query] – The first 100 municipalities as percentage of land consumption in 2021 (indicator CSUOLO4)

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX ispra-top: <https://w3id.org/italia/env/onto/top/>   
PREFIX ispra-plc: <https://w3id.org/italia/env/onto/place/>     
PREFIX ispra-emf: <https://w3id.org/italia/env/onto/inspire-mf/>   
PREFIX dsw: <http://purl.org/dsw/>
PREFIX dwc: <http://rs.tdwg.org/dwc/terms/>
PREFIX dwciri: <http://rs.tdwg.org/dwc/iri/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT  (SUBSTR(str(?year), 1, 4) AS ?anno) (str(?mundesc) AS ?comune) (str(?provdesc) AS ?provincia)  (str(?value) AS ?percentuale) ?URI
WHERE
{
### Define data interval and indicator
FILTER (?year = "2021"^^xsd:gYear)
?par ispra-top:identifier "soilc_CSUOLO4" .
###
FILTER (langMatches(lang(?indicator),"en"))
?mun a ispra-plc:Municipality;  
  rdfs:label ?mundesc;
  ispra-plc:istat ?lau_com;
  ispra-plc:hasDirectHigherRank ?prov .
?prov rdfs:label ?provdesc.
?c a ispra-top:Collection;
  ispra-top:isPartOf <https://w3id.org/italia/env/ld/soilc/dataset>;
  ispra-top:isCollectionOf ?mun .    
?ic a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?c.
?icc a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?ic;
  ispra-top:isParametrisedBy ?par .
?URI a ispra-emf:Indicator;
  rdfs:label ?indicator;
  ispra-top:isMemberOf ?icc;
  ispra-top:atTime ?yy;
  ispra-top:hasValue ?vv.
?yy ispra-top:year ?year.  
?vv ispra-top:value ?value.
}
ORDER by DESC(xsd:float(?value) ) LIMIT 100


[execute query]
 – The first 10 provinces as percentage of land consumption in 2021 (indicator CSUOLO4)

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX ispra-top: <https://w3id.org/italia/env/onto/top/>   
PREFIX ispra-plc: <https://w3id.org/italia/env/onto/place/>     
PREFIX ispra-emf: <https://w3id.org/italia/env/onto/inspire-mf/>   
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX clvapit: <https://w3id.org/italia/onto/CLV/>

SELECT DISTINCT  (SUBSTR(str(?year), 1, 4) AS ?anno)  (str(?provdesc) AS ?provincia)  (str(?value) AS ?percentuale) ?URI
WHERE
{
### Define data interval and indicator
FILTER (?year = "2021"^^xsd:gYear)
?par ispra-top:identifier "soilc_CSUOLO4" .
###
FILTER (langMatches(lang(?indicator),"en"))
?prov rdfs:label ?provdesc;
  clvapit:hasRankOrder "3" .
?c a ispra-top:Collection;
  ispra-top:isPartOf <https://w3id.org/italia/env/ld/soilc/dataset>;
  ispra-top:isCollectionOf ?prov.    
?ic a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?c.
?icc a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?ic;
  ispra-top:isParametrisedBy ?par .
?URI a ispra-emf:Indicator;
  rdfs:label ?indicator;
  ispra-top:isMemberOf ?icc;
  ispra-top:atTime ?yy;
  ispra-top:hasValue ?vv.
?yy ispra-top:year ?year.  
?vv ispra-top:value ?value.
}
ORDER by DESC(xsd:float(?value) ) LIMIT 10


[execute query]
 – Regions (all) as percentage of land consumption in 2021 (indicator CSUOLO4)

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX ispra-top: <https://w3id.org/italia/env/onto/top/>   
PREFIX ispra-plc: <https://w3id.org/italia/env/onto/place/>     
PREFIX ispra-emf: <https://w3id.org/italia/env/onto/inspire-mf/>   
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX clvapit: <https://w3id.org/italia/onto/CLV/>

SELECT DISTINCT  (SUBSTR(str(?year), 1, 4) AS ?anno)  (str(?regdesc) AS ?regione)  (str(?value) AS ?percentuale) ?URI
WHERE
{
### Define data interval and indicator
FILTER (?year = "2021"^^xsd:gYear)
?par ispra-top:identifier "soilc_CSUOLO4" .
###
FILTER (langMatches(lang(?indicator),"en"))
?reg rdfs:label ?regdesc;
  a ispra-plc:Region;
  clvapit:hasRankOrder "2" .
?c a ispra-top:Collection;
  ispra-top:isPartOf <https://w3id.org/italia/env/ld/soilc/dataset>;
  ispra-top:isCollectionOf ?reg.    
?ic a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?c.
?icc a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?ic;
  ispra-top:isParametrisedBy ?par .
?URI a ispra-emf:Indicator;
  rdfs:label ?indicator;
  ispra-top:isMemberOf ?icc;
  ispra-top:atTime ?yy;
  ispra-top:hasValue ?vv.
?yy ispra-top:year ?year.  
?vv ispra-top:value ?value.
}
ORDER by DESC(xsd:float(?value))


[execute query]
 – The first 100 municipalities for hectares of land consumption in 2021 (indicator CSUOLO1)

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX ispra-top: <https://w3id.org/italia/env/onto/top/>   
PREFIX ispra-plc: <https://w3id.org/italia/env/onto/place/>     
PREFIX ispra-emf: <https://w3id.org/italia/env/onto/inspire-mf/>   
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT  (SUBSTR(str(?year), 1, 4) AS ?year) (str(?mundesc) AS ?municipality) (str(?provdesc) AS ?province)  (str(?value) AS ?value) (str(?umdesc) AS ?unitofmeasure) ?URI 
WHERE
{
### Define data interval and indicator
FILTER (?year = "2021"^^xsd:gYear)
?par ispra-top:identifier "soilc_CSUOLO1" .
###
FILTER (langMatches(lang(?mundesc), "it"))
##FILTER (langMatches(lang(?provdesc), "it"))
FILTER (langMatches(lang(?umdesc), "en"))
##FILTER (langMatches(lang(?indicator), "it"))
?mun a ispra-plc:Municipality;  
  rdfs:label ?mundesc;
  ispra-plc:istat ?lau_com;
  ispra-plc:hasDirectHigherRank ?prov .
?prov rdfs:label ?provdesc.
?c a ispra-top:Collection;
  ispra-top:isPartOf <https://w3id.org/italia/env/ld/soilc/dataset>;
  ispra-top:isCollectionOf ?mun .    
?ic a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?c.
?icc a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?ic;
  ispra-top:isParametrisedBy ?par .
?URI a ispra-emf:Indicator;
  rdfs:label ?indicator;
  ispra-top:isMemberOf ?icc;
  ispra-top:atTime ?yy;
  ispra-top:hasValue ?vv.
?yy ispra-top:year ?year.  
?vv ispra-top:value ?value;
    ispra-top:hasUnitOfMeasure ?um.
?um rdfs:label ?umdesc
}
ORDER by DESC(xsd:float(?value) ) LIMIT 100


[execute query]
 – The first 10 provinces for hectares of land consumption in 2021 (indicator CSUOLO1)

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX ispra-top: <https://w3id.org/italia/env/onto/top/>   
PREFIX ispra-plc: <https://w3id.org/italia/env/onto/place/>     
PREFIX ispra-emf: <https://w3id.org/italia/env/onto/inspire-mf/>   
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX clvapit: <https://w3id.org/italia/onto/CLV/>

SELECT DISTINCT (SUBSTR(str(?year), 1, 4) AS ?year) (str(?provdesc) AS ?province) (str(?value) AS ?value) (str(?umdesc) AS ?unitofmeasure) ?URI
WHERE
{
### Define data interval and indicator
FILTER (?year = "2021"^^xsd:gYear)
?par ispra-top:identifier "soilc_CSUOLO1" .
###
##FILTER (langMatches(lang(?provdesc), "it"))
FILTER (langMatches(lang(?umdesc), "en"))
##FILTER (langMatches(lang(?indicator), "it"))
?prov rdfs:label ?provdesc;
  clvapit:hasRankOrder "3" .
?c a ispra-top:Collection;
  ispra-top:isPartOf <https://w3id.org/italia/env/ld/soilc/dataset>;
  ispra-top:isCollectionOf ?prov.    
?ic a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?c.
?icc a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?ic;
  ispra-top:isParametrisedBy ?par .
?URI a ispra-emf:Indicator;
  rdfs:label ?indicator;
  ispra-top:isMemberOf ?icc;
  ispra-top:atTime ?yy;
  ispra-top:hasValue ?vv.
?yy ispra-top:year ?year.  
?vv ispra-top:value ?value;
    ispra-top:hasUnitOfMeasure ?um.
?um rdfs:label ?umdesc
}
ORDER by DESC(xsd:float(?value) ) LIMIT 10


[execute query]
 – Regions (all) for hectares of land consumption in 2021 (indicator CSUOLO1)

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX ispra-top: <https://w3id.org/italia/env/onto/top/>   
PREFIX ispra-plc: <https://w3id.org/italia/env/onto/place/>     
PREFIX ispra-emf: <https://w3id.org/italia/env/onto/inspire-mf/>   
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX clvapit: <https://w3id.org/italia/onto/CLV/>

SELECT DISTINCT  (SUBSTR(str(?year), 1, 4) AS ?year)  (str(?regdesc) AS ?region)  (str(?value) AS ?value) (str(?umdesc) AS ?unitofmeasure) ?URI
WHERE
{
### Define data interval and indicator
FILTER (?year = "2021"^^xsd:gYear)
?par ispra-top:identifier "soilc_CSUOLO1" .
###
##FILTER (langMatches(lang(?provdesc), "it"))
FILTER (langMatches(lang(?umdesc), "en"))
##FILTER (langMatches(lang(?indicator), "it"))
?reg rdfs:label ?regdesc;
  a ispra-plc:Region;
  clvapit:hasRankOrder "2" .
?c a ispra-top:Collection;
  ispra-top:isPartOf <https://w3id.org/italia/env/ld/soilc/dataset>;
  ispra-top:isCollectionOf ?reg.    
?ic a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?c.
?icc a ispra-emf:IndicatorCollection;
  ispra-top:isPartOf ?ic;
  ispra-top:isParametrisedBy ?par .
?URI a ispra-emf:Indicator;
  rdfs:label ?indicator;
  ispra-top:isMemberOf ?icc;
  ispra-top:atTime ?yy;
  ispra-top:hasValue ?vv.
?yy ispra-top:year ?year.  
?vv ispra-top:value ?value;
    ispra-top:hasUnitOfMeasure ?um.
?um rdfs:label ?umdesc
}
ORDER by DESC(xsd:float(?value))

cds