RTK.SettingsGroup.json 2.62 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 9
    "shortDesc":     "Survey in accuracy (U-blox only)",
    "longDesc":      "The minimum accuracy value that Survey-In must achieve before it can complete.",
10
    "type":                 "double",
11
    "default":         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
    "shortDesc":     "Minimum observation time",
    "longDesc":      "Defines the minimum amount of observation time for the position calculation.",
21
    "type":                 "Uint32",
22
    "default":         180,
23 24 25 26
    "min":                  1,
    "units":                "secs",
    "decimalPlaces":        0,
    "qgcRebootRequired":    true
27 28
},
{
29
    "name":                 "useFixedBasePosition",
30 31
    "shortDesc":     "Use specified base position",
    "longDesc":      "Specify the values for the RTK base position without having to do a survey in.",
32
    "type":                 "bool",
33
    "default":         false,
34 35 36
    "qgcRebootRequired":    true
},
{
37
    "name":                 "fixedBasePositionLatitude",
38 39
    "shortDesc":     "Base Position Latitude",
    "longDesc":      "Defines the latitude of the fixed RTK base position.",
40
    "type":                 "double",
41
    "default":         0,
42 43
    "min":                  -90,
    "max":                  90,
44
    "decimalPlaces":        9,
45 46 47
    "qgcRebootRequired":    true
},
{
48
    "name":                 "fixedBasePositionLongitude",
49 50
    "shortDesc":     "Base Position Longitude",
    "longDesc":      "Defines the longitude of the fixed RTK base position.",
51
    "type":                 "double",
52
    "default":         0,
53 54
    "min":                  -180,
    "max":                  180,
55
    "decimalPlaces":        9,
56 57 58
    "qgcRebootRequired":    true
},
{
59
    "name":                 "fixedBasePositionAltitude",
60 61
    "shortDesc":     "Base Position Alt (WGS84)",
    "longDesc":      "Defines the altitude of the fixed RTK base position.",
62
    "type":                 "float",
63
    "default":         0,
64 65 66 67 68
    "units":                "m",
    "decimalPlaces":        2,
    "qgcRebootRequired":    true
},
{
69
    "name":                 "fixedBasePositionAccuracy",
70 71
    "shortDesc":     "Base Position Accuracy",
    "longDesc":      "Defines the accuracy of the fixed RTK base position.",
72
    "type":                 "float",
73
    "default":         0,
74 75 76
    "units":                "m",
    "decimalPlaces":        2,
    "qgcRebootRequired":    true
Don Gagne's avatar
Don Gagne committed
77 78
}
]
79
}