Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Introduction


As explained in the data encoding section, this specification supports the encoding of three types of schedules:

  • daily schedules, e.g. "daily from 09:00 to 17:00";
  • date based schedules, e.g. "1/10 09:00-15:00 and on 3/10 10:00-12:00";
  • weekday based schedules, e.g. "every Monday from 13:00 to sunset";

This section provides rules for the automated decoding of the AIXM 5.1 Event Schedule data in text format. For most Event Scenarios, this textual schedule description is provided in item D of the generated NOTAM. However, if the Event concerns the modification of a baseline schedule, then the new/temporary schedule has to be provided in item E. This is identified in the particular scenarios concerned. The ICAO DOC 8126 and the OPADD rules have been followed in the definition of the text schedule production rules.

Decoding rules


AIXM specific terms are used in this section, such as names of features and properties. The abbreviation TS. indicates that the corresponding data item must be taken from the Timesheet(s) of the TEMPDELTA or PERMDELTA TimeSlices created for the feature associated with the Event, as indicated for each particular scenario.

  • Note for developers: Python code implementing the decoding rules of this section is available from Eurocontrol. However, it shall be considered as a prototype implementation, not as code to be used directly in end products!

The first step is the identification of the schedule type.

ReferenceRule
(1)

If there are TS.Timesheet elements that have TS.day = 'ANY', TS.startDate and TS.endDate empty, select all of them and decode following the algorithm described by Production rule Daily.

(2)

If there are TS.Timesheet elements that have TS.day = 'ANY', TS.startDate and TS.endDate not empty, select all of them and decode following the algorithm described by Production rule Dates.

(3)

If there are TS.Timesheet elements that have TS.day containing a value diffrent to 'ANY' and TS.startDate and TS.endDate empty, select all of them and decode following the algorithm described by Production rule Weekdays.


Production Rule Daily

ReferenceRule
(1)'DAILY' is used to denote a schedule of type 'daily'.
(2)

If TS.startTime is used to indicate when the time period included in the schedule starts, go through the direct path. Otherwise, if TS.startEvent is used, go through the alternate path.

(3)

Format the data contained in TS.startTime and TS.endTime according to NOTAM syntax for this item: hhmm. If the time value of TS.endTime is 24:00 or 24:00:00, then the value “2359” shall be used as hhmm group.

(4)

If TS.startTimeRelative and TS.endTimeRelativeEvent are used, format the data contained in these elements according to NOTAM syntax for this item by replacing '-' by 'MINUS' and '+' by 'PLUS'.

(5)

If TS.endTime is used to indicate when the time period included in the schedule ends, go through the direct path. Otherwise, if TS.endEvent is used, go through the alternate path.

(6)

If there are multiple time periods included in the schedule, sort them by TS.startTime or TS.startEvent. For sorting purpose, consider SR = 0600 LT and SS = 2000 LT.

(7)

An 'AND' shall be included before the last time period, only if there are no exceptions or if there are exceptions containing just one date or date period.

(8)

If there are any timesheets containing TS.excluded elements with the value 'YES', denoting a schedule with exceptions, select all of them and go through the direct path, otherwise go through the bypass path.

(9)

Format the data to show the month abbreviation followed by two digits (MMM DD), eg. AUG 23, according to item D NOTAM syntax. If the month value stored in TS.startDate is identical to the one stored in other TS.startDate elements pertaining to other Timesheets, insert only the day of the month value stored in TS.startDate.

(10)

If consecutive dates are stored in TS.startDate elements, add a dash between the start date and the end date.

(11)

An 'AND' shall be included before the last date or date period.

(12)

Sort the dates or date periods by month and then by day using the dates contained in TS.startDate.

(13)

Annotations shall be translated into free text according to the Encoding annotations rules.


Production rule Dates

Format the data contained in TS.startTime and TS.endTime according to NOTAM syntax for this item: hhmm. If the time value of TS.endTime is 24:00 or 24:00:00, then the value “2359” shall be used as hhmm group.

ReferenceRule
(1)

If TS.startDate differs from TS.endDate, go through the alternate path, otherwise go through the direct path.

(2)

Format the data to show the month abbreviation followed by two digits (MMM DD), eg. AUG 23, according to item D NOTAM syntax. If the month value stored in TS.startDate is identical to the one stored in TS.startDate pertaining to a previous iteration, insert only the day of the month value stored in TS.startDate.

