qid string | nlq string | sparql string |
|---|---|---|
ds5 | Provide a summary of the presence of the core parameter load capability (1.1.1.1.2.4) across all tracks per member state. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?inCountry ?numTotalTracks ?numTracksWithLoadCapability ?numTracksWithoutLoadCapability
WHERE {
{
SELECT DISTINCT ?inCountry (COUNT(DISTINCT ?track) AS ?numTotalTracks)
WHERE {
?track a era:Track .
?sectionOfLine era:track ?track .
?... |
ds6 | Provide a summary of sections of lines and tracks where the core parameter load capability (1.1.1.1.2.4) does not appear (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?inCountry ?sectionOfLine ?trackWithoutLoadCapability
WHERE {
VALUES ?inCountry { <http://publications.europa.eu/resource/authority/country/ESP> } .
?trackWithoutLoadCapability a era:Track .
?sectionOfLine era:track ?trackWithoutLoadCapability .
?section... |
ds9 | Provide all tracks where core parameters do not appear (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?track ?p
WHERE {
VALUES ?inCountry {<http://publications.europa.eu/resource/authority/country/ESP>} .
VALUES ?p {era:wheelSetGauge era:gaugingProfile era:railInclination era:eddyCurrentBraking era:magneticBraking era:minimumWheelDiameter era:minimumHorizont... |
ds10 | Provide a summary of the presence of core parameters applicable to sections of line per member state. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?p ?inCountry ?numTotalSOLs ?numSOLsWithPropertyAsCoreParameter ?numSOLsWithoutPropertyAsCoreParameter
WHERE {
VALUES ?p { era:length }
{
SELECT DISTINCT ?inCountry (COUNT(DISTINCT ?sectionOfLine) AS ?numTotalSOLs)
WHERE {
?sectionOfLine a era:... |
ds11 | Provide all sections of line where core parameters do not appear (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?sectionOfLine ?p ?rinfIndex
WHERE {
VALUES ?inCountry { <http://publications.europa.eu/resource/authority/country/ESP> } .
VALUES ?p { era:length }
?sectionOfLine a era:SectionOfLine .
?sectionOfLine era:inCountry ?inCountry.
?p era:rinfIndex ?rin... |
ds12 | Provide a summary of the presence of core parameters applicable to tunnels per member state. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?p ?inCountry ?numTotalEntities ?numEntitiesWithPropertyAsCoreParameter ?numEntitiesWithoutPropertyAsCoreParameter
WHERE {
VALUES ?p { era:length era:rollingStockFireCategory era:tunnelIdentification }
{
SELECT DISTINCT ?inCountry (COUNT(DISTINCT ?entity... |
ds13 | Provide all tunnels where core parameters do not appear (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?entity ?p ?rinfIndex
WHERE {
VALUES ?inCountry { <http://publications.europa.eu/resource/authority/country/ESP> }
VALUES ?p { era:length era:rollingStockFireCategory era:tunnelIdentification }
?entity a era:Tunnel .
?entity era:inCountry ?inCountry .
... |
ds14 | Provide a summary of the presence of core parameters applicable to sidings per member state. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?p ?inCountry ?numTotalEntities ?numEntitiesWithPropertyAsCoreParameter ?numEntitiesWithoutPropertyAsCoreParameter
WHERE {
VALUES ?p {era:length era:minimumHorizontalRadius}
{
SELECT DISTINCT ?inCountry (COUNT(DISTINCT ?entity) AS ?numTotalEntities)
... |
ds15 | Provide all the sidings where core parameters do not appear (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?entity ?p ?rinfIndex
WHERE {
VALUES ?inCountry { <http://publications.europa.eu/resource/authority/country/ESP> } .
VALUES ?p { era:length era:minimumHorizontalRadius }
?entity a era:Siding .
?op a era:OperationalPoint .
?op era:siding ?entity .
?... |
ds16 | Provide a summary of the presence of core parameters applicable to operational points per member state. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?p ?inCountry ?numTotalEntities ?numEntitiesWithPropertyAsCoreParameter ?numEntitiesWithoutPropertyAsCoreParameter
WHERE {
VALUES ?p { era:lineReference }
{
SELECT DISTINCT ?inCountry (COUNT(DISTINCT ?entity) AS ?numTotalEntities)
WHERE {
?ent... |
ds17 | Provide all operational points where core parameters do not appear (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?entity ?p ?rinfIndex
WHERE {
VALUES ?inCountry {<http://publications.europa.eu/resource/authority/country/ESP>} .
VALUES ?p {era:lineReference}
?entity a era:OperationalPoint .
?entity era:inCountry ?inCountry .
?p era:rinfIndex ?rinfIndex .
FILTE... |
ds18 | Provide a summary of the presence of core parameters applicable to platforms per member state. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?p ?inCountry ?numTotalTracks ?numTracksWithPropertyAsCoreParameter ?numTracksWithoutPropertyAsCoreParameter
WHERE {
VALUES ?p {era:platformId era:length era:platformHeight}
{
SELECT DISTINCT ?inCountry (COUNT(DISTINCT ?track) AS ?numTotalTracks)
WHE... |
ds19 | Provide all platforms where core parameters do not appear (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?entity ?p ?rinfIndex
WHERE {
VALUES ?inCountry {<http://publications.europa.eu/resource/authority/country/ESP>} .
VALUES ?p {era:platformId era:length era:platformHeight}
?entity a era:Platform .
?track a era:Track.
?track era:platform ?entity .
?... |
ds20 | Provide a summary of the presence of core parameters applicable to tracks' contact line systems per member state, without checking parameter applicability. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?p ?inCountry ?numTotalTracks ?numTracksWithPropertyAsCoreParameter ?numTracksWithoutPropertyAsCoreParameter
WHERE {
VALUES ?p { era:energySupplySystem era:contactLineSystemType }
{
SELECT DISTINCT ?inCountry (COUNT(DISTINCT ?track) AS ?numTotalTracks... |
ds21 | Provide a summary of the presence of core parameters applicable to tracks' contact line systems per member state, checking parameter applicability. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?p ?inCountry ?numTotalTracks ?numTracksWithPropertyAsCoreParameter ?numTracksWithoutPropertyAsCoreParameter
WHERE {
VALUES ?p { era:energySupplySystem era:contactLineSystemType }
{
SELECT DISTINCT ?inCountry (COUNT(DISTINCT ?track) AS ?numTotalTracks... |
ds22 | Provide all the tracks and contact line systems where core parameters do not appear, without checking parameter applicability (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?track ?cls ?p #?rinfIndex
WHERE {
VALUES ?inCountry {<http://publications.europa.eu/resource/authority/country/ESP>} .
VALUES ?p {era:energySupplySystem era:contactLineSystemType}
?track a era:Track .
?track era:contactLineSystem ?cls .
?sectionOf... |
ds23 | Provide all the tracks and contact line systems where core parameters do not appear, checking parameter applicability (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?track ?cls ?p
WHERE {
VALUES ?inCountry {<http://publications.europa.eu/resource/authority/country/ESP>} .
VALUES ?p {era:energySupplySystem era:contactLineSystemType}
?track a era:Track .
?track era:contactLineSystem ?cls .
FILTER NOT EXISTS {?trac... |
ds24 | Provide a summary of the presence of core parameters applicable to tracks' train detection systems per member state. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?p ?inCountry ?numTotalTracks ?numTracksWithPropertyAsCoreParameter ?numTracksWithoutPropertyAsCoreParameter
WHERE {
VALUES ?p {era:trainDetectionSystemType}
{
SELECT DISTINCT ?inCountry (COUNT(DISTINCT ?track) AS ?numTotalTracks)
WHERE {
?trac... |
ds25 | Provide all the tracks and train detection systems where core parameters do not appear (example with Spain). | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?track ?tds ?p
WHERE {
VALUES ?inCountry { <http://publications.europa.eu/resource/authority/country/ESP> }
VALUES ?p { era:trainDetectionSystemType }
?track a era:Track .
?track era:trainDetectionSystem ?tds .
?sectionOfLine era:track ?track .
?sec... |
ds26 | Number of tracks, per country, that are not TSI compliant. | PREFIX era: <http://data.europa.eu/949/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT DISTINCT ?country (COUNT(DISTINCT ?track) AS ?countTracks)
WHERE {
?sectionOfLine a era:SectionOfLine .
?sectionOfLine era:inCountry ?country .
?sectionOfLine era:track ?track .
?track a era:Track .
?track era:h... |
ds27 | Number of tracks, per country, whose associated train detection systems are not TSI compliant. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT ?country ?p (COUNT(DISTINCT ?track) AS ?numberTracks)
WHERE {
?sectionOfLine a era:SectionOfLine .
?sectionOfLine era:inCountry ?country .
?sectionOfLine era:track ?track .
?track a era:Track .
?track era:trainDetectionSystem ?tds .
?tds a era:TrainD... |
ds28 | Types of gauging profiles of tracks in neighbouring countries to Ukraine. | PREFIX era: <http://data.europa.eu/949/>
PREFIX country: <http://publications.europa.eu/resource/authority/country/>
SELECT DISTINCT ?country ?gprofile
WHERE {
VALUES ?country { country:HUN country:ROU country:SVK country:POL }
?sectionOfLine a era:SectionOfLine .
?sectionOfLine era:inCountry ?country .
?secti... |
ds29 | Identify unreachable Operational Points. | PREFIX era: <http://data.europa.eu/949/>
PREFIX era-dir: <http://data.europa.eu/949/concepts/track-running-directions/rinf/>
SELECT DISTINCT ?op ?uopid ?country
WHERE {
# Main OP to be analyzed
?op era:inCountry ?country;
era:uopid ?uopid.
# Main SoL to be analyzed with tracks only depart... |
ds30 | Identify sink Operational Points. | PREFIX era: <http://data.europa.eu/949/>
PREFIX era-dir: <http://data.europa.eu/949/concepts/track-running-directions/rinf/>
SELECT DISTINCT ?op ?uopid ?country
WHERE {
# Main OP to be analyzed
?op era:inCountry ?country;
era:uopid ?uopid.
# Main SoL to be analyzed with tracks only depart... |
ds31 | Identify disconnected Operational Points. | PREFIX era: <http://data.europa.eu/949/>
PREFIX era-dir: <http://data.europa.eu/949/concepts/track-running-directions/>
PREFIX era-op-types: <http://data.europa.eu/949/concepts/op-types/rinf/>
SELECT DISTINCT ?op ?uopid ?country
WHERE {
# Main OP to be analyzed
?op era:inCountry ?country;
era:uopid ?uo... |
ds32 | Query that allows generating INSPIRE-related data according to the INSPIRE ontologies. | PREFIX era: <http://data.europa.eu/949/>
PREFIX inspire: <http://inspire.ec.europa.eu/ont/net#>
CONSTRUCT {
?track a inspire:Link;
inspire:Link.startNode ?startOP;
inspire:Link.endNode ?endOP.
?startOP a inspire:Node.
?endOP a inspire:Node.
}
WHERE {
?track a era:Track;
^era:track [... |
ds33 | Determine the compliance of tracks of a specific section of line, with the High Speed Load Model (HSLM) - era:highSpeedLoadModelCompliance, RINF index 1.1.1.1.2.4.2. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT *
WHERE {
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
?sol era:opEnd ?op_end .
?op_end era:opName ?op_endName .
FILTER (regex(?op_startName, "Dendermonde")) .
FILTER (regex(?op_endName, "Zele")) .
?... |
ds34 | Classification of a specific section of line according to the INF TSI - era:lineCategory, RINF index 1.2.1.0.2.2. | PREFIX era: <http://data.europa.eu/949/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT *
{
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?sol era:opEnd ?op_end .
?op_start era:opName ?op_startName .
?op_end era:opName ?op_endName .
FILTER (regex(?op_startName, "D... |
ds35 | Number of tracks for a specific section of line. | PREFIX era: <http://data.europa.eu/949/>
SELECT (COUNT(DISTINCT ?track) AS ?tracks)
WHERE {
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
?sol era:opEnd ?op_end .
?op_end era:opName ?op_endName .
FILTER (regex(?op_startName, "Dendermonde")) .
FI... |
ds36 | Type of contact line systems of the tracks in a specific section of line. | PREFIX era: <http://data.europa.eu/949/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT *
{
?sol a era:SectionOfLine.
?sol era:opStart ?op_start.
?op_start era:opName ?op_startName .
?sol era:opEnd ?op_end.
?op_end era:opName ?op_endName .
FILTER (regex(?op_startName, "Den... |
ds37 | Wheel set gauge of the tracks in a specific section of line. | PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT *
WHERE {
?sol a era:SectionOfLine.
?sol era:opStart ?op_start.
?op_start era:opName ?op_startName .
?sol era:opEnd ?op_end.
?op_end era:opName ?op_endName .
FILTER (regex(?op_startName... |
ds38 | Energy supply system associated to the tracks in a specific section of line. | PREFIX era: <http://data.europa.eu/949/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT *
WHERE {
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
?sol era:opEnd ?op_end .
?op_end era:opName ?op_endName .
FILTER (regex(?op_startNa... |
ds39 | ERTMS / ETCS application level of tracks in a specific section of line, which expresses the possible operating relationships between track and train. | PREFIX era: <http://data.europa.eu/949/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT *
{
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
?sol era:opEnd ?op_end .
?op_end era:opName ?op_endName .
FILTER (regex(?op_startName, "D... |
ds40 | ETCS baseline installed in the tracks of a specific section of line. | PREFIX era: <http://data.europa.eu/949/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT *
WHERE {
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
FILTER (regex(?op_startName, "Dendermonde")) .
?sol era:opEnd ?op_end .
?op_end era:opName ?op_... |
ds41 | Location of particular points requiring specific checks due to deviations from gauging, for tracks in a specific section of line. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT *
{
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
FILTER (regex(?op_startName, "Dendermonde"))
?sol era:opEnd ?op_end .
?op_end era:opName ?op_endName .
FILTER (regex(?op_endName, "Zele"))
?sol era:... |
ds42 | Combined transport profile for semi-trailers, for tracks in a specific section of line. | PREFIX era: <http://data.europa.eu/949/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT *
{
?sol a era:SectionOfLine.
?sol era:opStart ?op_start.
?op_start era:opName ?op_startName.
FILTER (regex(?op_startName, "Dendermonde")).
?sol era:opEnd ?op_end.
?op_end era:opName ?op... |
ds43 | If ETCS in operation, fill in parameters ETCS Baseline and ETCS Level, for tracks in a specific section of line. | PREFIX era: <http://data.europa.eu/949/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT *
{
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
FILTER (regex(?op_startName, "Dendermonde")) .
... |
ds44 | GSM-R version installed in tracks of a specific section of line. | PREFIX era: <http://data.europa.eu/949/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT *
{
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
FILTER (regex(?op_startName, "Dendermonde")) .
?sol era:opEnd ?op_end .
?op_end era:opNam... |
ds45 | Maximum Axle Load for tracks in a specific section of line (Note that this parameter does not exist. Therefore minAxleLoad is used, currently returns no values). | PREFIX era: <http://data.europa.eu/949/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT DISTINCT *
WHERE {
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
FILTER (regex(?op_startName, "Dendermonde")) .
?sol era:opEnd ?op_end .
?op_end er... |
ds46 | Nominal maximum operational speed on a specific section of line as a result of INF, ENE and CCS subsystem characteristics expressed in kilometres/hour. | PREFIX era: <http://data.europa.eu/949/>
SELECT DISTINCT *
{
?sol a era:SectionOfLine .
?sol era:opStart ?op_start .
?op_start era:opName ?op_startName .
FILTER (regex(?op_startName, "Dendermonde")) .
?sol era:opEnd ?op_end .
?op_end era:opName ?op_endName .
FILTER (regex(?op_endName, "Zele... |
README.md exists but content is empty.
- Downloads last month
- 9