RTK.SettingsGroup.json 2.65 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2
[
{
3 4 5 6 7 8 9 10 11
    "name":                 "SurveyInAccuracyLimit",
    "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 15 16 17 18 19 20 21 22
    "name":                 "SurveyInMinObservationDuration",
    "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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
},
{
    "name":                 "UseFixedBasePosition",
    "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
},
{
    "name":                 "FixedBasePositionLatitude",
    "shortDescription":     "Base Position Latitude",
    "longDescription":      "Defines the latitude of the fixed RTK base position.",
    "type":                 "double",
    "defaultValue":         0,
    "min":                  -90,
    "max":                  90,
    "decimalPlaces":        7,
    "qgcRebootRequired":    true
},
{
    "name":                 "FixedBasePositionLongitude",
    "shortDescription":     "Base Position Longitude",
    "longDescription":      "Defines the longitude of the fixed RTK base position.",
    "type":                 "double",
    "defaultValue":         0,
    "min":                  -180,
    "max":                  180,
    "decimalPlaces":        7,
    "qgcRebootRequired":    true
},
{
    "name":                 "FixedBasePositionAltitude",
    "shortDescription":     "Base Position Altitude",
    "longDescription":      "Defines the altitude of the fixed RTK base position.",
    "type":                 "float",
    "defaultValue":         0,
    "units":                "m",
    "decimalPlaces":        2,
    "qgcRebootRequired":    true
},
{
    "name":                 "FixedBasePositionAccuracy",
    "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
}
]