Articles-2018

Download this dataset

Dataset preview

(Live Query)

No results were found.


https://industry.eea.europa.eu/api/sparql/articles-2018/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



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

PREFIX xsd:http://www.w3.org/2001/XMLSchema#
PREFIX dct:http://purl.org/dc/terms/
PREFIX pt:http://www.eea.europa.eu/portal_types#
PREFIX onto:http://www.eea.europa.eu/ontologies.rdf#
PREFIX ptf:http://www.eea.europa.eu/portal_types/Fiche#

SELECT DISTINCT ?resource ?title ?description ?time ?image WHERE {
GRAPH ?graph {
{?resource a http://www.eea.europa.eu/portal_types/File#File}
UNION {?resource a http://www.eea.europa.eu/portal_types/Document#Document}
UNION {?resource a http://www.eea.europa.eu/portal_types/Term#Term }
UNION {?resource a http://www.eea.europa.eu/portal_types/Assessment#Assessment}
UNION {?resource a http://www.eea.europa.eu/portal_types/Article#Article }
UNION {?resource a http://www.eea.europa.eu/portal_types/Highlight#Highlight}
UNION {?resource a http://www.eea.europa.eu/portal_types/Fiche#Fiche }
UNION {?resource a http://www.eea.europa.eu/portal_types/Infographic#Infographic }
UNION {?resource a http://www.eea.europa.eu/portal_types/Folder#Folder }
UNION {?resource a http://www.eea.europa.eu/portal_types/Sparql#Sparql }
UNION {?resource a http://www.eea.europa.eu/portal_types/CallForInterest#CallForInterest}
UNION {?resource a http://www.eea.europa.eu/portal_types/CallForProposal#CallForProposal}
UNION {?resource a http://www.eea.europa.eu/portal_types/CallForTender#CallForTender}
UNION {?resource a http://www.eea.europa.eu/portal_types/Report#Report}
UNION {?resource a http://www.eea.europa.eu/portal_types/DavizVisualization#DavizVisualization}
UNION {?resource a http://www.eea.europa.eu/portal_types/ExternalDataSpec#ExternalDataSpec}
UNION {?resource a http://www.eea.europa.eu/portal_types/Data#Data}
UNION {?resource a https://land.copernicus.eu/portal_types/LandItem#LandItem}
UNION {?resource a http://www.eea.europa.eu/portal_types/EEAFigure#EEAFigure}
UNION {?resource a http://www.eea.europa.eu/portal_types/Topic#Topic }
UNION {?resource a http://www.eea.europa.eu/portal_types/Collection#Collection }
UNION {?resource a http://www.eea.europa.eu/portal_types/Dashboard#Dashboard }
UNION {?resource a http://www.eea.europa.eu/portal_types/CloudVideo#CloudVideo}
UNION {?resource a http://www.eea.europa.eu/portal_types/EcoTip#EcoTip}
UNION {?resource a http://www.eea.europa.eu/portal_types/Event#Event}
UNION {?resource a http://www.eea.europa.eu/portal_types/GIS%20Application#GISApplication}
UNION {?resource a http://www.eea.europa.eu/portal_types/Image#Image}
UNION {?resource a http://www.eea.europa.eu/portal_types/Link#Link}
UNION {?resource a http://www.eea.europa.eu/portal_types/MethodologyReference#MethodologyReference} UNION {?resource a http://www.eea.europa.eu/portal_types/PolicyDocumentReference#PolicyDocumentReference}
UNION {?resource a http://www.eea.europa.eu/portal_types/PolicyQuestion#PolicyQuestion}
UNION {?resource a http://www.eea.europa.eu/portal_types/PressRelease#PressRelease}
UNION {?resource a http://www.eea.europa.eu/portal_types/Promotion#Promotion}
UNION {?resource a http://www.eea.europa.eu/portal_types/QuickEvent#QuickEvent}
UNION {?resource a http://www.eea.europa.eu/portal_types/RationaleReference#RationaleReference}
UNION {?resource a http://www.eea.europa.eu/portal_types/EEAVacancy#EEAVacancy}
UNION {?resource a http://rod.eionet.europa.eu/schema.rdf#Instrument}
UNION {?resource a http://rod.eionet.europa.eu/schema.rdf#Obligation}
UNION {?resource a http://rod.eionet.europa.eu/schema.rdf#Client}
UNION {?resource a http://www.eea.europa.eu/portal_types/Organisation#Organisation}
UNION {?resource a http://www.eea.europa.eu/portal_types/KeyMessage#KeyMessage}
UNION {?resource a http://www.eea.europa.eu/portal_types/SOERKeyFact#SOERKeyFact}
UNION {?resource a http://www.eea.europa.eu/portal_types/SOERMEssage#SOERMEssage}
UNION {?resource a https://biodiversity.europa.eu/portal_types/countryfactsheet#countryfactsheet } UNION { ?resource a https://climate-adapt.eea.europa.eu/portal_types/collective.cover.content#collectivecovercontent }
}
?resource dct:issued ?time .
?resource pt:topic ?topic .
?resource onto:objectProvides ?type .
OPTIONAL {?resource dct:title ?title}
OPTIONAL {?resource dct:description ?description}
OPTIONAL {?resource ptf:image ?image}

FILTER (?time > xsd:dateTime('2018')) .
FILTER (str(?topic) = "http://www.eea.europa.eu/portal_vocabularies/themes/industry")
FILTER (str(?type) = "eea.reports.interfaces.IReportContainerEnhanced" || str(?type) = "eea.soercontent.content.interfaces.ICountryFiche" || str(?type) = "eea.soercontent.content.interfaces.IFiche")
}
ORDER BY desc (?time)

Error when running query:

Error. Traceback (most recent call last):
  File "/plone/buildout-cache/eggs/cp38/Products.ZSPARQLMethod-2.3-py3.8.egg/Products/ZSPARQLMethod/Method.py", line 287, in run_with_timeout
    ret = func(*args, **kwargs)
  File "/plone/buildout-cache/eggs/cp38/Products.ZSPARQLMethod-2.3-py3.8.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/cp38/sparql_client-3.8-py3.8.egg/sparql.py", line 747, in query
    return s.query(query, timeout, raw=raw)
  File "/plone/buildout-cache/eggs/cp38/sparql_client-3.8-py3.8.egg/sparql.py", line 416, in query
    return q.query(query, timeout, raw=raw)
  File "/plone/buildout-cache/eggs/cp38/sparql_client-3.8-py3.8.egg/sparql.py", line 571, in query
    response = self._request(statement, timeout)
  File "/plone/buildout-cache/eggs/cp38/sparql_client-3.8-py3.8.egg/sparql.py", line 558, in _request
    response = self._build_response(query, opener, buf, timeout)
  File "/plone/buildout-cache/eggs/cp38/sparql_client-3.8-py3.8.egg/sparql.py", line 542, in _build_response
    return self._get_response(opener, request, buf,
  File "/plone/buildout-cache/eggs/cp38/sparql_client-3.8-py3.8.egg/sparql.py", line 514, in _get_response
    response = opener.open(request, timeout=timeout)
  File "/usr/local/lib/python3.8/urllib/request.py", line 531, in open
    response = meth(req, response)
  File "/usr/local/lib/python3.8/urllib/request.py", line 640, in http_response
    response = self.parent.error(
  File "/usr/local/lib/python3.8/urllib/request.py", line 569, in error
    return self._call_chain(*args)
  File "/usr/local/lib/python3.8/urllib/request.py", line 502, in _call_chain
    result = func(*args)
  File "/usr/local/lib/python3.8/urllib/request.py", line 649, in http_error_default
    raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 500: