Ignore:
Timestamp:
02/04/12 15:10:19 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

The tracking of flight stages and some basic logging functionality works

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/const.py

    r7 r8  
    7070AIRCRAFT_YK40 = 15
    7171
     72#-------------------------------------------------------------------------------
     73
     74# Flight stage: boarding
     75STAGE_BOARDING = 1
     76
     77# Flight stage: pushback, startup and taxi
     78STAGE_PUSHANDTAXI = 2
     79
     80# Flight stage: takeoff
     81STAGE_TAKEOFF = 3
     82
     83# Flight stage: RTO
     84STAGE_RTO = 4
     85
     86# Flight stage: climb
     87STAGE_CLIMB = 5
     88
     89# Flight stage: cruise
     90STAGE_CRUISE = 6
     91
     92# Flight stage: descent
     93STAGE_DESCENT = 7
     94
     95# Flight stage: landing
     96STAGE_LANDING = 8
     97
     98# Flight stage: taxi after landing
     99STAGE_TAXIAFTERLAND = 9
     100
     101# Flight stage: parking
     102STAGE_PARKING = 10
     103
     104# Flight stage: go-around
     105STAGE_GOAROUND = 11
     106
     107# Flight stage: end
     108STAGE_END = 12
Note: See TracChangeset for help on using the changeset viewer.