CircularSurvey.SettingsGroup.json 1.42 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 31 32 33 34
},
{
    "name":             "IsSnakePath",
    "shortDescription": "Determines whether the transects are arranged in a snake or a zig-zag manner.",
    "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 47
},
{
    "name":             "MaxWaypoints",
    "shortDescription": "The maximum number of waypoints the circular survey can containt. To many waypoints cause a performance hit.",
    "type":             "uint32",
    "defaultValue":     2000,
    "min":              1
48 49
}
]