GPSFact.json 1.15 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
{
    "version": 1,

    "properties": [
        {
            "name":             "hdop",
            "shortDescription": "HDOP",
            "type":             "double",
            "decimalPlaces":    1
        },
        {
            "name":             "vdop",
            "shortDescription": "VDOP",
            "type":             "double",
            "decimalPlaces":    1
        },
        {
            "name":             "courseOverGround",
            "shortDescription": "Course Over Ground",
            "type":             "double",
            "decimalPlaces":    1,
22
            "units":            "deg"
Don Gagne's avatar
Don Gagne committed
23 24 25 26 27
        },
        {
            "name":             "lock",
            "shortDescription": "GPS Lock",
            "type":             "uint32",
28 29
            "enumStrings":      "None,None,2D Lock,3D Lock,3D DGPS Lock,3D RTK GPS Lock (float),3D RTK GPS Lock (fixed)",
            "enumValues":       "0,1,2,3,4,5,6",
Don Gagne's avatar
Don Gagne committed
30 31 32 33 34 35 36 37 38 39
            "decimalPlaces":    0
        },
        {
            "name":             "count",
            "shortDescription": "Sat Count",
            "type":             "double",
            "decimalPlaces":    0
        }
    ]
}