A procedure identifier, linking a chart to a procedure at its airport, part of an FsChartMetadata.

 

Syntax
struct FsChartProcedureIdentifier
{
    FsChartProcedureIdentifierType type;
    char ident[8];
    FsApproachIdentifier approachIdentifier;
    bool hasApproachIdentifier;
    FsRunwayIdentifier* runways;
    int numRunways;
    char runwayTransition[8];
    char enrouteTransition[8];
    bool hasEnrouteTransition;
};

 

Members
MemberDescription
typeThe type of procedure being identified.
identThe procedure’s 7-letter identifier, empty if an approach.
approachIdentifierThe procedure’s approach identifier, if it is an approach. Only valid if hasApproachIdentifier is true.
hasApproachIdentifierWhether approachIdentifier is present and valid.
runwaysThe identifiers of the runways this procedure applies to.
numRunwaysThe number of runways this procedure applies to.
enrouteTransitionThe enroute transition, if applicable, that this identifier is pointing to. Only valid if hasEnrouteTransition is true.
hasEnrouteTransitionWhether the enrouteTransition is present and valid.

 

Remarks

N/A