FWLandingPattern.FactMetaData.json 2.1 KB
Newer Older
1
[
2
{
3
    "name":             "LandingDistance",
4 5 6
    "shortDescription": "Distance between landing and loiter points.",
    "type":             "double",
    "units":            "m",
7
    "min":              10,
8
    "decimalPlaces":    1,
Don Gagne's avatar
Don Gagne committed
9
    "defaultValue":     300.0
10 11
},
{
12
    "name":             "LandingHeading",
Don Gagne's avatar
Don Gagne committed
13
    "shortDescription": "Heading from loiter point to land point.",
14 15
    "type":             "double",
    "units":            "deg",
Don Gagne's avatar
Don Gagne committed
16 17
    "min":              0.0,
    "max":              360.0,
Don Gagne's avatar
Don Gagne committed
18
    "decimalPlaces":    0,
Don Gagne's avatar
Don Gagne committed
19
    "defaultValue":     270.0
20 21
},
{
22
    "name":             "LoiterAltitude",
23
    "shortDescription": "Aircraft will proceed to the loiter point and loiter until it reaches this altitude. Once altitude is reached the aircraft will proceed to land.",
24 25 26 27 28 29
    "type":             "double",
    "units":            "m",
    "decimalPlaces":    1,
    "defaultValue":     40.0
},
{
30
    "name":             "LoiterRadius",
31 32 33
    "shortDescription": "Loiter radius.",
    "type":             "double",
    "decimalPlaces":    1,
34
    "min":              1,
35 36 37 38
    "units":            "m",
    "defaultValue":     75.0
},
{
39
    "name":             "LandingAltitude",
40 41 42 43 44
    "shortDescription": "Altitude for landing point.",
    "type":             "double",
    "units":            "m",
    "decimalPlaces":    1,
    "defaultValue":     0.0
45 46
},
{
47 48
    "name":             "GlideSlope",
    "shortDescription": "The glide slope between the loiter and landing point.",
49
    "type":             "double",
50
    "units":            "deg",
51
    "min":              0.1,
52
    "max":              90,
53
    "decimalPlaces":    1,
54 55 56 57 58 59 60
    "defaultValue":     6.0
},
{
    "name":             "ValueSetIsDistance",
    "shortDescription": "Value controller loiter point is distance",
    "type":             "bool",
    "defaultValue":     false
61 62 63 64 65 66 67 68 69 70 71 72
},
{
    "name":             "StopTakingPhotos",
    "shortDescription": "Stop taking photos",
    "type":             "bool",
    "defaultValue":     true
},
{
    "name":             "StopTakingVideo",
    "shortDescription": "Stop taking video",
    "type":             "bool",
    "defaultValue":     true
73
}
74
]