next
previous
items

Data table via SPARQL

Passenger transport modal split, EU13

Data table via SPARQL Published 27 Oct 2015 Last modified 19 Apr 2016

Download this dataset

Dataset preview

(Live Query)

date vehicle_label country ratio
"1990"^^<http://www.w3.org/2001/XMLSchema#int> "Motor coaches, buses and trolley buses" "EU13" "27.7"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1990"^^<http://www.w3.org/2001/XMLSchema#int> "Passenger cars" "EU13" "54.7"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1990"^^<http://www.w3.org/2001/XMLSchema#int> "Trains" "EU13" "17.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1991"^^<http://www.w3.org/2001/XMLSchema#int> "Motor coaches, buses and trolley buses" "EU13" "26"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1991"^^<http://www.w3.org/2001/XMLSchema#int> "Passenger cars" "EU13" "59.7"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1991"^^<http://www.w3.org/2001/XMLSchema#int> "Trains" "EU13" "14"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1992"^^<http://www.w3.org/2001/XMLSchema#int> "Motor coaches, buses and trolley buses" "EU13" "23.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1992"^^<http://www.w3.org/2001/XMLSchema#int> "Passenger cars" "EU13" "64.3"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1992"^^<http://www.w3.org/2001/XMLSchema#int> "Trains" "EU13" "12"^^<http://www.w3.org/2001/XMLSchema#decimal>
"1993"^^<http://www.w3.org/2001/XMLSchema#int> "Motor coaches, buses and trolley buses" "EU13" "25.6"^^<http://www.w3.org/2001/XMLSchema#decimal>

Received 72 rows in 0.028 seconds.


https://www.eea.europa.eu/data-and-maps/daviz/sds/passenger-transport-modal-split-eu13/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 skos: <http://www.w3.org/2004/02/skos/core#> 
PREFIX property: <http://rdfdata.eionet.europa.eu/eurostat/property#> 
PREFIX geo: <http://dd.eionet.europa.eu/vocabulary/eurostat/geo/>
PREFIX infotype: <http://rdfdata.eionet.europa.eu/eurostat/dic/infotype#>
PREFIX unit: <http://dd.eionet.europa.eu/vocabulary/eurostat/unit/>
PREFIX indic_nrg: <http://dd.eionet.europa.eu/vocabulary/eurostat/indic_nrg/>
PREFIX product: <http://dd.eionet.europa.eu/vocabulary/eurostat/product/>

SELECT
  year(?date) as ?date
  ?vehicle_label
  'EU13' as ?country
  round(( SUM(?obsValue/3)/sum(?obsValue_total) )*1000)/10.0 as ?ratio

  #SUM(?obsValue/3) as ?obsValue 
  #SUM(?obsValue_total) as ?obsValue_total

  WHERE {{
    GRAPH <http://rdfdata.eionet.europa.eu/eurostat/data/tran_hv_psmod.rdf.gz> { 
    {
        _:tran_hv_psmod sdmx-dimension:timePeriod ?date .
        _:tran_hv_psmod sdmx-dimension:refArea ?geo .
        _:tran_hv_psmod property:vehicle ?vehicle .
        _:tran_hv_psmod sdmx-measure:obsValue ?obsValue .

        _:tran_hv_psmod_total sdmx-dimension:timePeriod ?date .
        _:tran_hv_psmod_total sdmx-dimension:refArea ?geo .
        _:tran_hv_psmod_total sdmx-measure:obsValue ?obsValue_total .

        FILTER (?geo in (geo:BG, geo:CY, geo:CZ, geo:EE, geo:HR, geo:HU, geo:LT, geo:LV, 
                         geo:MT, geo:PL, geo:RO, geo:SI, geo:SK))
   }
  }
  ?vehicle rdfs:label ?vehicle_label .
}}

ORDER BY ?date ?vehicle_label


Permalinks

Document Actions