(3)

If the month value stored in TS.endDate is identical to the one stored in TS.startDate, insert only the day of the month value stored in TS.endDate.

(4)

If consecutive dates are stores in TS.startDate elements or if consecutive date periods are stored in TS.startDate and TS.endDate elements, add a dash between the start date and the end date.

(5)

If TS.startTime is used to indicate when the period included in the schedule starts, go through the direct path. Otherwise, if TS.startEvent is used, go through the alternate path.

(6)

Format the data contained in TS.startTime and TS.endTime according to NOTAM syntax for this item: hhmm. If the time value of TS.endTime is 24:00 or 24:00:00, then the value “2359” shall be used as hhmm group.

(7)

If TS.startTimeRelative and TS.endTimeRelativeEvent are used, format the data contained in these elements according to NOTAM syntax for this item by replacing '-' by 'MINUS' and '+' by 'PLUS'. 

(8)

If TS.endTime is used to indicate when the period included in the schedule ends, go through the direct path. Otherwise, if TS.endEvent is used, go through the alternate path.

(9)

An 'AND' shall be included before the last time period pertaining to the last date or date period in the schedule, only if there are multiple time periods associated to that date or date range and if there are no exceptions or exceptions containing just one weekday.

(10)

Sort the dates or date periods by month and then by day using the dates contained in TS.startDate. Then sort the time periods associated to each date or date period by the value contained in TS.startTime or in TS.startEvent, whichever is used. For sorting purpose, consider SR = 0600 LT and SS = 2000 LT.

(11)

A comma shall be used to separate groups of dates or date periods to which the same time periods apply.

(12)

An 'AND' shall be included before the last date or date period, only if a single time periods is associated to that date or date range and if there are no exceptions or exceptions containing just one weekday.

(13)

If there are any timesheets containing TS.excluded elements with the value 'YES', denoting a schedule with exceptions, select all of them and go through the direct path, otherwise go through the bypass path.

(14)Sort the exceptions by day.
(15)An 'AND' shall be included before the last exception day.
(16)Annotations shall be translated into free text according to the Encoding annotations rules.


Production Rule Weekdays

ReferenceRule
(1)

If TS.dayTill is used to indicate when the period included in the schedule ends, go through the alternate path, otherwise go through the direct path.

(2)

If the schedule comprises identical time periods on consecutive days, add a dash between the start and the end day.

(3)

If TS.startTime is used to indicate when the period included in the schedule starts, go through the direct path. Otherwise, if TS.startEvent is used, go through the alternate path.

(4)

Format the data contained in TS.startTime and TS.endTime according to NOTAM syntax for this item: hhmm.

(5)

If TS.startTimeRelativeEvent and TS.endTimeRelativeEvent are used, format the data contained in these elements according to NOTAM syntax for this item by replacing '-' by 'MINUS' and '+' by 'PLUS'.

(6)

If TS.endTime is used to indicate when the period included in the schedule ends, go through the direct path. Otherwise, if TS.endEvent is used, go through the alternate path.

(7)

An 'AND' shall be included before the last time period pertaining to the last day or day range in the schedule, only if there are multiple time periods associated to that day or day range and if there are no exceptions or exceptions containing just one date or date range.

(8)

Sort the days or day ranges by the value contained in TS.day. Then sort the time periods associated to each day or day range by the value contained in TS.startTime or in TS.startEvent, whichever is used. For sorting purpose, consider SR = 0600 LT and SS = 2000 LT.

(9)

A comma shall be used to separate groups of days or day ranges to which the same time periods apply.

(10)

An 'AND' shall be included before the last day or day range, only if a single time period is associated to that day or day range and if there are no exceptions or exceptions containing just one date.

(11)

If there are any timesheets containing TS.excluded elements with the value 'YES', denoting a schedule with exceptions, select all of them and go through the direct path, otherwise go through the bypass path.

(12)

Format the data to show the month abbreviation followed by two digits (MMM DD), eg. AUG 23, according to item D NOTAM syntax.

(13)

If consecutive dates are stored in TS.startDate elements, add a dash between the start date and the end date.

(14)

An 'AND' shall be included before the last date or date period.

(15)

Sort the dates or date periods by month and then by day using the dates contained in TS.startDate.

(16)

Annotations shall be translated into free text according to the Encoding annotations rules.



  • No labels