next
previous
items

Data table via SPARQL

SERIS reports

Data table via SPARQL Published 11 Jul 2013 Last modified 11 Jan 2023

Download this dataset

Dataset preview

(Live Query)

report_uri title geocoverage year_issued publisher description url
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/515/> "Key Figures on Climate France and Worldwide 2013 Edition"@en "France" "2013" "Commissariat g\u00e9n\u00e9ral au d\u00e9veloppement durable - Service de l'observation et des statistiques" "" "http://www.statistiques.developpement-durable.gouv.fr/publications/p/1942/1072/chiffres-cles-climat-france-monde-edition-2013.html"
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/517/> "National Sustainable Development Strategy Indicators 2010-2013"@en "France" "2013" "Commissariat g\u00e9n\u00e9ral au d\u00e9veloppement durable - Service de l'observation et des statistiques" "" "http://www.statistiques.developpement-durable.gouv.fr/publications/p/2040/1329/indicateurs-strategie-nationale-developpement-durable-2010-2.html"
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/366/> "MIRA Indicator Report 2012"@en "Belgium" "2013" "Flemish Environment Agency (VMM)" "" "http://www.milieurapport.be/nl/publicaties/mira-indicatorrapport-2012/"
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/525/> "Key Indicators of the Walloon Environment 2012"@en "Belgium" "2013" "Direction g\u00e9n\u00e9rale op\u00e9rationnelle de l\u2019Agriculture, des Ressources naturelles et de l\u2019Environnement - Cellule de l'Etat de l'Environnement" "Report type: National SoE report\u000d\nSource URL: http://etat.environnement.wallonie.be/" "http://etat.environnement.wallonie.be/index.php?page=icew-2012"
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/529/> "Flanders - MIRA online indicator set"@en "Belgium" "2013" "Flemish Environment Agency - Vlaamse Milieumaatschappij (VMM)" "" "http://www.milieurapport.be/nl/feitencijfers/"
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/297/> "Flanders - Biodiversity Indicators portal"@en "Belgium" "2013" "Research Institute for Nature and Forest (INBO)" "" "http://www.natuurindicatoren.be/"
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/113/> "Portugal State of the Environment Report 2012"@en "Portugal" "2012" "Ag\u00eancia Portuguesa do Ambiente, I.P." "This report is the essential tool for supporting the design, implementation and evaluation of environmental policy, assuming a central role in assessing and reporting environmental performance of the country. In 2012 the main topics covered by the SoER are: water, climate change, air, waste, soil and biodiverdity, noise and hazards. \u000d\nReport type: National SoE report\u000d\nSource URL: http://www.apambiente.pt/" "http://sniamb.apambiente.pt/docs/REA/rea2012.pdf"
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/505/> "State of Environment Report for Turkey for 2011"@en "Turkey" "2012" "Ministry of Environment and Urbanisation" "" "http://www.csb.gov.tr/turkce/dosya/ced/TCDR_2011.pdf"
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/364/> "Indicator Report 2011"@en "Belgium" "2012" "Flemish Environment Agency (VMM)" "" "http://www.milieurapport.be/nl/publicaties/mira-indicatorrapport-2011/"
<http://forum.eionet.europa.eu/nrc-state-environment/seris/reports/211/> "National Plan for the Protection of Ambient Air"@en "Former Yugoslav Republic of Macedonia" "2012" "" "Report type: Other\nSource URL: www.moepp.gov.mk" "http://airquality.moepp.gov.mk/airquality/wp-content/uploads/2012/10/NPAAP-final.pdf"

Received 147 rows in 0.006 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/eionet/data/local-sparql-queries/seris-reports/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



http://semantic.eea.europa.eu/sparql

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX cr: <http://cr.eionet.europa.eu/ontologies/contreg.rdf#>
PREFIX seris:<http://forum.eionet.europa.eu/nrc-state-environment/seris/ontology/schema#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX bibtex: <http://purl.org/net/nknouf/ns/bibtex#>

SELECT * WHERE {
  ?report_uri a seris:SERISReport;
            dc:title ?title.
            OPTIONAL {?report_uri dc:coverage ?geocoverage}
            OPTIONAL {?report_uri dcterms:issued ?year_issued}
            OPTIONAL {?report_uri dc:publisher ?publisher}
            OPTIONAL {?report_uri dcterms:description ?description}
            OPTIONAL {?report_uri bibtex:hasURL ?url} 
            FILTER(langMatches(lang(?title), "EN"))
} ORDER BY DESC(?year_issued)

Error when running query:

Error. Traceback (most recent call last):
  File "/plone/buildout-cache/eggs/Products.ZSPARQLMethod-2.3-py2.7.egg/Products/ZSPARQLMethod/Method.py", line 287, in run_with_timeout
    ret = func(*args, **kwargs)
  File "/plone/buildout-cache/eggs/Products.ZSPARQLMethod-2.3-py2.7.egg/Products/ZSPARQLMethod/Method.py", line 215, in query_and_get_result
    result = sparql.query(*args, timeout = kwargs.get("timeout", 0) or 0)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 747, in query
    return s.query(query, timeout, raw=raw)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 416, in query
    return q.query(query, timeout, raw=raw)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 571, in query
    response = self._request(statement, timeout)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 561, in _request
    response = self._build_response(query, opener, buf, timeout)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 543, in _build_response
    timeout if timeout > 0 else None)
  File "/plone/buildout-cache/eggs/sparql_client-3.8-py2.7.egg/sparql.py", line 514, in _get_response
    response = opener.open(request, timeout=timeout)
  File "/usr/local/lib/python2.7/urllib2.py", line 435, in open
    response = meth(req, response)
  File "/usr/local/lib/python2.7/urllib2.py", line 548, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/local/lib/python2.7/urllib2.py", line 473, in error
    return self._call_chain(*args)
  File "/usr/local/lib/python2.7/urllib2.py", line 407, in _call_chain
    result = func(*args)
  File "/usr/local/lib/python2.7/urllib2.py", line 556, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 500: 


Permalinks

Document Actions