-
-
Save michimau/6a7481fbcff2eab90d2ab1887f32f3d4 to your computer and use it in GitHub Desktop.
zol1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX qb: <http://purl.org/linked-data/cube#> | |
PREFIX sdmx-measure: <http://purl.org/linked-data/sdmx/2009/measure#> | |
PREFIX sdmx-dimension: <http://purl.org/linked-data/sdmx/2009/dimension#> | |
PREFIX sdmx-attribute: <http://purl.org/linked-data/sdmx/2009/attribute#> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#> | |
SELECT ?date | |
WHERE { | |
_:nrg_100a qb:dataSet <http://rdfdata.eionet.europa.eu/eurostat/data/nrg_100a>. | |
_:nrg_100a sdmx-dimension:freq ?freq . | |
_:nrg_100a sdmx-dimension:timePeriod ?date . | |
_:nrg_100a property:indic_nrg ?indic_nrg . | |
_:nrg_100a sdmx-dimension:refArea ?geo . | |
_:nrg_100a property:product ?product . | |
_:nrg_100a sdmx-attribute:unitMeasure ?unit . | |
OPTIONAL { _:nrg_100a sdmx-measure:obsValue ?obsValue } | |
OPTIONAL { _:nrg_100a sdmx-attribute:obsStatus ?obsStatus } | |
} LIMIT 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment