MissionSettings.FactMetaData.json 921 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
[
{
    "name":             "PlannedHomePositionAltitude",
    "shortDescription": "Planned home position altitude",
    "type":             "double",
    "units":            "m",
    "decimalPlaces":    1,
    "defaultValue":     0
},
{
    "name":             "FlightSpeed",
    "shortDescription": "Flight speed for mission.",
    "type":             "double",
    "units":            "m/s",
    "min":              0,
    "decimalPlaces":    1
},
{
    "name":             "MissionEndAction",
    "shortDescription": "The action to take when the mission completed.",
    "type":             "uint32",
DonLakeFlyer's avatar
DonLakeFlyer committed
22 23
    "enumStrings":      "No action on mission end,Loiter after mission end,RTL after mission end",
    "enumValues":       "0,1,2",
24
    "defaultValue":     0
DonLakeFlyer's avatar
DonLakeFlyer committed
25 26 27 28 29 30
},
{
    "name":             "MissionName",
    "shortDescription": "Name for the mission.",
    "type":             "string",
    "defaultValue":     ""
31 32
}
]