next
previous
items

Data table via SPARQL

Air pollution damage costs by snap sector

Data table via SPARQL Published 10 Nov 2014 Last modified 01 Feb 2016

Download this dataset

Dataset preview

(Live Query)

snap_name low high
"Energy" "205080"^^<http://www.w3.org/2001/XMLSchema#decimal> "663759"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Production processes" "81738"^^<http://www.w3.org/2001/XMLSchema#decimal> "261243"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Manufacturing - combustion" "26054"^^<http://www.w3.org/2001/XMLSchema#decimal> "81664"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Agriculture" "4123"^^<http://www.w3.org/2001/XMLSchema#decimal> "20931"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Waste" "3780"^^<http://www.w3.org/2001/XMLSchema#decimal> "13915"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Solvent use" "3295"^^<http://www.w3.org/2001/XMLSchema#decimal> "10231"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Fossil fuel extraction, processing" "323"^^<http://www.w3.org/2001/XMLSchema#decimal> "959"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 7 rows in 0.001 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/air-pollution-damage-costs-by-snap-sector/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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX tableFile: <http://semantic.eea.europa.eu/project/cost_from_industrial_facilities/cost_industrial_facilities_09_2014.tsv#>
PREFIX geo: <http://rdfdata.eionet.europa.eu/eea/countries/>

SELECT DISTINCT
?snap_name 
sum(?low) as ?low 
sum(?high) as ?high 
WHERE {
  { 
  GRAPH <http://semantic.eea.europa.eu/project/cost_from_industrial_facilities/cost_industrial_facilities_09_2014.tsv> 
    {
      _:cost_industrial_facilities tableFile:rank ?rank .
      _:cost_industrial_facilities tableFile:facilityId ?facilityId .
      _:cost_industrial_facilities tableFile:facility ?facility .
      _:cost_industrial_facilities tableFile:city ?city .
      _:cost_industrial_facilities tableFile:country ?country_code .
      _:cost_industrial_facilities tableFile:activity_code ?activity_code .
      _:cost_industrial_facilities tableFile:activity_name ?activity_name .
      _:cost_industrial_facilities tableFile:low ?low .
      _:cost_industrial_facilities tableFile:high ?high .
      _:cost_industrial_facilities tableFile:snap_code ?snap_code .
      _:cost_industrial_facilities tableFile:snap_name ?snap_name .
    }
  }
}
GROUP BY ?snap_name 
ORDER BY DESC(sum(?low))


Permalinks

Document Actions