next
previous
items

Data table via SPARQL

Air pollution damage costs by country

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

Download this dataset

Dataset preview

(Live Query)

country low high
"Austria" "2882"^^<http://www.w3.org/2001/XMLSchema#decimal> "10015"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Belgium" "9571"^^<http://www.w3.org/2001/XMLSchema#decimal> "30939"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Bulgaria" "16287"^^<http://www.w3.org/2001/XMLSchema#decimal> "52472"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Cyprus" "367"^^<http://www.w3.org/2001/XMLSchema#decimal> "1258"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Czech Republic" "14760"^^<http://www.w3.org/2001/XMLSchema#decimal> "46712"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Denmark" "1471"^^<http://www.w3.org/2001/XMLSchema#decimal> "5306"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Estonia" "2315"^^<http://www.w3.org/2001/XMLSchema#decimal> "7085"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Finland" "3810"^^<http://www.w3.org/2001/XMLSchema#decimal> "13962"^^<http://www.w3.org/2001/XMLSchema#decimal>
"France" "26051"^^<http://www.w3.org/2001/XMLSchema#decimal> "81170"^^<http://www.w3.org/2001/XMLSchema#decimal>
"Germany" "56112"^^<http://www.w3.org/2001/XMLSchema#decimal> "190282"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 29 rows in 0.071 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/air-pollution-damage-costs-by-country/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
?country
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 .
      _: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 ?country
ORDER BY ?country


Permalinks

Document Actions