Ignore:
Timestamp:
04/30/25 15:05:04 (2 days ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Message:

The "real" and "extended" ICAO codes of airplanes are distinguished.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/const.py

    r1183 r1184  
    214214              AIRCRAFT_B737  : "B737",
    215215              AIRCRAFT_B738  : "B738",
    216               AIRCRAFT_B738C : "B738C",
     216              AIRCRAFT_B738C : "B738",
    217217              AIRCRAFT_B732  : "B732",
    218218              AIRCRAFT_B733  : "B733",
     
    230230              AIRCRAFT_B462  : "B462" }
    231231
     232## A mapping of aircraft types to their 'extended' ICAO codes, which
     233# are usually the same as the 'internal' ones above, but in certain
     234# cases 'sub-types' are distinguished
     235extendedICAOCodes = icaoCodes.copy()
     236extendedICAOCodes[AIRCRAFT_B738C] = "B738C"
     237
    232238#-------------------------------------------------------------------------------
    233239
Note: See TracChangeset for help on using the changeset viewer.