Survey.FactMetaData.json 3.09 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
[
{
    "name":             "Altitude",
    "shortDescription": "Altitude for all waypoints within the grid.",
    "type":             "double",
    "units":            "m",
    "decimalPlaces":    1
},
{
    "name":             "Grid angle",
    "shortDescription": "Angle for parallel lines of grid.",
    "type":             "double",
    "units":            "deg",
    "decimalPlaces":    1
},
{
    "name":             "Grid spacing",
    "shortDescription": "Amount of spacing in between parallel grid lines.",
    "type":             "double",
    "decimalPlaces":    2,
Don Gagne's avatar
Don Gagne committed
21
    "min":              0.1,
22 23 24
    "units":            "m"
},
{
Don Gagne's avatar
Don Gagne committed
25
    "name":             "Turnaround dist",
26 27 28
    "shortDescription": "Amount of additional distance to add outside the grid area for vehicle turnaround.",
    "type":             "double",
    "decimalPlaces":    2,
Don Gagne's avatar
Don Gagne committed
29
    "min":              0,
30 31
    "units":            "m"
},
Don Gagne's avatar
Don Gagne committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
{
    "name":             "Ground resolution",
    "shortDescription": "Resolution of image in relationship to ground distance.",
    "type":             "double",
    "decimalPlaces":    2,
    "min":              0,
    "units":            "cm/px"
},
{
    "name":             "Frontal overlap",
    "shortDescription": "Amount of overlap between images in the forward facing direction.",
    "type":             "double",
    "decimalPlaces":    0,
    "max":              75,
    "units":            "%"
},
{
    "name":             "Side overlap",
    "shortDescription": "Amount of overlap between images in the side facing direction.",
    "type":             "double",
    "decimalPlaces":    0,
    "max":              75,
    "units":            "%"
},
{
    "name":             "Camera sensor width",
    "shortDescription": "Amount of overlap between images in the side facing direction.",
    "type":             "double",
    "decimalPlaces":    2,
    "min":              1,
    "units":            "mm"
},
{
    "name":             "Camera sensor height",
    "shortDescription": "Amount of overlap between images in the side facing direction.",
    "type":             "double",
    "decimalPlaces":    2,
    "min":              1,
    "units":            "mm"
},
{
    "name":             "Camera resolution width",
    "shortDescription": "Amount of overlap between images in the side facing direction.",
    "type":             "uint32",
    "min":              1,
    "units":            "px"
},
{
    "name":             "Camera resolution height",
    "shortDescription": "Amount of overlap between images in the side facing direction.",
    "type":             "uint32",
    "min":              1,
    "units":            "px"
},
{
    "name":             "Focal length",
    "shortDescription": "Amount of overlap between images in the side facing direction.",
    "type":             "double",
    "decimalPlaces":    1,
    "min":              1,
    "units":            "mm"
},
94 95 96 97 98
{
    "name":             "Camera trigger distance",
    "shortDescription": "Distance between each triggering of the camera.",
    "type":             "double",
    "decimalPlaces":    2,
Don Gagne's avatar
Don Gagne committed
99
    "min":              0.1,
100 101 102
    "units":            "m"
}
]