SIMCONNECT_DATA_FACILITY_VOR
The SIMCONNECT_DATA_FACILITY_VOR structure is used to return information on a single VOR station in the facilities cache.
Syntax
struct SIMCONNECT_DATA_FACILITY_VOR: public SIMCONNECT_DATA_FACILITY_NDB{
DWORD Flags;
float fLocalizer;
double GlideLat;
double GlideLon;
double GlideAlt;
float fGlideSlopeAngle;
};
Members
Member | Description |
---|---|
Flags |
Flags indicating whether the other fields are valid or not.
|
fLocalizer |
The ILS localizer angle in degrees. |
GlideLat |
The latitude of the glide slope transmitter in degrees. |
GlideLon |
The longitude of the glide slope transmitter in degrees. |
GlideAlt |
The altitude of the glide slope transmitter in degrees. |
fGlideSlopeAngle |
The ILS approach angle in degrees. |
Remarks
This structure is returned as one element in the SIMCONNECT_RECV_VOR_LIST structure. It inherits all the members from SIMCONNECT_DATA_FACILITY_NDB.
See the remarks for SimConnect_RequestFacilitesList.
See Also