TT:times
Introduction
Documentation
Syntax
| Documentation | Used to describe when the train arrives and/or departs from an OP. |
| Subschema | timetable |
| Parents* | |
| Children | |
Attributes:
| |
| *Notice: Elements may have different parent elements. As a consequence they may be used in different contexts. Please, consider this as well as a user of this Wiki as when developing this documentation further. Aspects that are only relevant with respect to one of several parents should be explained exclusively in the documentation of the respective parent element. | |
Changes 3.1→3.2
There exists an overview of all changes between railML® 3.1 and railML® 3.2 on page Dev:Changes/3.2.
Introduced with version 3.2.
Changes 3.2→3.3
There exists an overview of all changes between railML® 3.2 and railML® 3.3 on page Dev:Changes/3.3.
Removed with version 3.3.
Semantics
|
Best Practice / Examples
Semantic constraint TT:008
The semantic constraint TT:008 ensures that no contradictory information can be provided. For example, it ensures that only a single 'scheduled' departure time is provided.
Mit der semantischen Beschränkung TT:008 wird sichergestellt, keine sich widersprechenden Informationen angegeben werden können. Beispielsweise wird sichergestellt, dass nur eine geplante also 'scheduled' Abfahrtszeit angegeben wird.
Valid:
<baseItineraryPoint id="bip01" locationRef="ocp01" sequenceNumber="1">
<times scope="operational">
<arrival time="10:05:15"/>
<departure time="10:07:00"/>
</times>
<times scope="published">
<arrival time="10:05:00"/>
<departure time="10:08:00"/>
</times>
</baseItineraryPoint>
Invalid:
<baseItineraryPoint id="bip01" locationRef="ocp01" sequenceNumber="1">
<times scope="operational">
<arrival time="10:05:15"/>
<departure time="10:07:00"/>
</times>
<times scope="operational">
<arrival time="10:05:30"/>
<departure time="10:06:45"/>
</times>
<times scope="published">
<arrival time="10:05:00"/>
<departure time="10:08:00"/>
</times>
</baseItineraryPoint>
Also invalid:
<baseItineraryPoint id="bip01" locationRef="ocp01" sequenceNumber="1">
<times scope="operational">
<arrival time="10:05:15"/>
</times>
<times scope="operational">
<departure time="10:07:00"/>
</times>
<times scope="published">
<arrival time="10:05:00"/>
<departure time="10:08:00"/>
</times>
</baseItineraryPoint>
Additional Information
Notes
With version 3.3 the element <times> was moved to the child element <stop>/<pass>. Please see <stop>/<times> and <pass>/<times>