EditPositionDialog.FactMetaData.json 1.22 KB
Newer Older
1 2 3 4
{
    "version":      1,
    "fileType":  "FactMetaData",
    "QGC.MetaData.Facts":
5 6 7
[
{
    "name":             "Latitude",
8
    "shortDesc": "Latitude of item position",
9 10 11 12 13 14 15
    "type":             "double",
    "min":              -90.0,
    "max":              90.0,
    "decimalPlaces":    7
},
{
    "name":             "Longitude",
16
    "shortDesc": "Longitude of item position",
17 18 19 20 21 22 23
    "type":             "double",
    "min":              -180.0,
    "max":              180.0,
    "decimalPlaces":    7
},
{
    "name":             "Easting",
24
    "shortDesc": "Easting of item position",
25 26 27 28 29
    "type":             "double",
    "decimalPlaces":    7
},
{
    "name":             "Northing",
30
    "shortDesc": "Northing of item position",
31 32 33 34 35
    "type":             "double",
    "decimalPlaces":    7
},
{
    "name":             "Zone",
36
    "shortDesc": "UTM zone",
37 38 39 40 41 42
    "type":             "uint8",
    "min":              1,
    "max":              60
},
{
    "name":             "Hemisphere",
43
    "shortDesc": "Hemisphere for position",
44 45 46
    "type":             "uint8",
    "enumStrings":      "North,South",
    "enumValues":       "0,1"
47 48 49 50 51
},
{
    "name":             "MGRS",
    "shortDesc": "MGRS coordinate",
    "type":             "string"
52 53
}
]
54
}