GPSFact.json 1.24 KB
Newer Older
1 2 3 4
{
    "version":      1,
    "fileType":  "FactMetaData",
    "QGC.MetaData.Facts":
5
[
6 7
{
    "name":             "lat",
8
    "shortDesc": "Latitude",
9 10 11 12 13
    "type":             "double",
    "decimalPlaces":    7
},
{
    "name":             "lon",
14
    "shortDesc": "Longitude",
15 16 17
    "type":             "double",
    "decimalPlaces":    7
},
18 19
{
    "name":             "mgrs",
20
    "shortDesc": "MGRS Position",
21 22
    "type":             "string"
},
Don Gagne's avatar
Don Gagne committed
23
{
24
    "name":             "hdop",
25
    "shortDesc": "HDOP",
26 27 28 29 30
    "type":             "double",
    "decimalPlaces":    1
},
{
    "name":             "vdop",
31
    "shortDesc": "VDOP",
32 33 34 35 36
    "type":             "double",
    "decimalPlaces":    1
},
{
    "name":             "courseOverGround",
37
    "shortDesc": "Course Over Ground",
38 39 40 41 42 43
    "type":             "double",
    "decimalPlaces":    1,
    "units":            "deg"
},
{
    "name":             "lock",
44
    "shortDesc": "GPS Lock",
45
    "type":             "uint32",
Don Gagne's avatar
Don Gagne committed
46 47
    "enumStrings":      "None,None,2D Lock,3D Lock,3D DGPS Lock,3D RTK GPS Lock (float),3D RTK GPS Lock (fixed),Static (fixed)",
    "enumValues":       "0,1,2,3,4,5,6,7",
48 49 50 51
    "decimalPlaces":    0
},
{
    "name":             "count",
52
    "shortDesc": "Sat Count",
53
    "type":             "uint32"
Don Gagne's avatar
Don Gagne committed
54
}
55
]
56
}