RTK.SettingsGroup.json 2.75 KB
Newer Older
1 2 3 4
{
    "version":      1,
    "fileType":  "FactMetaData",
    "QGC.MetaData.Facts":
Don Gagne's avatar
Don Gagne committed
5 6
[
{
7
    "name":                 "surveyInAccuracyLimit",
8
    "shortDescription":     "Survey in accuracy (U-blox only)",
9
    "longDescription":      "The minimum accuracy value that Survey-In must achieve before it can complete.",
10 11
    "type":                 "double",
    "defaultValue":         2.0,
12
    "min":                  0.01,
13
    "units":                "m",
14
    "decimalPlaces":        2,
15
    "qgcRebootRequired":    true
Don Gagne's avatar
Don Gagne committed
16 17
},
{
18
    "name":                 "surveyInMinObservationDuration",
19 20 21 22 23 24 25 26
    "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
27 28
},
{
29
    "name":                 "useFixedBasePosition",
30 31 32 33 34 35 36
    "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
},
{
37
    "name":                 "fixedBasePositionLatitude",
38 39 40 41 42 43
    "shortDescription":     "Base Position Latitude",
    "longDescription":      "Defines the latitude of the fixed RTK base position.",
    "type":                 "double",
    "defaultValue":         0,
    "min":                  -90,
    "max":                  90,
44
    "decimalPlaces":        9,
45 46 47
    "qgcRebootRequired":    true
},
{
48
    "name":                 "fixedBasePositionLongitude",
49 50 51 52 53 54
    "shortDescription":     "Base Position Longitude",
    "longDescription":      "Defines the longitude of the fixed RTK base position.",
    "type":                 "double",
    "defaultValue":         0,
    "min":                  -180,
    "max":                  180,
55
    "decimalPlaces":        9,
56 57 58
    "qgcRebootRequired":    true
},
{
59
    "name":                 "fixedBasePositionAltitude",
60
    "shortDescription":     "Base Position Alt (WGS84)",
61 62 63 64 65 66 67 68
    "longDescription":      "Defines the altitude of the fixed RTK base position.",
    "type":                 "float",
    "defaultValue":         0,
    "units":                "m",
    "decimalPlaces":        2,
    "qgcRebootRequired":    true
},
{
69
    "name":                 "fixedBasePositionAccuracy",
70 71 72 73 74 75 76
    "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
77 78
}
]
79
}