CircularSurvey.SettingsGroup.json 1.44 KB
Newer Older
1 2 3 4 5 6 7 8
[
{
    "name":             "DeltaR",
    "shortDescription": "The distance between two consecutive circles.",
    "type":             "double",
    "units":            "m",
    "min":              0.3,
    "decimalPlaces":    1,
9
    "defaultValue":     20.0
10 11 12 13 14 15 16
},
{
    "name":             "DeltaAlpha",
    "shortDescription": "Angle discretisation of the circles.",
    "type":             "double",
    "units":            "Deg",
    "min":              0.3,
17
    "max":              90,
18
    "decimalPlaces":    1,
19
    "defaultValue":     5.0
20 21 22 23 24 25 26 27 28
},
{
    "name":             "TransectMinLength",
    "shortDescription": "The minimal length transects must have to be accepted.",
    "type":             "double",
    "units":            "m",
    "min":              0.3,
    "decimalPlaces":    1,
    "defaultValue":     5.0
29 30
},
{
Valentin Platzgummer's avatar
Valentin Platzgummer committed
31 32
    "name":             "FixedDirection",
    "shortDescription": "Determines whether all transects have the same direction or not.",
33 34
    "type":             "bool",
    "defaultValue":     1
35 36 37
},
{
    "name":             "Reverse",
38
    "shortDescription": "Reverses the transect path.",
39 40
    "type":             "bool",
    "defaultValue":     0
41 42 43 44 45 46
},
{
    "name":             "MaxWaypoints",
    "shortDescription": "The maximum number of waypoints the circular survey can containt. To many waypoints cause a performance hit.",
    "type":             "uint32",
    "defaultValue":     2000,
47 48
    "min":              1,
    "max":              20000
49 50
}
]