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