next
previous
items

Data table via SPARQL

Share of the total volume of water used for irrigation to the total crop water needs of all crops for different European countries

Data table via SPARQL Published 02 Sep 2014 Last modified 19 Apr 2016

Download this dataset

Dataset preview

(Live Query)

ugeo water_needs volume_water_used index
"AT" "15167500"^^<http://www.w3.org/2001/XMLSchema#decimal> "18316230"^^<http://www.w3.org/2001/XMLSchema#decimal> "12.1"^^<http://www.w3.org/2001/XMLSchema#decimal>
"BE" "13449500"^^<http://www.w3.org/2001/XMLSchema#decimal> "" ""
"BG" "59819500"^^<http://www.w3.org/2001/XMLSchema#decimal> "327160979"^^<http://www.w3.org/2001/XMLSchema#decimal> "54.7"^^<http://www.w3.org/2001/XMLSchema#decimal>
"CH" "14957000"^^<http://www.w3.org/2001/XMLSchema#decimal> "589310780"^^<http://www.w3.org/2001/XMLSchema#decimal> "394"^^<http://www.w3.org/2001/XMLSchema#decimal>
"CY" "21354500"^^<http://www.w3.org/2001/XMLSchema#decimal> "91509600"^^<http://www.w3.org/2001/XMLSchema#decimal> "42.9"^^<http://www.w3.org/2001/XMLSchema#decimal>
"CZ" "8676000"^^<http://www.w3.org/2001/XMLSchema#decimal> "11146900"^^<http://www.w3.org/2001/XMLSchema#decimal> "12.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"DE" "208640000"^^<http://www.w3.org/2001/XMLSchema#decimal> "293373760"^^<http://www.w3.org/2001/XMLSchema#decimal> "14.1"^^<http://www.w3.org/2001/XMLSchema#decimal>
"DK" "175466500"^^<http://www.w3.org/2001/XMLSchema#decimal> "219246000"^^<http://www.w3.org/2001/XMLSchema#decimal> "12.5"^^<http://www.w3.org/2001/XMLSchema#decimal>
"EE" "154500"^^<http://www.w3.org/2001/XMLSchema#decimal> "60210"^^<http://www.w3.org/2001/XMLSchema#decimal> "3.9"^^<http://www.w3.org/2001/XMLSchema#decimal>
"EL" "633240500"^^<http://www.w3.org/2001/XMLSchema#decimal> "3896682810"^^<http://www.w3.org/2001/XMLSchema#decimal> "61.5"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 26 rows in 0.033 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/share-of-the-total-volume/daviz.json

For system integrators

The following info can be used by a system developer / database administrator in order to retrieve this dataset programmatically over the web using a SPARQL client.

Are you new to Linked Data technology? visit http://linkeddata.org



semantic.eea.europa.eu/sparql

PREFIX sdmx-measure: <http://purl.org/linked-data/sdmx/2009/measure#> 
PREFIX sdmx-dimension: <http://purl.org/linked-data/sdmx/2009/dimension#> 
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX u: <http://rdfdata.eionet.europa.eu/eurostat/dic/unit#> 
PREFIX nutrient: <http://rdfdata.eionet.europa.eu/eurostat/dic/nutrient#> 
PREFIX indic_ag: <http://dd.eionet.europa.eu/vocabulary/eurostat/indic_ag/> 
PREFIX itm_newa: <http://dd.eionet.europa.eu/vocabulary/eurostat/itm_newa/> 
PREFIX indic_ef: <http://dd.eionet.europa.eu/vocabulary/eurostat/indic_ef/> 
PREFIX irrig: <http://dd.eionet.europa.eu/vocabulary/eurostat/irrig/> 
PREFIX agrarea: <http://dd.eionet.europa.eu/vocabulary/eurostat/agrarea/> 
PREFIX tableFile: <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/irrigation_water_use_coefficient_2010.txt#> 
PREFIX geo: <http://rdfdata.eionet.europa.eu/eurostat/dic/geo#> 
PREFIX fao_irrigation: <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/WREI004/2014/fao_irrigation.txt#> 

SELECT
?ugeo
sum(?water_needs) as ?water_needs
sum(?volume_water_used) as ?volume_water_used
round(sum(?volume_water_used)/sum(?water_needs)*100)/10.0 as ?index
{{
SELECT DISTINCT
?ugeo
?geo 
?indic_ef
sum(?ef_poirrig) as ?ef_poirrig
sum(?value) as ?value
?water_use_coefficient
sum(?ef_poirrig)*sum(?value) as ?water_needs
sum(?ef_poirrig_water_used) as ?ef_poirrig_water_used
sum(?ef_poirrig_water_used)*?water_use_coefficient as ?volume_water_used

WHERE {{ 
    {
   GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/ef_poirrig.rdf.gz>  {  
      _:ef_poirrig sdmx-dimension:timePeriod ?date .
      _:ef_poirrig property:geo ?geo .
      _:ef_poirrig property:irrig irrig:TOTAL .
      {
        _:ef_poirrig property:indic_ef ?indic_ef . FILTER (?indic_ef in (indic_ef:M_8_1_2_1_HA, indic_ef:M_8_1_2_2_HA, indic_ef:M_8_1_2_3_HA, indic_ef:M_8_1_2_4_HA, indic_ef:M_8_1_2_5_HA, indic_ef:M_8_1_2_6_HA, indic_ef:M_8_1_2_7_HA, indic_ef:M_8_1_2_8_HA, indic_ef:M_8_1_2_9_HA,
indic_ef:M_8_1_2_10_HA, indic_ef:M_8_1_2_11_HA, indic_ef:M_8_1_2_12_HA, indic_ef:M_8_1_2_13_HA, indic_ef:M_8_1_2_14_HA, indic_ef:M_8_1_2_15_HA, indic_ef:M_8_1_2_16_HA))
        _:ef_poirrig sdmx-measure:obsValue ?ef_poirrig .
      } UNION {
        _:ef_poirrig property:indic_ef indic_ef:M_8_4_M3 . 
        _:ef_poirrig sdmx-measure:obsValue ?ef_poirrig_water_used .
      }
    }
  } UNION {
    GRAPH <http://semantic.eea.europa.eu/project/indicators/gap_filling_data/WREI004/2014/fao_irrigation.txt>  {  
      _:fao_irrigation fao_irrigation:date ?date .
      _:fao_irrigation fao_irrigation:crop ?crop .
      _:fao_irrigation fao_irrigation:estat_crop ?estat_crop .
      _:fao_irrigation fao_irrigation:indic_ef ?indic_ef .
      _:fao_irrigation fao_irrigation:value ?value .
    }
  }
  ?fao_geo tableFile:geo ?ugeo .
  ?fao_geo tableFile:irrigation_water_use_coefficient ?water_use_coefficient .
  ?geo skos:notation ?ugeo .
  ?geo skos:inScheme <http://rdfdata.eionet.europa.eu/eurostat/dic/geo>
#FILTER (?geo = geo:BG)
FILTER (year(?date) in (2010))
}}
group by ?geo ?ugeo ?indic_ef ?water_use_coefficient
}}
GROUP BY ?ugeo 
HAVING sum(?water_needs) > 0
order by ?ugeo


Permalinks

Document Actions