TT:operatingDayDeviance: Difference between revisions

From railML 2 Wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
(Example link added)
m (Typo corrected)
Line 14: Line 14:
* {{Attr|onRequest}} {{Intro|2.1}}: This is needed for "runs Monday to Friday and additionally Sunday on request".
* {{Attr|onRequest}} {{Intro|2.1}}: This is needed for "runs Monday to Friday and additionally Sunday on request".


* {{Attr|holidayOffset}}: This is the type of a day in relation to surrounding publich holidays.
* {{Attr|holidayOffset}}: This is the type of a day in relation to surrounding public holidays.


* {{Attr|ranking}}: This gives a detailed characterization of the specific subset of days, the modification is made for.
* {{Attr|ranking}}: This gives a detailed characterization of the specific subset of days, the modification is made for.

Revision as of 13:07, 27 January 2015


operatingDayDeviance
 


Scheme description / Schemenbeschreibung

Position of operatingDayDeviance in the XML-Tree / Position von operatingDayDeviance im XML-Baum

  • Parent: <operatingDay>
  • Children: Not yet described. / Noch nicht beschrieben.

Multiplicity / Anzahl

[1..1]

Semantics / Bedeutung

The Element operatingDayDeviance describes the operation modifications of the standard week described in operatingDay. This description is also week based but also related to public holidays. Each element operatingDayDeviance characterizes a set of days (e.g. Mondays and Tuesdays on a days before a public Holiday).

Das Element operatingDayDeviance beschreibt die Abweichungen gegenüber der in operatingDay beschriebenen Standardwoche. Dies erfolgt ebenfalls wochentagsbezogen, aber auch im Hinblick auf zeitlich benachbarte Feiertage. Jedes Element operatingDayDeviance charakterisiert dabei eine Menge von Tagen (z.B. alle Montage und Dienstage, die gleichzeitig Vor-Feiertage sind).

Attributes of operatingDayDeviance / Attribute von operatingDayDeviance

  • operatingCode: This is a 7-digit week bit mask, describing for Monday to Sunday if a train is driving or not (1/0) on this day of the week.
  • onRequest (introduced with version 2.1): This is needed for "runs Monday to Friday and additionally Sunday on request".
  • holidayOffset: This is the type of a day in relation to surrounding public holidays.
  • ranking: This gives a detailed characterization of the specific subset of days, the modification is made for.

Syntactic Constraints / Syntaktische Beschränkungen

  • operatingCode mandatory

Two or more conditions described by elements <operatingDayDeviance> with the same or no ranking have to be fullfilled at the same time. For days which happen to be in two sets with different ranking, the one with the lower rank is the right one.

Best practice & Examples / Empfohlene Anwendung & Beispiele

On Sundays and on public holidays

<operatingPeriod id="op1" name="S">
 <operatingDay operatingCode="0000001"/>
  <operatingDayD operatingCode="1111111" holidayOffset="0"/>
 </operatingDay>
</operatingPeriod>

On Saturdays which are no public holidays and on public holidays before other public holidays

<operatingPeriod id="op2" name="Sa[S] + FvF">
 <operatingDay operatingCode="0000010">
  <operatingDayDeviance operatingCode="0000000" holidayOffset="0" />
 </operatingDay>
 <operatingDay operatingCode="0000000">
  <operatingDayDeviance operatingCode="1111111" holidayOffset="0" ranking="1" />
  <operatingDayDeviance operatingCode="1111111" holidayOffset="-1" ranking="1" />
 </operatingDay>
</operatingPeriod>

see also

Notes / Anmerkungen

Not yet described. / Noch nicht beschrieben.

Open issues / Offene Punkte/Pendenzen

Not yet described. / Noch nicht beschrieben.