FWLandingPattern.FactMetaData.json 1.13 KB
Newer Older
1
[
2 3 4 5 6 7 8 9 10 11 12 13 14
{
    "name":             "Landing distance",
    "shortDescription": "Distance between landing and loiter points.",
    "type":             "double",
    "units":            "m",
    "decimalPlaces":    1,
    "defaultValue":     100.0
},
{
    "name":             "Landing heading",
    "shortDescription": "Heading from land point to loiter point.",
    "type":             "double",
    "units":            "deg",
Don Gagne's avatar
Don Gagne committed
15 16
    "decimalPlaces":    0,
    "defaultValue":     0.0
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
},
{
    "name":             "Loiter altitude",
    "shortDescription": "Altitude to loiter prior to landing.",
    "type":             "double",
    "units":            "m",
    "decimalPlaces":    1,
    "defaultValue":     40.0
},
{
    "name":             "Loiter radius",
    "shortDescription": "Loiter radius.",
    "type":             "double",
    "decimalPlaces":    1,
    "min":              0.1,
    "units":            "m",
    "defaultValue":     75.0
},
{
    "name":             "Clockwise loiter",
    "shortDescription": "If true, loiter will be clockwise. False, loiter will be counter-clockwise.",
    "type":             "bool",
    "defaultValue":     true
}
41
]