-
Notifications
You must be signed in to change notification settings - Fork 5
/
deployments-table-schema.json
285 lines (285 loc) · 9.18 KB
/
deployments-table-schema.json
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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
{
"name": "deployments",
"title": "Deployments",
"description": "Table with camera trap placements (deployments). Includes `deploymentID`, start, end, location and camera setup information.",
"fields": [
{
"name": "deploymentID",
"description": "Unique identifier of the deployment.",
"skos:broadMatch": "http://rs.tdwg.org/dwc/terms/eventID",
"type": "string",
"constraints": {
"required": true,
"unique": true
},
"example": "dep1"
},
{
"name": "locationID",
"description": "Identifier of the deployment location.",
"skos:exactMatch": "http://rs.tdwg.org/dwc/terms/locationID",
"type": "string",
"constraints": {
"required": false
},
"example": "loc1"
},
{
"name": "locationName",
"description": "Name given to the deployment location.",
"skos:exactMatch": "http://rs.tdwg.org/dwc/terms/locality",
"type": "string",
"constraints": {
"required": false
},
"example": "Białowieża MRI 01"
},
{
"name": "latitude",
"description": "Latitude of the deployment location in decimal degrees, using the WGS84 datum.",
"skos:broadMatch": "http://rs.tdwg.org/dwc/terms/decimalLatitude",
"type": "number",
"constraints": {
"required": true,
"minimum": -90,
"maximum": 90
},
"example": 52.70442
},
{
"name": "longitude",
"description": "Longitude of the deployment location in decimal degrees, using the WGS84 datum.",
"skos:broadMatch": "http://rs.tdwg.org/dwc/terms/decimalLongitude",
"type": "number",
"constraints": {
"required": true,
"minimum": -180,
"maximum": 180
},
"example": 23.84995
},
{
"name": "coordinateUncertainty",
"description": "Horizontal distance from the given `latitude` and `longitude` describing the smallest circle containing the deployment location. Expressed in meters. Especially relevant when coordinates are rounded to protect sensitive species.",
"skos:exactMatch": "http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters",
"type": "integer",
"constraints": {
"required": false,
"minimum": 1
},
"unit": "m",
"example": 100
},
{
"name": "deploymentStart",
"description": "Date and time at which the deployment was started. Formatted as an ISO 8601 string with timezone designator (`YYYY-MM-DDThh:mm:ssZ` or `YYYY-MM-DDThh:mm:ss±hh:mm`).",
"skos:broadMatch": "http://rs.tdwg.org/dwc/terms/eventDate",
"type": "datetime",
"format": "%Y-%m-%dT%H:%M:%S%z",
"constraints": {
"required": true
},
"example": "2020-03-01T22:00:00Z"
},
{
"name": "deploymentEnd",
"description": "Date and time at which the deployment was ended. Formatted as an ISO 8601 string with timezone designator (`YYYY-MM-DDThh:mm:ssZ` or `YYYY-MM-DDThh:mm:ss±hh:mm`).",
"skos:broadMatch": "http://rs.tdwg.org/dwc/terms/eventDate",
"type": "datetime",
"format": "%Y-%m-%dT%H:%M:%S%z",
"constraints": {
"required": true
},
"example": "2020-04-01T22:00:00Z"
},
{
"name": "setupBy",
"description": "Name or identifier of the person or organization that deployed the camera.",
"skos:broadMatch": "http://rs.tdwg.org/eco/terms/samplingPerformedBy",
"type": "string",
"constraints": {
"required": false
},
"example": "Jakub Bubnicki"
},
{
"name": "cameraID",
"description": "Identifier of the camera used for the deployment (e.g. the camera device serial number).",
"type": "string",
"constraints": {
"required": false
},
"example": "P800HG08192031"
},
{
"name": "cameraModel",
"description": "Manufacturer and model of the camera. Formatted as `manufacturer-model`.",
"skos:broadMatch": "http://rs.tdwg.org/ac/terms/captureDevice",
"type": "string",
"constraints": {
"required": false
},
"example": "Reconyx-PC800"
},
{
"name": "cameraDelay",
"description": "Predefined duration after detection when further activity is ignored. Expressed in seconds.",
"type": "integer",
"constraints": {
"required": false,
"minimum": 0
},
"example": 120
},
{
"name": "cameraHeight",
"description": "Height at which the camera was deployed. Expressed in meters. Not to be combined with `cameraDepth`.",
"skos:narrowMatch": [
"http://rs.tdwg.org/dwc/terms/minimumDistanceAboveSurfaceInMeters",
"http://rs.tdwg.org/dwc/terms/maximumDistanceAboveSurfaceInMeters"
],
"type": "number",
"constraints": {
"required": false,
"minimum": 0
},
"unit": "m",
"example": 1.2
},
{
"name": "cameraDepth",
"description": "Depth at which the camera was deployed. Expressed in meters. Not to be combined with `cameraHeight`.",
"skos:narrowMatch": [
"http://rs.tdwg.org/dwc/terms/minimumDepthInMeters",
"http://rs.tdwg.org/dwc/terms/maximumDepthInMeters"
],
"type": "number",
"constraints": {
"required": false,
"minimum": 0
},
"unit": "m",
"example": 4.8
},
{
"name": "cameraTilt",
"description": "Angle at which the camera was deployed in the vertical plane. Expressed in degrees, with `-90` facing down, `0` horizontal and `90` facing up.",
"type": "integer",
"constraints": {
"required": false,
"minimum": -90,
"maximum": 90
},
"unit": "°",
"example": -90
},
{
"name": "cameraHeading",
"description": "Angle at which the camera was deployed in the horizontal plane. Expressed in decimal degrees clockwise from north, with values ranging from `0` to `360`: `0` = north, `90` = east, `180` = south, `270` = west.",
"type": "integer",
"constraints": {
"required": false,
"minimum": 0,
"maximum": 360
},
"unit": "°",
"example": 225
},
{
"name": "detectionDistance",
"description": "Maximum distance at which the camera can reliably detect activity. Expressed in meters. Typically measured by having a human move in front of the camera.",
"type": "number",
"constraints": {
"required": false,
"minimum": 0
},
"unit": "m",
"example": 9.5
},
{
"name": "timestampIssues",
"description": "`true` if timestamps in the `media` resource for the deployment are known to have (unsolvable) issues (e.g. unknown timezone, am/pm switch).",
"type": "boolean",
"constraints": {
"required": false
},
"example": false
},
{
"name": "baitUse",
"description": "`true` if bait was used for the deployment. More information can be provided in `tags` or `comments`.",
"type": "boolean",
"constraints": {
"required": false
},
"example": true
},
{
"name": "featureType",
"description": "Type of the feature (if any) associated with the deployment.",
"type": "string",
"constraints": {
"required": false,
"enum": [
"roadPaved",
"roadDirt",
"trailHiking",
"trailGame",
"roadUnderpass",
"roadOverpass",
"roadBridge",
"culvert",
"burrow",
"nestSite",
"carcass",
"waterSource",
"fruitingTree"
]
},
"example": "culvert"
},
{
"name": "habitat",
"description": "Short characterization of the habitat at the deployment location.",
"skos:exactMatch": "http://rs.tdwg.org/dwc/terms/habitat",
"type": "string",
"constraints": {
"required": false
},
"example": "Mixed temperate low-land forest"
},
{
"name": "deploymentGroups",
"description": "Deployment group(s) associated with the deployment. Deployment groups can have a spatial (arrays, grids, clusters), temporal (sessions, seasons, months, years) or other context. Formatted as a pipe (`|`) separated list for multiple values, with values preferably formatted as `key:value` pairs.",
"type": "string",
"constraints": {
"required": false
},
"example": "season:winter 2020 | grid:A1"
},
{
"name": "deploymentTags",
"description": "Tag(s) associated with the deployment. Formatted as a pipe (`|`) separated list for multiple values, with values optionally formatted as `key:value` pairs.",
"skos:exactMatch": "http://rs.tdwg.org/ac/terms/tag",
"type": "string",
"constraints": {
"required": false
},
"example": "forest edge | bait:food"
},
{
"name": "deploymentComments",
"description": "Comments or notes about the deployment.",
"skos:exactMatch": "http://rs.tdwg.org/dwc/terms/eventRemarks",
"type": "string",
"constraints": {
"required": false
},
"example": ""
}
],
"missingValues": [
""
],
"primaryKey": "deploymentID"
}