forked from EcoNet-NZ/inaturalist-to-cams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cams_schema.json
197 lines (197 loc) · 6.55 KB
/
cams_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
{
"WeedLocations": {
"Date First Observed": {
"name": "DateDiscovered",
"type": "Date"
},
"Species": {
"name": "SpeciesDropDown",
"type": "String",
"length": 256,
"ref" : "taxon_mapping.json"
},
"DataSource": {
"name": "SiteSource",
"type": "String",
"length": 39,
"values": {
"iNaturalist": "iNaturalist_v1"
},
"legacy_values": {
"iNaturalist": "iNaturalist"
}
},
"Location details": {
"name": "LocationInfo",
"type": "String",
"length": 256
},
"Effort to control": {
"name": "Urgency",
"type": "Integer",
"range": "[1, 5]"
},
"CurrentStatus":{
"name": "ParentStatusWithDomain",
"type": "String",
"length": 80,
"values": {
"RED": "RedGrowth",
"PURPLE": "PurpleHistoric",
"ORANGE": "OrangeDeadHeaded",
"PINK": "PinkOccupantWillKillGrowth",
"YELLOW": "YellowKilledThisYear",
"GREEN": "GreenNoRegrowthThisYear",
"GRAY": "GrayDuplicate",
"BLACK": "BlackNoGrowthExpected"
}
},
"iNaturalistURL": {
"name": "iNatURL",
"type": "String",
"length": 256
}
},
"Visits_Table": {
"Date Visit Made": {
"name": "DateCheck",
"type": "Date"
},
"Area m2": {
"name": "Area",
"type": "Double"
},
"Height": {
"name": "Height",
"type": "Double"
},
"Treated": {
"name": "Treated",
"type": "String",
"length": 255,
"values": {
"Yes" : "Yes",
"No" : "No",
"Unknown" : "DontKnow",
"Not Yet" : "NotYet",
"Partially" : "Partially"
}
},
"How treated": {
"name": "HowTreated",
"type": "String",
"length": 255,
"values": {
"No treatment" : "NoTreatment",
"Cut but roots remain" : "CutButRootsRemain",
"Pulled or dug" : "PulledOrDug",
"Ringbark" : "Ringbark",
"Cut and paint" : "CutAndPaint",
"Drill and fill" : "DrillAndFill",
"Scrape stem and paste": "ScrapeStemAndPaste",
"Spray leaves" : "SprayLeaves",
"Poisoned" : "Poisoned",
"Don't know" : "DontKnow"
}
},
"Treatment substance": {
"name": "TreatmentSubstance",
"type": "String",
"length": 80,
"values": {
"CutNPaste Original Gel" : "CutNPasteOriginalGel",
"CutNPaste Bamboo Buster Gel" : "CutNPasteBambooBusterGel",
"CutNPaste Glimax" : "CutNPasteGlimax",
"CutNPaste MetGel" : "CutNPasteMetGel ",
"CutNPaste Picloram Gel" : "CutNPastePicloramGel",
"Dow Vigilant II" : "DowVigilantII",
"Weed Weapon Invade Gel" : "WeedWeaponInvadeGel",
"Weed Weapon Stump-Stop-Gel" : "WeedWeaponStumpStopGel",
"OTHER-TREATMENT" : "OTHERTREATMENT"
}
},
"Treatment details": {
"name": "TreatmentDetails",
"type": "String",
"length": 256
},
"Plant phenology->most common flowering/fruiting reproductive stage": {
"name": "Flowering",
"type": "String",
"length": 255,
"values": {
"not recorded" : "0DontKnow",
"vegetative only" : "4NoSignOfFlowering",
"flower buds" : "2BudsForming",
"flowers" : "3FlowersVisible",
"immature fruit" : "7PodsForming",
"mature fruit" : "8PodsBursting",
"seed dispersed" : "9SeedDispersed"
}
},
"Radius (m) of area surveyed": {
"name": "CheckedNearbyRadius",
"type": "Double"
},
"description": {
"name": "NotesAndDetails",
"length": 5000,
"type": "String"
},
"Follow-up (YYYY-MM)": {
"name": "DateForReturnVisit",
"type": "Date"
},
"id": {
"name": "iNatRef",
"type": "String",
"length": 72
},
"url": {
"name": "iNaturalistURL",
"type": "String",
"length": 256
},
"Site difficulty": {
"name": "SiteDifficulty",
"type": "String",
"length": 256,
"values": {
"1 Easy (for most people)" : "1Easy",
"2 Moderate" : "2Moderate",
"3 Challenging (may be rough or steep)" : "3Challenging",
"4 Advanced (beyond most abilities)" : "4Advanced",
"5 Professional skills required (eg rope access)" : "5Professional"
}
},
"ObservationQuality": {
"name": "ObservationQuality",
"type": "String",
"length": 256,
"values": {
"needs_id": "needs_id",
"casual": "casual",
"research": "research_grade"
}
},
"WeedVisitStatus": {
"name": "WeedVisitStatus",
"type": "String",
"length": 80,
"values": {
"RED": "RedGrowth",
"PURPLE": "PurpleHistoric",
"ORANGE": "OrangeDeadHeaded",
"PINK": "PinkOccupantWillKillGrowth",
"YELLOW": "YellowKilledThisYear",
"GREEN": "GreenNoRegrowthThisYear",
"GRAY": "GrayDuplicate",
"BLACK": "BlackNoGrowthExpected"
}
},
"GUID_visits": {
"name": "GUID_visits",
"type": "GUID"
}
}
}