IS:crossedElements: Difference between revisions

From railML 2 Wiki
Jump to navigation Jump to search
[checked revision][checked revision]
No edit summary
(Merged crossedElements pages for multiple parents)
Line 1: Line 1:
{{multiple use}}
{{elementDocu
{{mult line|IS|brigde|crossedElements}}
|elementName=IS:crossedElements
{{mult line|IS|levelCrossing|crossedElements}}
|parent={{IS:Tag|brigde}}{{Sic}}, {{IS:Tag|levelCrossing}}, {{IS:Tag|tunnel}}
{{mult line|IS|tunnel|crossedElements}}
|childs={{IS:Tag|crossedElement}}
|minocc=0
|semantics=Lists the elements that are crossed by this {{IS:Tag|brigde}}{{Sic}}, {{IS:Tag|levelCrossing}} or {{IS:Tag|tunnel}}.
|inheritedAttributes=''None''
|ownAttributes=''None''
|constraints=''None''
|example=
Consider {{rml|2.3}} example of {{site|1=https://www.railml.org/en/user/exampledata.html?file=files/download/exampledata/090318_Bahnkonzept_ExampleDataGPSinfradat_NorthUpperRhineNetworkRailML23.zip|2=Middle Rhine Railway by GPSinfradat}}.
 
This code example defines a road as a {{tag|IS|crossedElement}} of a {{tag|IS|brigde}}{{sic}} on the Middle Rhine Railway.
 
<syntaxhighlight lang=xml>
<bridges>
  <brigde id="br3510292" pos="1572" name="EÜ L424 Hattenbergstraße" absPos="28952" xml:lang="de">
    <geoCoord coord="50.013346 8.244743" epsgCode="urn:ogc:def:crs:EPSG::4326"/>
    <crossedElements>
      <crossedElement id="cEBr3510292" pos="1572" name="L424 Hattenbergstraße" type="highway:road" xml:lang="de"/>
    </crossedElements>
  </brigde>
</bridges>
</syntaxhighlight>
 
This code example defines a road as a {{tag|IS|crossedElement}} of a {{tag|IS|levelCrossing|levelCrossings}} on the Middle Rhine Railway.
 
<syntaxhighlight lang=xml>
<levelCrossings>
  <levelCrossing id="lc263011" pos="6690" name="BÜ LzHH Brunnenstraße" absPos="97740" xml:lang="de">
    <geoCoord coord="50.294743 7.600783" epsgCode="urn:ogc:def:crs:EPSG::4326"/>
    <crossedElements>
      <crossedElement id="cELC263011" pos="6690" name="LzHH Brunnenstraße" type="highway:road" xml:lang="de"/>
    </crossedElements>
  </levelCrossing>
</levelCrossings>
</syntaxhighlight>
}}

Revision as of 21:56, 28 March 2023


IS:crossedElements
 


Scheme description / Schemenbeschreibung

Position of IS:crossedElements in the XML-Tree / Position von IS:crossedElements im XML-Baum

Multiplicity / Anzahl

[0..1]

Semantics / Bedeutung

Lists the elements that are crossed by this <brigde>[Sic!], <levelCrossing> or <tunnel>.

Attributes of IS:crossedElements / Attribute von IS:crossedElements

None

Syntactic Constraints / Syntaktische Beschränkungen

None

Best practice & Examples / Empfohlene Anwendung & Beispiele

Consider railML® 2.3 example of Middle Rhine Railway by GPSinfradat (link to the railML® website).

This code example defines a road as a <crossedElement> of a <brigde>[Sic!] on the Middle Rhine Railway.

<bridges>
  <brigde id="br3510292" pos="1572" name="EÜ L424 Hattenbergstraße" absPos="28952" xml:lang="de">
    <geoCoord coord="50.013346 8.244743" epsgCode="urn:ogc:def:crs:EPSG::4326"/>
    <crossedElements>
      <crossedElement id="cEBr3510292" pos="1572" name="L424 Hattenbergstraße" type="highway:road" xml:lang="de"/>
    </crossedElements>
  </brigde>
…
</bridges>

This code example defines a road as a <crossedElement> of a <levelCrossing> on the Middle Rhine Railway.

<levelCrossings>
  <levelCrossing id="lc263011" pos="6690" name="BÜ LzHH Brunnenstraße" absPos="97740" xml:lang="de">
    <geoCoord coord="50.294743 7.600783" epsgCode="urn:ogc:def:crs:EPSG::4326"/>
    <crossedElements>
      <crossedElement id="cELC263011" pos="6690" name="LzHH Brunnenstraße" type="highway:road" xml:lang="de"/>
    </crossedElements>
  </levelCrossing>
…
</levelCrossings>

Notes / Anmerkungen

Not yet described. / Noch nicht beschrieben.

Open issues / Offene Punkte/Pendenzen

Not yet described. / Noch nicht beschrieben.