WimaController.SettingsGroup.json 3.14 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
[
{
    "name":             "EnableWimaController",
    "shortDescription": "Enables or disables the WimaController, which performes different tasks inside the flight view window.",
    "type":             "bool",
    "defaultValue":     1
},
{
    "name":             "OverlapWaypoints",
    "shortDescription": "Determines the number of overlapping waypoints between two consecutive mission phases.",
    "type":             "uint32",
    "defaultValue":     2
},
{
    "name":             "MaxWaypointsPerPhase",
16
    "shortDescription": "Determines the maximum number of waypoints per phase. This number does not include the arrival and return path.",
17
    "type":             "uint32",
18
    "min" :             1,
19 20 21 22 23
    "defaultValue":     30
},
{
    "name":             "StartWaypointIndex",
    "shortDescription": "The index of the start waypoint for the next mission phase.",
24 25
    "type":             "uint32",    
    "min" :             1,
26 27 28 29 30 31 32 33 34 35 36 37 38
    "defaultValue":     1
},
{
    "name":             "ShowAllMissionItems",
    "shortDescription": "Determines whether the mission items of the overall mission are displayed or not.",
    "type":             "bool",
    "defaultValue":     1
},
{
    "name":             "ShowCurrentMissionItems",
    "shortDescription": "Determines whether the mission items of the current mission phase are displayed or not.",
    "type":             "bool",
    "defaultValue":     1
39 40 41
},
{
    "name":             "FlightSpeed",
42
    "shortDescription": "The phase flight speed.",
43 44 45 46 47
    "type":             "double",
    "min" :             0.3,
    "max" :             5,
    "defaultValue":     2
},
48 49 50 51 52 53 54 55
{
    "name":             "ArrivalReturnSpeed",
    "shortDescription": "The flight speed for arrival and return path.",
    "type":             "double",
    "min" :             0.3,
    "max" :             5,
    "defaultValue":     5
},
56 57 58 59 60 61
{
    "name":             "Altitude",
    "shortDescription": "The mission altitude.",
    "type":             "double",
    "min" :             1,
    "defaultValue":     5
62 63 64 65 66 67
},
{
    "name":             "Reverse",
    "shortDescription": "Reverses the phase direction. Phases go from high to low waypoint numbers, if checked.",
    "type":             "bool",
    "defaultValue":     false
Valentin Platzgummer's avatar
Valentin Platzgummer committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
},
{
    "name":             "SnakeTileWidth",
    "shortDescription": "Snake: Tile Width.",
    "type":             "double",
    "min" :             0.3,
    "defaultValue":     5
},
{
    "name":             "SnakeTileHeight",
    "shortDescription": "Snake: Tile Height.",
    "type":             "double",
    "min" :             0.3,
    "defaultValue":     5
},
{
    "name":             "SnakeMinTileArea",
    "shortDescription": "Snake: Minimal Tile Area.",
    "type":             "double",
    "min" :             0.1,
    "defaultValue":     5
},
{
    "name":             "SnakeLineDistance",
    "shortDescription": "Snake: Line Distance.",
    "type":             "double",
    "min" :             0.3,
    "defaultValue":     2
},
{
    "name":             "SnakeMinTransectLength",
    "shortDescription": "Snake: Minimal Transect Length.",
    "type":             "double",
    "min" :             0.3,
    "defaultValue":     2
103 104
}
]