Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Warning
titleTo do

These examples were initially provided by Steffen Siegl (Austrocontrol) in the form of an Excel sheet. They need to be reviewed and checked for compliance with the latest version of the coding rules for schedules.

Also, the table needs to be re-formatted in order to fit better in Confluence. A new table structure is proposed above the original table.

Proposal:

  • move already to the public pages the few examples that were re-formatted (next 3 lines)
  • any volunteers to try doing the same editorial work for other schedule examples?

EX

...

1: H24

Tip
titleAIP text

H24

Info
titleRemark

see Common coding patterns

...

Code Block
languagexml
titleXML Snippet
collapsetrue
    <!-- H24 encoding -->
    <aixm:Timesheet gml:id="EX01EX1">
        <aixm:timeReference>UTC</aixm:timeReference>
        <aixm:day>ANY</aixm:day>
        <aixm:dayTil>ANY</aixm:dayTil>
        <aixm:startTime>00:00</aixm:startTime>
        <aixm:endTime>00:00</aixm:endTime>
        <aixm:daylightSavingAdjust>NO</aixm:daylightSavingAdjust>
        <aixm:excluded>NO</aixm:excluded>
    </aixm:Timesheet>

EX

...

2: Time period for daily & daylight saving applied

Tip
titleAIP text

0500-2200 (0400-2100)

...

Code Block
languagexml
titleXML Snippet
collapsetrue
    <!-- H24 encoding0500-2200 (0400-2100) -->
    <aixm:Timesheet gml:id="EX01EX2">
        <aixm:timeReference>UTC</aixm:timeReference>
        <aixm:day>ANY</aixm:day>
        <aixm:dayTil>ANY</aixm:dayTil>
        <aixm:startTime>00startTime>05:00</aixm:startTime>
        <aixm:endTime>00endTime>22:00</aixm:endTime>
        <aixm:daylightSavingAdjust>NO<daylightSavingAdjust>YES</aixm:daylightSavingAdjust>
        <aixm:excluded>NO</aixm:excluded>
    </aixm:Timesheet>

...