next
previous
items

Data table via SPARQL

Manufacturing and service GVA

Data table via SPARQL Published 24 Mar 2016 Last modified 22 Aug 2016

Download this dataset

Dataset preview

(Live Query)

date manufacturing_gva services_gva
"2004"^^<http://www.w3.org/2001/XMLSchema#int> "100"^^<http://www.w3.org/2001/XMLSchema#decimal> "100"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2005"^^<http://www.w3.org/2001/XMLSchema#int> "101.9"^^<http://www.w3.org/2001/XMLSchema#decimal> "102.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2006"^^<http://www.w3.org/2001/XMLSchema#int> "107.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "106.7"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2007"^^<http://www.w3.org/2001/XMLSchema#int> "111.7"^^<http://www.w3.org/2001/XMLSchema#decimal> "110.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2008"^^<http://www.w3.org/2001/XMLSchema#int> "109.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "112.8"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2009"^^<http://www.w3.org/2001/XMLSchema#int> "94.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "110.5"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2010"^^<http://www.w3.org/2001/XMLSchema#int> "103.6"^^<http://www.w3.org/2001/XMLSchema#decimal> "111.6"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2011"^^<http://www.w3.org/2001/XMLSchema#int> "108.1"^^<http://www.w3.org/2001/XMLSchema#decimal> "113.9"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2012"^^<http://www.w3.org/2001/XMLSchema#int> "106"^^<http://www.w3.org/2001/XMLSchema#decimal> "114.4"^^<http://www.w3.org/2001/XMLSchema#decimal>
"2013"^^<http://www.w3.org/2001/XMLSchema#int> "105.8"^^<http://www.w3.org/2001/XMLSchema#decimal> "115.3"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 12 rows in 0.031 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/manifacturing-services-gva-1/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 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 property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/>
PREFIX nace_r2: <http://dd.eionet.europa.eu/vocabulary/eurostat/nace_r2/>

SELECT DISTINCT
year(?date) as ?date
#sum(?nama_10_a10_C) as ?nama_10_a10_C
#sum(?nama_10_a10_G_U) as ?nama_10_a10_G_U
#sum(?nama_10_a10_C_idx) as ?nama_10_a10_C_idx
#sum(?nama_10_a10_G_U_idx) as ?nama_10_a10_G_U_idx

round(( sum(?nama_10_a10_C) / sum(?nama_10_a10_C_idx) )*1000)/10.0 as ?manufacturing_gva
round(( sum(?nama_10_a10_G_U) / sum(?nama_10_a10_G_U_idx) )*1000)/10.0 as ?services_gva

WHERE {{
    GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/nama_10_a10.rdf.gz> 
    {{ 
        _:nama_10_a10 sdmx-dimension:timePeriod ?date . 
        FILTER (year(?date) >= 2004)
        _:nama_10_a10 sdmx-dimension:refArea geo:EU28 . 
        _:nama_10_a10 sdmx-attribute:unitMeasure unit:CLV_I10 . 

        {
          _:nama_10_a10 property:nace_r2 nace_r2:C .
          _:nama_10_a10 sdmx-measure:obsValue ?nama_10_a10_C .
        } UNION {
          _:nama_10_a10 property:nace_r2 ?nace_r2 . 
          FILTER (?nace_r2 in (nace_r2:G-I, nace_r2:J, nace_r2:K, nace_r2:L, 
                               nace_r2:M_N, nace_r2:O-Q, nace_r2:R-U ))
          _:nama_10_a10 sdmx-measure:obsValue ?nama_10_a10_G_U .
        }

        _:nama_10_a10_idx sdmx-dimension:timePeriod ?date_idx . 
        FILTER (year(?date_idx) = 2004)
        _:nama_10_a10_idx sdmx-dimension:refArea geo:EU28 . 
        _:nama_10_a10_idx sdmx-attribute:unitMeasure unit:CLV_I10  . 

        {
          _:nama_10_a10_idx property:nace_r2 nace_r2:C .
          _:nama_10_a10_idx sdmx-measure:obsValue ?nama_10_a10_C_idx .
        } UNION {
          _:nama_10_a10_idx property:nace_r2 ?nace_r2 . 
          FILTER (?nace_r2 in (nace_r2:G-I, nace_r2:J, nace_r2:K, nace_r2:L, 
                               nace_r2:M_N, nace_r2:O-Q, nace_r2:R-U ))
          _:nama_10_a10_idx sdmx-measure:obsValue ?nama_10_a10_G_U_idx .
        }
    }}
}}
GROUP BY ?date 
ORDER BY ?date


Permalinks

Document Actions