DCS func getParking
From DCS World Wiki - Hoggitworld.com
| Envrioment: | Mission Scripting | ||
| Function: | getParking | Added with: 2.5.2 | |
| Member Of: | Airbase | ||
| Syntax: | table Airbase.getParking(Class Self , boolean available) | ||
| Description: | Returns a table of parking data for a given airbase. If the optional value is passed only available parking will be returned, otherwise all parking at the base is returned. Term types have a value of 16, 68, or 104.
Term_index is the id for the parking vTerminal pos is its vec3 position in the world fDistToRW is the distance to the take-off position for the active runway from the parking.
| ||
| Return Value: | table | ||
| Return Example: | Table:
[1] =
{
["Term_Index"] = 56,
["vTerminalPos"] =
{
["y"] = 20.010303497314,
["x"] = -7676.2456054688,
["z"] = 293953.5625,
}, -- end of ["vTerminalPos"]
["TO_AC"] = false,
["Term_Index_0"] = -1,
["Term_Type"] = 68,
["fDistToRW"] = 451.77697753906,
}, -- end of [3]
[2] =
{
["Term_Index"] = 55,
["vTerminalPos"] =
{
["y"] = 20.010303497314,
["x"] = -7178.9565429688,
["z"] = 294729.28125,
}, -- end of ["vTerminalPos"]
["TO_AC"] = false,
["Term_Index_0"] = -1,
["Term_Type"] = 104,
["fDistToRW"] = 1477.7482910156,
}
| ||
| Examples: | |||
| Related Functions: | Airbase Functions: getCallsign, getUnit, getID, getCategoryEx, getParking, getRunways, getTechObjectPos, getDispatcherTowerPos, getRadioSilentMode, setRadioSilentMode, autoCapture, autoCaptureIsOn, setCoalition, getWarehouse, | ||
| Notes: | Function is WIP and is subject to change from its initial implementation in 2.5.2. | ||