RTK.SettingsGroup.json 2.65 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2
[
{
3
    "name":                 "surveyInAccuracyLimit",
4 5 6 7 8 9 10 11
    "shortDescription":     "Survey in accuracy (U-blox only)",
    "longDescription":      "The maximum accuracy allowed prior to completing survey in.",
    "type":                 "double",
    "defaultValue":         2.0,
    "min":                  0.5,
    "units":                "m",
    "decimalPlaces":        1,
    "qgcRebootRequired":    true
Don Gagne's avatar
Don Gagne committed
12 13
},
{
14
    "name":                 "surveyInMinObservationDuration",
15 16 17 18 19 20 21 22
    "shortDescription":     "Minimum observation time",
    "longDescription":      "Defines the minimum amount of observation time for the position calculation.",
    "type":                 "Uint32",
    "defaultValue":         180,
    "min":                  1,
    "units":                "secs",
    "decimalPlaces":        0,
    "qgcRebootRequired":    true
23 24
},
{
25
    "name":                 "useFixedBasePosition",
26 27 28 29 30 31 32
    "shortDescription":     "Use specified base position",
    "longDescription":      "Specify the values for the RTK base position without having to do a survey in.",
    "type":                 "bool",
    "defaultValue":         false,
    "qgcRebootRequired":    true
},
{
33
    "name":                 "fixedBasePositionLatitude",
34 35 36 37 38 39
    "shortDescription":     "Base Position Latitude",
    "longDescription":      "Defines the latitude of the fixed RTK base position.",
    "type":                 "double",
    "defaultValue":         0,
    "min":                  -90,
    "max":                  90,
40
    "decimalPlaces":        9,
41 42 43
    "qgcRebootRequired":    true
},
{
44
    "name":                 "fixedBasePositionLongitude",
45 46 47 48 49 50
    "shortDescription":     "Base Position Longitude",
    "longDescription":      "Defines the longitude of the fixed RTK base position.",
    "type":                 "double",
    "defaultValue":         0,
    "min":                  -180,
    "max":                  180,
51
    "decimalPlaces":        9,
52 53 54
    "qgcRebootRequired":    true
},
{
55
    "name":                 "fixedBasePositionAltitude",
56
    "shortDescription":     "Base Position Alt (WGS84)",
57 58 59 60 61 62 63 64
    "longDescription":      "Defines the altitude of the fixed RTK base position.",
    "type":                 "float",
    "defaultValue":         0,
    "units":                "m",
    "decimalPlaces":        2,
    "qgcRebootRequired":    true
},
{
65
    "name":                 "fixedBasePositionAccuracy",
66 67 68 69 70 71 72
    "shortDescription":     "Base Position Accuracy",
    "longDescription":      "Defines the accuracy of the fixed RTK base position.",
    "type":                 "float",
    "defaultValue":         0,
    "units":                "m",
    "decimalPlaces":        2,
    "qgcRebootRequired":    true
Don Gagne's avatar
Don Gagne committed
73 74
}
]