Project

General

Profile

« Previous | Next » 

Revision 6676

dict2redmine: Put the definition before and outside of the fields table

View differences:

bin/dict2redmine
58 58
class RedmineDictWriter:
59 59
    '''Formats rows as Redmine sections containing a table'''
60 60
    
61
    def __init__(self, term_col, header, stream):
61
    def __init__(self, term_col, def_col, header, stream):
62 62
        header.pop(term_col)
63
        header.pop(def_col)
63 64
        
64 65
        self.term_col = term_col
66
        self.def_col = def_col
65 67
        self.header = header
66 68
        self.stream = stream
67 69
    
68 70
    def writerow(self, row):
69
        term = row.pop(self.term_col)
70
        self.stream.write('\nh3. '+term+'\n\n')
71
        term = row[self.term_col]
72
        def_ = row[self.def_col]
73
        self.stream.write('h3. '+term+'\n\n')
74
        if def_: self.stream.write(def_+'\n\n')
71 75
        
72 76
        table = RedmineTableWriter(self.stream)
73 77
        for i, col_name in enumerate(self.header):
74
            value = row[i]
75
            if value: table.writerow([redmine_bold(col_name), value])
78
            if i not in set([self.term_col, self.def_col]):
79
                value = row[i]
80
                if value: table.writerow([redmine_bold(col_name), value])
81
        self.stream.write('\n')
76 82

  
77 83

  
78 84
def main():
79
    try: _prog_name, term_col, sources_col = sys.argv
85
    try: _prog_name, term_col, def_col, sources_col = sys.argv
80 86
    except ValueError: raise SystemExit('Usage: '+sys.argv[0]
81
        +' <spreadsheet term_col# sources_col# >redmine')
82
    term_col, sources_col = map(int, [term_col, sources_col])
87
        +' <spreadsheet term_col# definition_col# sources_col# >redmine')
88
    term_col, def_col, sources_col = map(int, [term_col, def_col, sources_col])
83 89
    
84 90
    # Translate input
85 91
    reader = csv.reader(sys.stdin)
86 92
    header = reader.next()
87
    writer = RedmineDictWriter(term_col, header, sys.stdout)
93
    writer = RedmineDictWriter(term_col, def_col, header, sys.stdout)
88 94
    for row in reader:
89 95
        term = row[term_col]
90 96
        sources = row[sources_col].split(source_sep)
mappings/VegCore.redmine
1

  
2 1
h3. "dcterms:type":http://rs.tdwg.org/dwc/terms/#dcterms:type
3 2

  
4
|*Sources*|"DwC:dcterms:type":http://rs.tdwg.org/dwc/terms/#dcterms:type|
5 3

  
6 4
h3. "dcterms:modified":http://rs.tdwg.org/dwc/terms/#dcterms:modified
7 5

  
8
|*Definition*|I think is this merely an internal timestamp indicated when record last modified, not necessarily when determination (taxon name) last modified [Brad Boyle]|
9
|*Sources*|"DwC:dcterms:modified":http://rs.tdwg.org/dwc/terms/#dcterms:modified|
6
I think is this merely an internal timestamp indicated when record last modified, not necessarily when determination (taxon name) last modified [Brad Boyle]
10 7

  
8

  
11 9
h3. "dcterms:language":http://rs.tdwg.org/dwc/terms/#dcterms:language
12 10

  
13
|*Sources*|"DwC:dcterms:language":http://rs.tdwg.org/dwc/terms/#dcterms:language|
14 11

  
15 12
h3. "dcterms:rights":http://rs.tdwg.org/dwc/terms/#dcterms:rights
16 13

  
17
|*Sources*|"DwC:dcterms:rights":http://rs.tdwg.org/dwc/terms/#dcterms:rights|
18 14

  
19 15
h3. "dcterms:rightsHolder":http://rs.tdwg.org/dwc/terms/#dcterms:rightsHolder
20 16

  
21
|*Sources*|"DwC:dcterms:rightsHolder":http://rs.tdwg.org/dwc/terms/#dcterms:rightsHolder|
22 17

  
23 18
h3. "dcterms:accessRights":http://rs.tdwg.org/dwc/terms/#dcterms:accessRights
24 19

  
25
|*Sources*|"DwC:dcterms:accessRights":http://rs.tdwg.org/dwc/terms/#dcterms:accessRights|
26 20

  
27 21
h3. "dcterms:bibliographicCitation":http://rs.tdwg.org/dwc/terms/#dcterms:bibliographicCitation
28 22

  
29
|*Sources*|"DwC:dcterms:bibliographicCitation":http://rs.tdwg.org/dwc/terms/#dcterms:bibliographicCitation|
30 23

  
31 24
h3. "dcterms:references":http://rs.tdwg.org/dwc/terms/#dcterms:references
32 25

  
33
|*Sources*|"DwC:dcterms:references":http://rs.tdwg.org/dwc/terms/#dcterms:references|
34 26

  
35 27
h3. "institutionID":http://rs.tdwg.org/dwc/terms/#institutionID
36 28

  
37
|*Sources*|"DwC:institutionID":http://rs.tdwg.org/dwc/terms/#institutionID|
38 29

  
39 30
h3. "collectionID":http://rs.tdwg.org/dwc/terms/#collectionID
40 31

  
41
|*Sources*|"DwC:collectionID":http://rs.tdwg.org/dwc/terms/#collectionID|
42 32

  
43 33
h3. "datasetID":http://rs.tdwg.org/dwc/terms/#datasetID
44 34

  
45
|*Sources*|"DwC:datasetID":http://rs.tdwg.org/dwc/terms/#datasetID|
46 35

  
47 36
h3. "institutionCode":http://rs.tdwg.org/dwc/terms/#institutionCode
48 37

  
49
|*Sources*|"DwC:institutionCode":http://rs.tdwg.org/dwc/terms/#institutionCode|
50 38

  
51 39
h3. "subInstitutionCode":http://rs.tdwg.org/dwc/terms/#institutionCode
52 40

  
53
|*Sources*|"DwC:institutionCode":http://rs.tdwg.org/dwc/terms/#institutionCode|
54 41

  
55 42
h3. "collectionCode":http://rs.tdwg.org/dwc/terms/#collectionCode
56 43

  
57
|*Sources*|"DwC:collectionCode":http://rs.tdwg.org/dwc/terms/#collectionCode|
58 44

  
59 45
h3. "datasetName":http://rs.tdwg.org/dwc/terms/#datasetName
60 46

  
61
|*Sources*|"DwC:datasetName":http://rs.tdwg.org/dwc/terms/#datasetName|
62 47

  
63 48
h3. "ownerInstitutionCode":http://rs.tdwg.org/dwc/terms/#ownerInstitutionCode
64 49

  
65
|*Sources*|"DwC:ownerInstitutionCode":http://rs.tdwg.org/dwc/terms/#ownerInstitutionCode|
66 50

  
67 51
h3. "basisOfRecord":http://rs.tdwg.org/dwc/terms/#basisOfRecord
68 52

  
69
|*Sources*|"DwC:basisOfRecord":http://rs.tdwg.org/dwc/terms/#basisOfRecord|
70 53

  
71 54
h3. "informationWithheld":http://rs.tdwg.org/dwc/terms/#informationWithheld
72 55

  
73
|*Sources*|"DwC:informationWithheld":http://rs.tdwg.org/dwc/terms/#informationWithheld|
74 56

  
75 57
h3. "dataGeneralizations":http://rs.tdwg.org/dwc/terms/#dataGeneralizations
76 58

  
77
|*Sources*|"DwC:dataGeneralizations":http://rs.tdwg.org/dwc/terms/#dataGeneralizations|
78 59

  
79 60
h3. "dynamicProperties":http://rs.tdwg.org/dwc/terms/#dynamicProperties
80 61

  
81
|*Sources*|"DwC:dynamicProperties":http://rs.tdwg.org/dwc/terms/#dynamicProperties|
82 62

  
83 63
h3. "occurrenceID":http://rs.tdwg.org/dwc/terms/#occurrenceID
84 64

  
85
|*Sources*|"DwC:occurrenceID":http://rs.tdwg.org/dwc/terms/#occurrenceID|
86 65

  
87 66
h3. "catalogNumber":http://rs.tdwg.org/dwc/terms/#catalogNumber
88 67

  
89
|*Sources*|"DwC:catalogNumber":http://rs.tdwg.org/dwc/terms/#catalogNumber|
90 68

  
91 69
h3. "occurrenceRemarks":http://rs.tdwg.org/dwc/terms/#occurrenceRemarks
92 70

  
93
|*Sources*|"DwC:occurrenceRemarks":http://rs.tdwg.org/dwc/terms/#occurrenceRemarks|
94 71

  
95 72
h3. "recordNumber":http://rs.tdwg.org/dwc/terms/#recordNumber
96 73

  
97
|*Sources*|"DwC:recordNumber":http://rs.tdwg.org/dwc/terms/#recordNumber|
98 74

  
99 75
h3. "recordedBy":http://rs.tdwg.org/dwc/terms/#recordedBy
100 76

  
101
|*Sources*|"DwC:recordedBy":http://rs.tdwg.org/dwc/terms/#recordedBy|
102 77

  
103 78
h3. "recordedBy.givenName":http://rs.tdwg.org/dwc/terms/#recordedBy
104 79

  
105
|*Sources*|"DwC:recordedBy":http://rs.tdwg.org/dwc/terms/#recordedBy, "VegX:givenName":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/parties/party/individualName/givenName|
106 80

  
107 81
h3. "recordedBy.surName":http://rs.tdwg.org/dwc/terms/#recordedBy
108 82

  
109
|*Sources*|"DwC:recordedBy":http://rs.tdwg.org/dwc/terms/#recordedBy, "VegX:surName":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/parties/party/individualName/surName|
110 83

  
111 84
h3. "individualID":http://rs.tdwg.org/dwc/terms/#individualID
112 85

  
113
|*Sources*|"DwC:individualID":http://rs.tdwg.org/dwc/terms/#individualID|
114 86

  
115 87
h3. "individualCount":http://rs.tdwg.org/dwc/terms/#individualCount
116 88

  
117
|*Sources*|"DwC:individualCount":http://rs.tdwg.org/dwc/terms/#individualCount|
118 89

  
119 90
h3. "sex":http://rs.tdwg.org/dwc/terms/#sex
120 91

  
121
|*Sources*|"DwC:sex":http://rs.tdwg.org/dwc/terms/#sex|
122 92

  
123 93
h3. "lifeStage":http://rs.tdwg.org/dwc/terms/#lifeStage
124 94

  
125
|*Sources*|"DwC:lifeStage":http://rs.tdwg.org/dwc/terms/#lifeStage|
126 95

  
127 96
h3. "reproductiveCondition":http://rs.tdwg.org/dwc/terms/#reproductiveCondition
128 97

  
129
|*Sources*|"DwC:reproductiveCondition":http://rs.tdwg.org/dwc/terms/#reproductiveCondition|
130 98

  
131 99
h3. "behavior":http://rs.tdwg.org/dwc/terms/#behavior
132 100

  
133
|*Sources*|"DwC:behavior":http://rs.tdwg.org/dwc/terms/#behavior|
134 101

  
135 102
h3. "establishmentMeans":http://rs.tdwg.org/dwc/terms/#establishmentMeans
136 103

  
137
|*Sources*|"DwC:establishmentMeans":http://rs.tdwg.org/dwc/terms/#establishmentMeans|
138 104

  
139 105
h3. "cultivated":http://rs.tdwg.org/dwc/terms/#establishmentMeans#cultivated
140 106

  
141
|*Sources*|"DwC:cultivated":http://rs.tdwg.org/dwc/terms/#establishmentMeans#cultivated|
142
|*Comments*|Picklist value extracted|
143 107

  
144 108
h3. "cultivatedBasis":http://rs.tdwg.org/dwc/terms/#establishmentMeans#cultivated
145 109

  
146
|*Sources*|"DwC:cultivated":http://rs.tdwg.org/dwc/terms/#establishmentMeans#cultivated|
147
|*Comments*|Picklist value extracted|
148 110

  
149 111
h3. "occurrenceStatus":http://rs.tdwg.org/dwc/terms/#occurrenceStatus
150 112

  
151
|*Sources*|"DwC:occurrenceStatus":http://rs.tdwg.org/dwc/terms/#occurrenceStatus|
152 113

  
153 114
h3. "preparations":http://rs.tdwg.org/dwc/terms/#preparations
154 115

  
155
|*Sources*|"DwC:preparations":http://rs.tdwg.org/dwc/terms/#preparations|
156 116

  
157 117
h3. "disposition":http://rs.tdwg.org/dwc/terms/#disposition
158 118

  
159
|*Sources*|"DwC:disposition":http://rs.tdwg.org/dwc/terms/#disposition|
160 119

  
161 120
h3. "otherCatalogNumbers":http://rs.tdwg.org/dwc/terms/#otherCatalogNumbers
162 121

  
163
|*Sources*|"DwC:otherCatalogNumbers":http://rs.tdwg.org/dwc/terms/#otherCatalogNumbers|
164 122

  
165 123
h3. "previousIdentifications":http://rs.tdwg.org/dwc/terms/#previousIdentifications
166 124

  
167
|*Sources*|"DwC:previousIdentifications":http://rs.tdwg.org/dwc/terms/#previousIdentifications|
168 125

  
169 126
h3. "associatedMedia":http://rs.tdwg.org/dwc/terms/#associatedMedia
170 127

  
171
|*Sources*|"DwC:associatedMedia":http://rs.tdwg.org/dwc/terms/#associatedMedia|
172 128

  
173 129
h3. "associatedReferences":http://rs.tdwg.org/dwc/terms/#associatedReferences
174 130

  
175
|*Sources*|"DwC:associatedReferences":http://rs.tdwg.org/dwc/terms/#associatedReferences|
176 131

  
177 132
h3. "associatedOccurrences":http://rs.tdwg.org/dwc/terms/#associatedOccurrences
178 133

  
179
|*Sources*|"DwC:associatedOccurrences":http://rs.tdwg.org/dwc/terms/#associatedOccurrences|
180 134

  
181 135
h3. "associatedSequences":http://rs.tdwg.org/dwc/terms/#associatedSequences
182 136

  
183
|*Sources*|"DwC:associatedSequences":http://rs.tdwg.org/dwc/terms/#associatedSequences|
184 137

  
185 138
h3. "associatedTaxa":http://rs.tdwg.org/dwc/terms/#associatedTaxa
186 139

  
187
|*Sources*|"DwC:associatedTaxa":http://rs.tdwg.org/dwc/terms/#associatedTaxa|
188 140

  
189 141
h3. "eventID":http://rs.tdwg.org/dwc/terms/#eventID
190 142

  
191
|*Sources*|"DwC:eventID":http://rs.tdwg.org/dwc/terms/#eventID|
192 143

  
193 144
h3. "samplingProtocol":http://rs.tdwg.org/dwc/terms/#samplingProtocol
194 145

  
195
|*Sources*|"DwC:samplingProtocol":http://rs.tdwg.org/dwc/terms/#samplingProtocol|
196 146

  
197 147
h3. "samplingProtocolID":http://rs.tdwg.org/dwc/terms/#samplingProtocol
198 148

  
199
|*Sources*|"DwC:samplingProtocol":http://rs.tdwg.org/dwc/terms/#samplingProtocol, "DwC:occurrenceID":http://rs.tdwg.org/dwc/terms/#occurrenceID|
200 149

  
201 150
h3. "samplingEffort":http://rs.tdwg.org/dwc/terms/#samplingEffort
202 151

  
203
|*Sources*|"DwC:samplingEffort":http://rs.tdwg.org/dwc/terms/#samplingEffort|
204 152

  
205 153
h3. "eventDate":http://rs.tdwg.org/dwc/terms/#eventDate
206 154

  
207
|*Sources*|"DwC:eventDate":http://rs.tdwg.org/dwc/terms/#eventDate|
208 155

  
209 156
h3. "startDate":http://rs.tdwg.org/dwc/terms/#eventDate
210 157

  
211
|*Sources*|"DwC:eventDate":http://rs.tdwg.org/dwc/terms/#eventDate, "VegBank:obsStartDate":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=observation&entity=dba_tabledescription&where=where_tablename#obsStartDate|
212
|*Comments*|Table removed because a date range always applies to the event|
213 158

  
214 159
h3. "endDate":http://rs.tdwg.org/dwc/terms/#eventDate
215 160

  
216
|*Sources*|"DwC:eventDate":http://rs.tdwg.org/dwc/terms/#eventDate, "VegBank:obsEndDate":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=observation&entity=dba_tabledescription&where=where_tablename#obsEndDate|
217
|*Comments*|Table removed because a date range always applies to the event|
218 161

  
219 162
h3. "eventTime":http://rs.tdwg.org/dwc/terms/#eventTime
220 163

  
221
|*Sources*|"DwC:eventTime":http://rs.tdwg.org/dwc/terms/#eventTime|
222 164

  
223 165
h3. "startDayOfYear":http://rs.tdwg.org/dwc/terms/#startDayOfYear
224 166

  
225
|*Sources*|"DwC:startDayOfYear":http://rs.tdwg.org/dwc/terms/#startDayOfYear|
226 167

  
227 168
h3. "endDayOfYear":http://rs.tdwg.org/dwc/terms/#endDayOfYear
228 169

  
229
|*Sources*|"DwC:endDayOfYear":http://rs.tdwg.org/dwc/terms/#endDayOfYear|
230 170

  
231 171
h3. "year":http://rs.tdwg.org/dwc/terms/#year
232 172

  
233
|*Sources*|"DwC:year":http://rs.tdwg.org/dwc/terms/#year|
234 173

  
235 174
h3. "month":http://rs.tdwg.org/dwc/terms/#month
236 175

  
237
|*Sources*|"DwC:month":http://rs.tdwg.org/dwc/terms/#month|
238 176

  
239 177
h3. "day":http://rs.tdwg.org/dwc/terms/#day
240 178

  
241
|*Sources*|"DwC:day":http://rs.tdwg.org/dwc/terms/#day|
242 179

  
243 180
h3. "verbatimEventDate":http://rs.tdwg.org/dwc/terms/#verbatimEventDate
244 181

  
245
|*Sources*|"DwC:verbatimEventDate":http://rs.tdwg.org/dwc/terms/#verbatimEventDate|
246 182

  
247 183
h3. "habitat":http://rs.tdwg.org/dwc/terms/#habitat
248 184

  
249
|*Sources*|"DwC:habitat":http://rs.tdwg.org/dwc/terms/#habitat|
250 185

  
251 186
h3. "fieldNumber":http://rs.tdwg.org/dwc/terms/#fieldNumber
252 187

  
253
|*Sources*|"DwC:fieldNumber":http://rs.tdwg.org/dwc/terms/#fieldNumber|
254 188

  
255 189
h3. "fieldNotes":http://rs.tdwg.org/dwc/terms/#fieldNotes
256 190

  
257
|*Sources*|"DwC:fieldNotes":http://rs.tdwg.org/dwc/terms/#fieldNotes|
258 191

  
259 192
h3. "eventRemarks":http://rs.tdwg.org/dwc/terms/#eventRemarks
260 193

  
261
|*Sources*|"DwC:eventRemarks":http://rs.tdwg.org/dwc/terms/#eventRemarks|
262 194

  
263 195
h3. "locationID":http://rs.tdwg.org/dwc/terms/#locationID
264 196

  
265
|*Sources*|"DwC:locationID":http://rs.tdwg.org/dwc/terms/#locationID|
266 197

  
267 198
h3. "locationName":http://rs.tdwg.org/dwc/terms/#locationID
268 199

  
269
|*Sources*|"DwC:locationID":http://rs.tdwg.org/dwc/terms/#locationID, "VegX:plotName":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/plotName|
270 200

  
271 201
h3. "higherGeographyID":http://rs.tdwg.org/dwc/terms/#higherGeographyID
272 202

  
273
|*Sources*|"DwC:higherGeographyID":http://rs.tdwg.org/dwc/terms/#higherGeographyID|
274 203

  
275 204
h3. "higherGeography":http://rs.tdwg.org/dwc/terms/#higherGeography
276 205

  
277
|*Sources*|"DwC:higherGeography":http://rs.tdwg.org/dwc/terms/#higherGeography|
278 206

  
279 207
h3. "continent":http://rs.tdwg.org/dwc/terms/#continent
280 208

  
281
|*Sources*|"DwC:continent":http://rs.tdwg.org/dwc/terms/#continent|
282 209

  
283 210
h3. "waterBody":http://rs.tdwg.org/dwc/terms/#waterBody
284 211

  
285
|*Sources*|"DwC:waterBody":http://rs.tdwg.org/dwc/terms/#waterBody|
286 212

  
287 213
h3. "islandGroup":http://rs.tdwg.org/dwc/terms/#islandGroup
288 214

  
289
|*Sources*|"DwC:islandGroup":http://rs.tdwg.org/dwc/terms/#islandGroup|
290 215

  
291 216
h3. "island":http://rs.tdwg.org/dwc/terms/#island
292 217

  
293
|*Sources*|"DwC:island":http://rs.tdwg.org/dwc/terms/#island|
294 218

  
295 219
h3. "country":http://rs.tdwg.org/dwc/terms/#country
296 220

  
297
|*Sources*|"DwC:country":http://rs.tdwg.org/dwc/terms/#country|
298 221

  
299 222
h3. "acceptedCountry":http://rs.tdwg.org/dwc/terms/#country
300 223

  
301
|*Sources*|"DwC:country":http://rs.tdwg.org/dwc/terms/#country, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
302 224

  
303 225
h3. "countryCode":http://rs.tdwg.org/dwc/terms/#countryCode
304 226

  
305
|*Sources*|"DwC:countryCode":http://rs.tdwg.org/dwc/terms/#countryCode|
306 227

  
307 228
h3. "stateProvince":http://rs.tdwg.org/dwc/terms/#stateProvince
308 229

  
309
|*Sources*|"DwC:stateProvince":http://rs.tdwg.org/dwc/terms/#stateProvince|
310 230

  
311 231
h3. "acceptedStateProvince":http://rs.tdwg.org/dwc/terms/#stateProvince
312 232

  
313
|*Sources*|"DwC:stateProvince":http://rs.tdwg.org/dwc/terms/#stateProvince, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
314 233

  
315 234
h3. "county":http://rs.tdwg.org/dwc/terms/#county
316 235

  
317
|*Sources*|"DwC:county":http://rs.tdwg.org/dwc/terms/#county|
318 236

  
319 237
h3. "acceptedCounty":http://rs.tdwg.org/dwc/terms/#county
320 238

  
321
|*Sources*|"DwC:county":http://rs.tdwg.org/dwc/terms/#county, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
322 239

  
323 240
h3. "municipality":http://rs.tdwg.org/dwc/terms/#municipality
324 241

  
325
|*Sources*|"DwC:municipality":http://rs.tdwg.org/dwc/terms/#municipality|
326 242

  
327 243
h3. "locality":http://rs.tdwg.org/dwc/terms/#locality
328 244

  
329
|*Sources*|"DwC:locality":http://rs.tdwg.org/dwc/terms/#locality|
330 245

  
331 246
h3. "verbatimLocality":http://rs.tdwg.org/dwc/terms/#verbatimLocality
332 247

  
333
|*Sources*|"DwC:verbatimLocality":http://rs.tdwg.org/dwc/terms/#verbatimLocality|
334 248

  
335 249
h3. "verbatimElevation":http://rs.tdwg.org/dwc/terms/#verbatimElevation
336 250

  
337
|*Sources*|"DwC:verbatimElevation":http://rs.tdwg.org/dwc/terms/#verbatimElevation|
338
|*Comments*|Must include units|
339 251

  
340 252
h3. "verbatimElevation_m":http://rs.tdwg.org/dwc/terms/#verbatimElevation
341 253

  
342
|*Sources*|"DwC:verbatimElevation":http://rs.tdwg.org/dwc/terms/#verbatimElevation|
343
|*Comments*|Added units|
344 254

  
345 255
h3. "elevationInMeters":http://rs.tdwg.org/dwc/terms/#minimumElevationInMeters
346 256

  
347
|*Sources*|"DwC:minimumElevationInMeters":http://rs.tdwg.org/dwc/terms/#minimumElevationInMeters|
348
|*Comments*|Prefix removed to use for non-ranges|
349 257

  
350 258
h3. "minimumElevationInMeters":http://rs.tdwg.org/dwc/terms/#minimumElevationInMeters
351 259

  
352
|*Sources*|"DwC:minimumElevationInMeters":http://rs.tdwg.org/dwc/terms/#minimumElevationInMeters|
353 260

  
354 261
h3. "maximumElevationInMeters":http://rs.tdwg.org/dwc/terms/#maximumElevationInMeters
355 262

  
356
|*Sources*|"DwC:maximumElevationInMeters":http://rs.tdwg.org/dwc/terms/#maximumElevationInMeters|
357 263

  
358 264
h3. "verbatimDepth":http://rs.tdwg.org/dwc/terms/#verbatimDepth
359 265

  
360
|*Sources*|"DwC:verbatimDepth":http://rs.tdwg.org/dwc/terms/#verbatimDepth|
361 266

  
362 267
h3. "minimumDepthInMeters":http://rs.tdwg.org/dwc/terms/#minimumDepthInMeters
363 268

  
364
|*Sources*|"DwC:minimumDepthInMeters":http://rs.tdwg.org/dwc/terms/#minimumDepthInMeters|
365 269

  
366 270
h3. "maximumDepthInMeters":http://rs.tdwg.org/dwc/terms/#maximumDepthInMeters
367 271

  
368
|*Sources*|"DwC:maximumDepthInMeters":http://rs.tdwg.org/dwc/terms/#maximumDepthInMeters|
369 272

  
370 273
h3. "minimumDistanceAboveSurfaceInMeters":http://rs.tdwg.org/dwc/terms/#minimumDistanceAboveSurfaceInMeters
371 274

  
372
|*Sources*|"DwC:minimumDistanceAboveSurfaceInMeters":http://rs.tdwg.org/dwc/terms/#minimumDistanceAboveSurfaceInMeters|
373 275

  
374 276
h3. "maximumDistanceAboveSurfaceInMeters":http://rs.tdwg.org/dwc/terms/#maximumDistanceAboveSurfaceInMeters
375 277

  
376
|*Sources*|"DwC:maximumDistanceAboveSurfaceInMeters":http://rs.tdwg.org/dwc/terms/#maximumDistanceAboveSurfaceInMeters|
377 278

  
378 279
h3. "locationAccordingTo":http://rs.tdwg.org/dwc/terms/#locationAccordingTo
379 280

  
380
|*Sources*|"DwC:locationAccordingTo":http://rs.tdwg.org/dwc/terms/#locationAccordingTo|
381 281

  
382 282
h3. "locationRemarks":http://rs.tdwg.org/dwc/terms/#locationRemarks
383 283

  
384
|*Sources*|"DwC:locationRemarks":http://rs.tdwg.org/dwc/terms/#locationRemarks|
385 284

  
386 285
h3. "verbatimCoordinates":http://rs.tdwg.org/dwc/terms/#verbatimCoordinates
387 286

  
388
|*Sources*|"DwC:verbatimCoordinates":http://rs.tdwg.org/dwc/terms/#verbatimCoordinates|
389 287

  
390 288
h3. "verbatimLatitude":http://rs.tdwg.org/dwc/terms/#verbatimLatitude
391 289

  
392
|*Sources*|"DwC:verbatimLatitude":http://rs.tdwg.org/dwc/terms/#verbatimLatitude|
393 290

  
394 291
h3. "verbatimLongitude":http://rs.tdwg.org/dwc/terms/#verbatimLongitude
395 292

  
396
|*Sources*|"DwC:verbatimLongitude":http://rs.tdwg.org/dwc/terms/#verbatimLongitude|
397 293

  
398 294
h3. "verbatimCoordinateSystem":http://rs.tdwg.org/dwc/terms/#verbatimCoordinateSystem
399 295

  
400
|*Sources*|"DwC:verbatimCoordinateSystem":http://rs.tdwg.org/dwc/terms/#verbatimCoordinateSystem|
401 296

  
402 297
h3. "verbatimSRS":http://rs.tdwg.org/dwc/terms/#verbatimSRS
403 298

  
404
|*Sources*|"DwC:verbatimSRS":http://rs.tdwg.org/dwc/terms/#verbatimSRS|
405 299

  
406 300
h3. "decimalLatitude":http://rs.tdwg.org/dwc/terms/#decimalLatitude
407 301

  
408
|*Sources*|"DwC:decimalLatitude":http://rs.tdwg.org/dwc/terms/#decimalLatitude|
409 302

  
410 303
h3. "acceptedDecimalLatitude":http://rs.tdwg.org/dwc/terms/#decimalLatitude
411 304

  
412
|*Sources*|"DwC:decimalLatitude":http://rs.tdwg.org/dwc/terms/#decimalLatitude, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
413 305

  
414 306
h3. "decimalLongitude":http://rs.tdwg.org/dwc/terms/#decimalLongitude
415 307

  
416
|*Sources*|"DwC:decimalLongitude":http://rs.tdwg.org/dwc/terms/#decimalLongitude|
417 308

  
418 309
h3. "acceptedDecimalLongitude":http://rs.tdwg.org/dwc/terms/#decimalLongitude
419 310

  
420
|*Sources*|"DwC:decimalLongitude":http://rs.tdwg.org/dwc/terms/#decimalLongitude, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
421 311

  
422 312
h3. "geodeticDatum":http://rs.tdwg.org/dwc/terms/#geodeticDatum
423 313

  
424
|*Sources*|"DwC:geodeticDatum":http://rs.tdwg.org/dwc/terms/#geodeticDatum|
425 314

  
426 315
h3. "coordinateUncertaintyInMeters":http://rs.tdwg.org/dwc/terms/#coordinateUncertaintyInMeters
427 316

  
428
|*Sources*|"DwC:coordinateUncertaintyInMeters":http://rs.tdwg.org/dwc/terms/#coordinateUncertaintyInMeters|
429 317

  
430 318
h3. "coordinatePrecision_deg":http://rs.tdwg.org/dwc/terms/#coordinatePrecision
431 319

  
432
|*Sources*|"DwC:coordinatePrecision":http://rs.tdwg.org/dwc/terms/#coordinatePrecision|
433
|*Comments*|Added units|
434 320

  
435 321
h3. "pointRadiusSpatialFit":http://rs.tdwg.org/dwc/terms/#pointRadiusSpatialFit
436 322

  
437
|*Sources*|"DwC:pointRadiusSpatialFit":http://rs.tdwg.org/dwc/terms/#pointRadiusSpatialFit|
438 323

  
439 324
h3. "footprintWKT":http://rs.tdwg.org/dwc/terms/#footprintWKT
440 325

  
441
|*Sources*|"DwC:footprintWKT":http://rs.tdwg.org/dwc/terms/#footprintWKT|
442 326

  
443 327
h3. "footprintSRS":http://rs.tdwg.org/dwc/terms/#footprintSRS
444 328

  
445
|*Sources*|"DwC:footprintSRS":http://rs.tdwg.org/dwc/terms/#footprintSRS|
446 329

  
447 330
h3. "footprintSpatialFit":http://rs.tdwg.org/dwc/terms/#footprintSpatialFit
448 331

  
449
|*Sources*|"DwC:footprintSpatialFit":http://rs.tdwg.org/dwc/terms/#footprintSpatialFit|
450 332

  
451 333
h3. "georeferencedBy":http://rs.tdwg.org/dwc/terms/#georeferencedBy
452 334

  
453
|*Sources*|"DwC:georeferencedBy":http://rs.tdwg.org/dwc/terms/#georeferencedBy|
454 335

  
455 336
h3. "georeferencedDate":http://rs.tdwg.org/dwc/terms/#georeferencedDate
456 337

  
457
|*Sources*|"DwC:georeferencedDate":http://rs.tdwg.org/dwc/terms/#georeferencedDate|
458 338

  
459 339
h3. "georeferenceProtocol":http://rs.tdwg.org/dwc/terms/#georeferenceProtocol
460 340

  
461
|*Sources*|"DwC:georeferenceProtocol":http://rs.tdwg.org/dwc/terms/#georeferenceProtocol|
462 341

  
463 342
h3. "georeferenceSources":http://rs.tdwg.org/dwc/terms/#georeferenceSources
464 343

  
465
|*Sources*|"DwC:georeferenceSources":http://rs.tdwg.org/dwc/terms/#georeferenceSources|
466 344

  
467 345
h3. "georeferenceVerificationStatus":http://rs.tdwg.org/dwc/terms/#georeferenceVerificationStatus
468 346

  
469
|*Sources*|"DwC:georeferenceVerificationStatus":http://rs.tdwg.org/dwc/terms/#georeferenceVerificationStatus|
470 347

  
471 348
h3. "coordinatePrecision":http://rs.tdwg.org/dwc/terms/#georeferenceVerificationStatus
472 349

  
473
|*Definition*|Whether the coordinates are in the range of valid decimal values|
474
|*Sources*|"DwC:georeferenceVerificationStatus":http://rs.tdwg.org/dwc/terms/#georeferenceVerificationStatus, "BIEN2:isValidLatLong":http://nimoy.nceas.ucsb.edu/phpmyadmin/index.php?db=bien_web&table=observation&target=tbl_structure.php#isValidLatLong|
350
Whether the coordinates are in the range of valid decimal values
475 351

  
352

  
476 353
h3. "latLongDomainInvalid":http://rs.tdwg.org/dwc/terms/#georeferenceVerificationStatus
477 354

  
478
|*Definition*|Whether the coordinates are not in the range of valid decimal values|
479
|*Sources*|"DwC:georeferenceVerificationStatus":http://rs.tdwg.org/dwc/terms/#georeferenceVerificationStatus, "BIEN2:isValidLatLong":http://nimoy.nceas.ucsb.edu/phpmyadmin/index.php?db=bien_web&table=observation&target=tbl_structure.php#isValidLatLong, "BIEN2:isBadLatLong":http://nimoy.nceas.ucsb.edu/phpmyadmin/index.php?db=geoscrub&table=geoscrub&target=tbl_structure.php#isBadLatLong|
355
Whether the coordinates are not in the range of valid decimal values
480 356

  
357

  
481 358
h3. "geovalid":http://rs.tdwg.org/dwc/terms/#georeferenceVerificationStatus
482 359

  
483
|*Sources*|"DwC:georeferenceVerificationStatus":http://rs.tdwg.org/dwc/terms/#georeferenceVerificationStatus, "BIEN2:isGeovalid":http://nimoy.nceas.ucsb.edu/phpmyadmin/index.php?db=bien_web&table=observation&target=tbl_structure.php#isGeovalid|
484 360

  
485 361
h3. "georeferenceRemarks":http://rs.tdwg.org/dwc/terms/#georeferenceRemarks
486 362

  
487
|*Sources*|"DwC:georeferenceRemarks":http://rs.tdwg.org/dwc/terms/#georeferenceRemarks|
488 363

  
489 364
h3. "geologicalContextID":http://rs.tdwg.org/dwc/terms/#geologicalContextID
490 365

  
491
|*Sources*|"DwC:geologicalContextID":http://rs.tdwg.org/dwc/terms/#geologicalContextID|
492 366

  
493 367
h3. "earliestEonOrLowestEonothem":http://rs.tdwg.org/dwc/terms/#earliestEonOrLowestEonothem
494 368

  
495
|*Sources*|"DwC:earliestEonOrLowestEonothem":http://rs.tdwg.org/dwc/terms/#earliestEonOrLowestEonothem|
496 369

  
497 370
h3. "latestEonOrHighestEonothem":http://rs.tdwg.org/dwc/terms/#latestEonOrHighestEonothem
498 371

  
499
|*Sources*|"DwC:latestEonOrHighestEonothem":http://rs.tdwg.org/dwc/terms/#latestEonOrHighestEonothem|
500 372

  
501 373
h3. "earliestEraOrLowestErathem":http://rs.tdwg.org/dwc/terms/#earliestEraOrLowestErathem
502 374

  
503
|*Sources*|"DwC:earliestEraOrLowestErathem":http://rs.tdwg.org/dwc/terms/#earliestEraOrLowestErathem|
504 375

  
505 376
h3. "latestEraOrHighestErathem":http://rs.tdwg.org/dwc/terms/#latestEraOrHighestErathem
506 377

  
507
|*Sources*|"DwC:latestEraOrHighestErathem":http://rs.tdwg.org/dwc/terms/#latestEraOrHighestErathem|
508 378

  
509 379
h3. "earliestPeriodOrLowestSystem":http://rs.tdwg.org/dwc/terms/#earliestPeriodOrLowestSystem
510 380

  
511
|*Sources*|"DwC:earliestPeriodOrLowestSystem":http://rs.tdwg.org/dwc/terms/#earliestPeriodOrLowestSystem|
512 381

  
513 382
h3. "latestPeriodOrHighestSystem":http://rs.tdwg.org/dwc/terms/#latestPeriodOrHighestSystem
514 383

  
515
|*Sources*|"DwC:latestPeriodOrHighestSystem":http://rs.tdwg.org/dwc/terms/#latestPeriodOrHighestSystem|
516 384

  
517 385
h3. "earliestEpochOrLowestSeries":http://rs.tdwg.org/dwc/terms/#earliestEpochOrLowestSeries
518 386

  
519
|*Sources*|"DwC:earliestEpochOrLowestSeries":http://rs.tdwg.org/dwc/terms/#earliestEpochOrLowestSeries|
520 387

  
521 388
h3. "latestEpochOrHighestSeries":http://rs.tdwg.org/dwc/terms/#latestEpochOrHighestSeries
522 389

  
523
|*Sources*|"DwC:latestEpochOrHighestSeries":http://rs.tdwg.org/dwc/terms/#latestEpochOrHighestSeries|
524 390

  
525 391
h3. "earliestAgeOrLowestStage":http://rs.tdwg.org/dwc/terms/#earliestAgeOrLowestStage
526 392

  
527
|*Sources*|"DwC:earliestAgeOrLowestStage":http://rs.tdwg.org/dwc/terms/#earliestAgeOrLowestStage|
528 393

  
529 394
h3. "latestAgeOrHighestStage":http://rs.tdwg.org/dwc/terms/#latestAgeOrHighestStage
530 395

  
531
|*Sources*|"DwC:latestAgeOrHighestStage":http://rs.tdwg.org/dwc/terms/#latestAgeOrHighestStage|
532 396

  
533 397
h3. "lowestBiostratigraphicZone":http://rs.tdwg.org/dwc/terms/#lowestBiostratigraphicZone
534 398

  
535
|*Sources*|"DwC:lowestBiostratigraphicZone":http://rs.tdwg.org/dwc/terms/#lowestBiostratigraphicZone|
536 399

  
537 400
h3. "highestBiostratigraphicZone":http://rs.tdwg.org/dwc/terms/#highestBiostratigraphicZone
538 401

  
539
|*Sources*|"DwC:highestBiostratigraphicZone":http://rs.tdwg.org/dwc/terms/#highestBiostratigraphicZone|
540 402

  
541 403
h3. "lithostratigraphicTerms":http://rs.tdwg.org/dwc/terms/#lithostratigraphicTerms
542 404

  
543
|*Sources*|"DwC:lithostratigraphicTerms":http://rs.tdwg.org/dwc/terms/#lithostratigraphicTerms|
544 405

  
545 406
h3. "group":http://rs.tdwg.org/dwc/terms/#group
546 407

  
547
|*Sources*|"DwC:group":http://rs.tdwg.org/dwc/terms/#group|
548 408

  
549 409
h3. "formation":http://rs.tdwg.org/dwc/terms/#formation
550 410

  
551
|*Sources*|"DwC:formation":http://rs.tdwg.org/dwc/terms/#formation|
552 411

  
553 412
h3. "member":http://rs.tdwg.org/dwc/terms/#member
554 413

  
555
|*Sources*|"DwC:member":http://rs.tdwg.org/dwc/terms/#member|
556 414

  
557 415
h3. "bed":http://rs.tdwg.org/dwc/terms/#bed
558 416

  
559
|*Sources*|"DwC:bed":http://rs.tdwg.org/dwc/terms/#bed|
560 417

  
561 418
h3. "identificationID":http://rs.tdwg.org/dwc/terms/#identificationID
562 419

  
563
|*Sources*|"DwC:identificationID":http://rs.tdwg.org/dwc/terms/#identificationID|
564 420

  
565 421
h3. "identifiedBy":http://rs.tdwg.org/dwc/terms/#identifiedBy
566 422

  
567
|*Sources*|"DwC:identifiedBy":http://rs.tdwg.org/dwc/terms/#identifiedBy|
568 423

  
569 424
h3. "dateIdentified":http://rs.tdwg.org/dwc/terms/#dateIdentified
570 425

  
571
|*Sources*|"DwC:dateIdentified":http://rs.tdwg.org/dwc/terms/#dateIdentified|
572 426

  
573 427
h3. "identificationReferences":http://rs.tdwg.org/dwc/terms/#identificationReferences
574 428

  
575
|*Sources*|"DwC:identificationReferences":http://rs.tdwg.org/dwc/terms/#identificationReferences|
576 429

  
577 430
h3. "identificationVerificationStatus":http://rs.tdwg.org/dwc/terms/#identificationVerificationStatus
578 431

  
579
|*Sources*|"DwC:identificationVerificationStatus":http://rs.tdwg.org/dwc/terms/#identificationVerificationStatus|
580 432

  
581 433
h3. "identificationRemarks":http://rs.tdwg.org/dwc/terms/#identificationRemarks
582 434

  
583
|*Sources*|"DwC:identificationRemarks":http://rs.tdwg.org/dwc/terms/#identificationRemarks|
584 435

  
585 436
h3. "identificationQualifier":http://rs.tdwg.org/dwc/terms/#identificationQualifier
586 437

  
587
|*Sources*|"DwC:identificationQualifier":http://rs.tdwg.org/dwc/terms/#identificationQualifier|
588 438

  
589 439
h3. "acceptedIdentificationQualifier":http://rs.tdwg.org/dwc/terms/#identificationQualifier
590 440

  
591
|*Sources*|"DwC:identificationQualifier":http://rs.tdwg.org/dwc/terms/#identificationQualifier, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
592 441

  
593 442
h3. "originalIdentificationQualifier":http://rs.tdwg.org/dwc/terms/#identificationQualifier
594 443

  
595
|*Sources*|"DwC:identificationQualifier":http://rs.tdwg.org/dwc/terms/#identificationQualifier, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
596 444

  
597 445
h3. "verbatimIdentificationQualifier":http://rs.tdwg.org/dwc/terms/#identificationQualifier
598 446

  
599
|*Sources*|"DwC:identificationQualifier":http://rs.tdwg.org/dwc/terms/#identificationQualifier, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
600 447

  
601 448
h3. "typeStatus":http://rs.tdwg.org/dwc/terms/#typeStatus
602 449

  
603
|*Definition*|Indicates whether this specimen served as type for taxon name [Brad Boyle]|
604
|*Sources*|"DwC:typeStatus":http://rs.tdwg.org/dwc/terms/#typeStatus|
450
Indicates whether this specimen served as type for taxon name [Brad Boyle]
605 451

  
452

  
606 453
h3. "taxonID":http://rs.tdwg.org/dwc/terms/#taxonID
607 454

  
608
|*Sources*|"DwC:taxonID":http://rs.tdwg.org/dwc/terms/#taxonID|
609 455

  
610 456
h3. "parentTaxonID":http://rs.tdwg.org/dwc/terms/#taxonID
611 457

  
612
|*Sources*|"DwC:taxonID":http://rs.tdwg.org/dwc/terms/#taxonID, "VegBank:plantParent_ID":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plantstatus&entity=dba_tabledescription&where=where_tablename#plantParent_ID|
613 458

  
614 459
h3. "scientificNameID":http://rs.tdwg.org/dwc/terms/#scientificNameID
615 460

  
616
|*Sources*|"DwC:scientificNameID":http://rs.tdwg.org/dwc/terms/#scientificNameID|
617 461

  
618 462
h3. "parentScientificNameID":http://rs.tdwg.org/dwc/terms/#scientificNameID
619 463

  
620
|*Sources*|"DwC:scientificNameID":http://rs.tdwg.org/dwc/terms/#scientificNameID, "VegBank:plantParent_ID":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plantstatus&entity=dba_tabledescription&where=where_tablename#plantParent_ID|
621 464

  
622 465
h3. "acceptedNameUsageID":http://rs.tdwg.org/dwc/terms/#acceptedNameUsageID
623 466

  
624
|*Sources*|"DwC:acceptedNameUsageID":http://rs.tdwg.org/dwc/terms/#acceptedNameUsageID|
625 467

  
626 468
h3. "parentNameUsageID":http://rs.tdwg.org/dwc/terms/#parentNameUsageID
627 469

  
628
|*Sources*|"DwC:parentNameUsageID":http://rs.tdwg.org/dwc/terms/#parentNameUsageID|
629 470

  
630 471
h3. "originalNameUsageID":http://rs.tdwg.org/dwc/terms/#originalNameUsageID
631 472

  
632
|*Sources*|"DwC:originalNameUsageID":http://rs.tdwg.org/dwc/terms/#originalNameUsageID|
633 473

  
634 474
h3. "nameAccordingToID":http://rs.tdwg.org/dwc/terms/#nameAccordingToID
635 475

  
636
|*Sources*|"DwC:nameAccordingToID":http://rs.tdwg.org/dwc/terms/#nameAccordingToID|
637 476

  
638 477
h3. "namePublishedInID":http://rs.tdwg.org/dwc/terms/#namePublishedInID
639 478

  
640
|*Sources*|"DwC:namePublishedInID":http://rs.tdwg.org/dwc/terms/#namePublishedInID|
641 479

  
642 480
h3. "taxonConceptID":http://rs.tdwg.org/dwc/terms/#taxonConceptID
643 481

  
644
|*Sources*|"DwC:taxonConceptID":http://rs.tdwg.org/dwc/terms/#taxonConceptID|
645 482

  
646 483
h3. "parentTaxonConceptID":http://rs.tdwg.org/dwc/terms/#taxonConceptID
647 484

  
648
|*Sources*|"DwC:taxonConceptID":http://rs.tdwg.org/dwc/terms/#taxonConceptID, "VegBank:plantParent_ID":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plantstatus&entity=dba_tabledescription&where=where_tablename#plantParent_ID|
649 485

  
650 486
h3. "scientificName":http://rs.tdwg.org/dwc/terms/#scientificName
651 487

  
652
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName|
653 488

  
654 489
h3. "taxonName":http://rs.tdwg.org/dwc/terms/#scientificName
655 490

  
656
|*Definition*|Taxonomic name without author|
657
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName, "DwC:Taxon":http://rs.tdwg.org/dwc/terms/#Taxon|
491
Taxonomic name without author
658 492

  
493

  
659 494
h3. "acceptedTaxonName":http://rs.tdwg.org/dwc/terms/#scientificName
660 495

  
661
|*Definition*|Taxonomic name without author|
662
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName, "DwC:Taxon":http://rs.tdwg.org/dwc/terms/#Taxon, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
496
Taxonomic name without author
663 497

  
498

  
664 499
h3. "originalTaxonName":http://rs.tdwg.org/dwc/terms/#scientificName
665 500

  
666
|*Definition*|Taxonomic name without author|
667
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName, "DwC:Taxon":http://rs.tdwg.org/dwc/terms/#Taxon, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
501
Taxonomic name without author
668 502

  
503

  
669 504
h3. "taxonNameOrEpithet":http://rs.tdwg.org/dwc/terms/#scientificName
670 505

  
671
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName, "DwC:Taxon":http://rs.tdwg.org/dwc/terms/#Taxon, "DwC:specificEpithet":http://rs.tdwg.org/dwc/terms/#specificEpithet, "DwC:higherClassification":http://rs.tdwg.org/dwc/terms/#higherClassification|
672 506

  
673 507
h3. "verbatimTaxonName":http://rs.tdwg.org/dwc/terms/#scientificName
674 508

  
675
|*Definition*|Taxonomic name without author|
676
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName, "DwC:Taxon":http://rs.tdwg.org/dwc/terms/#Taxon, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
509
Taxonomic name without author
677 510

  
511

  
678 512
h3. "acceptedScientificName":http://rs.tdwg.org/dwc/terms/#scientificName
679 513

  
680
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
681 514

  
682 515
h3. "originalScientificName":http://rs.tdwg.org/dwc/terms/#scientificName
683 516

  
684
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
685 517

  
686 518
h3. "verbatimScientificName":http://rs.tdwg.org/dwc/terms/#scientificName
687 519

  
688
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
689 520

  
690 521
h3. "scientificNameWithMorphospecies":http://rs.tdwg.org/dwc/terms/#scientificName
691 522

  
692
|*Sources*|"DwC:scientificName":http://rs.tdwg.org/dwc/terms/#scientificName, "SALVIAS:morphospecies":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/species_status#morphospecies|
693 523

  
694 524
h3. "acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage
695 525

  
696
|*Sources*|"DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
697 526

  
698 527
h3. "parentNameUsage":http://rs.tdwg.org/dwc/terms/#parentNameUsage
699 528

  
700
|*Sources*|"DwC:parentNameUsage":http://rs.tdwg.org/dwc/terms/#parentNameUsage|
701 529

  
702 530
h3. "originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage
703 531

  
704
|*Sources*|"DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
705 532

  
706 533
h3. "nameAccordingTo":http://rs.tdwg.org/dwc/terms/#nameAccordingTo
707 534

  
708
|*Sources*|"DwC:nameAccordingTo":http://rs.tdwg.org/dwc/terms/#nameAccordingTo|
709 535

  
710 536
h3. "namePublishedIn":http://rs.tdwg.org/dwc/terms/#namePublishedIn
711 537

  
712
|*Sources*|"DwC:namePublishedIn":http://rs.tdwg.org/dwc/terms/#namePublishedIn|
713 538

  
714 539
h3. "namePublishedInYear":http://rs.tdwg.org/dwc/terms/#namePublishedInYear
715 540

  
716
|*Sources*|"DwC:namePublishedInYear":http://rs.tdwg.org/dwc/terms/#namePublishedInYear|
717 541

  
718 542
h3. "higherClassification":http://rs.tdwg.org/dwc/terms/#higherClassification
719 543

  
720
|*Sources*|"DwC:higherClassification":http://rs.tdwg.org/dwc/terms/#higherClassification|
721 544

  
722 545
h3. "kingdom":http://rs.tdwg.org/dwc/terms/#kingdom
723 546

  
724
|*Sources*|"DwC:kingdom":http://rs.tdwg.org/dwc/terms/#kingdom|
725 547

  
726 548
h3. "acceptedKingdom":http://rs.tdwg.org/dwc/terms/#kingdom
727 549

  
728
|*Sources*|"DwC:kingdom":http://rs.tdwg.org/dwc/terms/#kingdom, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
729 550

  
730 551
h3. "originalKingdom":http://rs.tdwg.org/dwc/terms/#kingdom
731 552

  
732
|*Sources*|"DwC:kingdom":http://rs.tdwg.org/dwc/terms/#kingdom, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
733 553

  
734 554
h3. "verbatimKingdom":http://rs.tdwg.org/dwc/terms/#kingdom
735 555

  
736
|*Sources*|"DwC:kingdom":http://rs.tdwg.org/dwc/terms/#kingdom, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
737 556

  
738 557
h3. "phylum":http://rs.tdwg.org/dwc/terms/#phylum
739 558

  
740
|*Sources*|"DwC:phylum":http://rs.tdwg.org/dwc/terms/#phylum|
741 559

  
742 560
h3. "acceptedPhylum":http://rs.tdwg.org/dwc/terms/#phylum
743 561

  
744
|*Sources*|"DwC:phylum":http://rs.tdwg.org/dwc/terms/#phylum, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
745 562

  
746 563
h3. "originalPhylum":http://rs.tdwg.org/dwc/terms/#phylum
747 564

  
748
|*Sources*|"DwC:phylum":http://rs.tdwg.org/dwc/terms/#phylum, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
749 565

  
750 566
h3. "verbatimPhylum":http://rs.tdwg.org/dwc/terms/#phylum
751 567

  
752
|*Sources*|"DwC:phylum":http://rs.tdwg.org/dwc/terms/#phylum, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
753 568

  
754 569
h3. "class":http://rs.tdwg.org/dwc/terms/#class
755 570

  
756
|*Sources*|"DwC:class":http://rs.tdwg.org/dwc/terms/#class|
757 571

  
758 572
h3. "acceptedClass":http://rs.tdwg.org/dwc/terms/#class
759 573

  
760
|*Sources*|"DwC:class":http://rs.tdwg.org/dwc/terms/#class, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
761 574

  
762 575
h3. "originalClass":http://rs.tdwg.org/dwc/terms/#class
763 576

  
764
|*Sources*|"DwC:class":http://rs.tdwg.org/dwc/terms/#class, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
765 577

  
766 578
h3. "verbatimClass":http://rs.tdwg.org/dwc/terms/#class
767 579

  
768
|*Sources*|"DwC:class":http://rs.tdwg.org/dwc/terms/#class, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
769 580

  
770 581
h3. "order":http://rs.tdwg.org/dwc/terms/#order
771 582

  
772
|*Sources*|"DwC:order":http://rs.tdwg.org/dwc/terms/#order|
773 583

  
774 584
h3. "acceptedOrder":http://rs.tdwg.org/dwc/terms/#order
775 585

  
776
|*Sources*|"DwC:order":http://rs.tdwg.org/dwc/terms/#order, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
777 586

  
778 587
h3. "originalOrder":http://rs.tdwg.org/dwc/terms/#order
779 588

  
780
|*Sources*|"DwC:order":http://rs.tdwg.org/dwc/terms/#order, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
781 589

  
782 590
h3. "verbatimOrder":http://rs.tdwg.org/dwc/terms/#order
783 591

  
784
|*Sources*|"DwC:order":http://rs.tdwg.org/dwc/terms/#order, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
785 592

  
786 593
h3. "family":http://rs.tdwg.org/dwc/terms/#family
787 594

  
788
|*Sources*|"DwC:family":http://rs.tdwg.org/dwc/terms/#family|
789 595

  
790 596
h3. "acceptedFamily":http://rs.tdwg.org/dwc/terms/#family
791 597

  
792
|*Sources*|"DwC:family":http://rs.tdwg.org/dwc/terms/#family, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
793 598

  
794 599
h3. "originalFamily":http://rs.tdwg.org/dwc/terms/#family
795 600

  
796
|*Sources*|"DwC:family":http://rs.tdwg.org/dwc/terms/#family, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
797 601

  
798 602
h3. "verbatimFamily":http://rs.tdwg.org/dwc/terms/#family
799 603

  
800
|*Sources*|"DwC:family":http://rs.tdwg.org/dwc/terms/#family, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
801 604

  
802 605
h3. "genus":http://rs.tdwg.org/dwc/terms/#genus
803 606

  
804
|*Sources*|"DwC:genus":http://rs.tdwg.org/dwc/terms/#genus|
805 607

  
806 608
h3. "acceptedGenus":http://rs.tdwg.org/dwc/terms/#genus
807 609

  
808
|*Sources*|"DwC:genus":http://rs.tdwg.org/dwc/terms/#genus, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
809 610

  
810 611
h3. "originalGenus":http://rs.tdwg.org/dwc/terms/#genus
811 612

  
812
|*Sources*|"DwC:genus":http://rs.tdwg.org/dwc/terms/#genus, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
813 613

  
814 614
h3. "verbatimGenus":http://rs.tdwg.org/dwc/terms/#genus
815 615

  
816
|*Sources*|"DwC:genus":http://rs.tdwg.org/dwc/terms/#genus, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
817 616

  
818 617
h3. "subgenus":http://rs.tdwg.org/dwc/terms/#subgenus
819 618

  
820
|*Sources*|"DwC:subgenus":http://rs.tdwg.org/dwc/terms/#subgenus|
821 619

  
822 620
h3. "verbatimSubgenus":http://rs.tdwg.org/dwc/terms/#subgenus
823 621

  
824
|*Sources*|"DwC:subgenus":http://rs.tdwg.org/dwc/terms/#subgenus, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
825 622

  
826 623
h3. "specificEpithet":http://rs.tdwg.org/dwc/terms/#specificEpithet
827 624

  
828
|*Sources*|"DwC:specificEpithet":http://rs.tdwg.org/dwc/terms/#specificEpithet|
829 625

  
830 626
h3. "acceptedSpecificEpithet":http://rs.tdwg.org/dwc/terms/#specificEpithet
831 627

  
832
|*Sources*|"DwC:specificEpithet":http://rs.tdwg.org/dwc/terms/#specificEpithet, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
833 628

  
834 629
h3. "originalSpecificEpithet":http://rs.tdwg.org/dwc/terms/#specificEpithet
835 630

  
836
|*Sources*|"DwC:specificEpithet":http://rs.tdwg.org/dwc/terms/#specificEpithet, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
837 631

  
838 632
h3. "verbatimSpecificEpithet":http://rs.tdwg.org/dwc/terms/#specificEpithet
839 633

  
840
|*Sources*|"DwC:specificEpithet":http://rs.tdwg.org/dwc/terms/#specificEpithet, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
841 634

  
842 635
h3. "infraspecificEpithet":http://rs.tdwg.org/dwc/terms/#infraspecificEpithet
843 636

  
844
|*Sources*|"DwC:infraspecificEpithet":http://rs.tdwg.org/dwc/terms/#infraspecificEpithet|
845 637

  
846 638
h3. "acceptedInfraspecificEpithet":http://rs.tdwg.org/dwc/terms/#infraspecificEpithet
847 639

  
848
|*Sources*|"DwC:infraspecificEpithet":http://rs.tdwg.org/dwc/terms/#infraspecificEpithet, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
849 640

  
850 641
h3. "originalInfraspecificEpithet":http://rs.tdwg.org/dwc/terms/#infraspecificEpithet
851 642

  
852
|*Sources*|"DwC:infraspecificEpithet":http://rs.tdwg.org/dwc/terms/#infraspecificEpithet, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
853 643

  
854 644
h3. "verbatimInfraspecificEpithet":http://rs.tdwg.org/dwc/terms/#infraspecificEpithet
855 645

  
856
|*Sources*|"DwC:infraspecificEpithet":http://rs.tdwg.org/dwc/terms/#infraspecificEpithet, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
857 646

  
858 647
h3. "taxonRank":http://rs.tdwg.org/dwc/terms/#taxonRank
859 648

  
860
|*Sources*|"DwC:taxonRank":http://rs.tdwg.org/dwc/terms/#taxonRank|
861 649

  
862 650
h3. "acceptedTaxonRank":http://rs.tdwg.org/dwc/terms/#taxonRank
863 651

  
864
|*Sources*|"DwC:taxonRank":http://rs.tdwg.org/dwc/terms/#taxonRank, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
865 652

  
866 653
h3. "originalTaxonRank":http://rs.tdwg.org/dwc/terms/#taxonRank
867 654

  
868
|*Sources*|"DwC:taxonRank":http://rs.tdwg.org/dwc/terms/#taxonRank, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
869 655

  
870 656
h3. "verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank
871 657

  
872
|*Sources*|"DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
873 658

  
874 659
h3. "scientificNameAuthorship":http://rs.tdwg.org/dwc/terms/#scientificNameAuthorship
875 660

  
876
|*Sources*|"DwC:scientificNameAuthorship":http://rs.tdwg.org/dwc/terms/#scientificNameAuthorship|
877 661

  
878 662
h3. "acceptedScientificNameAuthorship":http://rs.tdwg.org/dwc/terms/#scientificNameAuthorship
879 663

  
880
|*Sources*|"DwC:scientificNameAuthorship":http://rs.tdwg.org/dwc/terms/#scientificNameAuthorship, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
881 664

  
882 665
h3. "originalScientificNameAuthorship":http://rs.tdwg.org/dwc/terms/#scientificNameAuthorship
883 666

  
884
|*Sources*|"DwC:scientificNameAuthorship":http://rs.tdwg.org/dwc/terms/#scientificNameAuthorship, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
885 667

  
886 668
h3. "verbatimScientificNameAuthorship":http://rs.tdwg.org/dwc/terms/#scientificNameAuthorship
887 669

  
888
|*Sources*|"DwC:scientificNameAuthorship":http://rs.tdwg.org/dwc/terms/#scientificNameAuthorship, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
889 670

  
890 671
h3. "vernacularName":http://rs.tdwg.org/dwc/terms/#vernacularName
891 672

  
892
|*Sources*|"DwC:vernacularName":http://rs.tdwg.org/dwc/terms/#vernacularName|
893 673

  
894 674
h3. "nomenclaturalCode":http://rs.tdwg.org/dwc/terms/#nomenclaturalCode
895 675

  
896
|*Sources*|"DwC:nomenclaturalCode":http://rs.tdwg.org/dwc/terms/#nomenclaturalCode|
897 676

  
898 677
h3. "taxonomicStatus":http://rs.tdwg.org/dwc/terms/#taxonomicStatus
899 678

  
900
|*Sources*|"DwC:taxonomicStatus":http://rs.tdwg.org/dwc/terms/#taxonomicStatus|
901 679

  
902 680
h3. "taxonIsCanonical":http://rs.tdwg.org/dwc/terms/#taxonomicStatus#accepted
903 681

  
904
|*Sources*|"DwC:accepted":http://rs.tdwg.org/dwc/terms/#taxonomicStatus#accepted|
905 682

  
906 683
h3. "nomenclaturalStatus":http://rs.tdwg.org/dwc/terms/#nomenclaturalStatus
907 684

  
908
|*Sources*|"DwC:nomenclaturalStatus":http://rs.tdwg.org/dwc/terms/#nomenclaturalStatus|
909 685

  
910 686
h3. "taxonRemarks":http://rs.tdwg.org/dwc/terms/#taxonRemarks
911 687

  
912
|*Sources*|"DwC:taxonRemarks":http://rs.tdwg.org/dwc/terms/#taxonRemarks|
913 688

  
914 689
h3. "resourceRelationshipID":http://rs.tdwg.org/dwc/terms/#resourceRelationshipID
915 690

  
916
|*Sources*|"DwC:resourceRelationshipID":http://rs.tdwg.org/dwc/terms/#resourceRelationshipID|
917 691

  
918 692
h3. "resourceID":http://rs.tdwg.org/dwc/terms/#resourceID
919 693

  
920
|*Sources*|"DwC:resourceID":http://rs.tdwg.org/dwc/terms/#resourceID|
921 694

  
922 695
h3. "relatedResourceID":http://rs.tdwg.org/dwc/terms/#relatedResourceID
923 696

  
924
|*Sources*|"DwC:relatedResourceID":http://rs.tdwg.org/dwc/terms/#relatedResourceID|
925 697

  
926 698
h3. "relationshipOfResource":http://rs.tdwg.org/dwc/terms/#relationshipOfResource
927 699

  
928
|*Sources*|"DwC:relationshipOfResource":http://rs.tdwg.org/dwc/terms/#relationshipOfResource|
929 700

  
930 701
h3. "relationshipAccordingTo":http://rs.tdwg.org/dwc/terms/#relationshipAccordingTo
931 702

  
932
|*Sources*|"DwC:relationshipAccordingTo":http://rs.tdwg.org/dwc/terms/#relationshipAccordingTo|
933 703

  
934 704
h3. "relationshipEstablishedDate":http://rs.tdwg.org/dwc/terms/#relationshipEstablishedDate
935 705

  
936
|*Sources*|"DwC:relationshipEstablishedDate":http://rs.tdwg.org/dwc/terms/#relationshipEstablishedDate|
937 706

  
938 707
h3. "relationshipRemarks":http://rs.tdwg.org/dwc/terms/#relationshipRemarks
939 708

  
940
|*Sources*|"DwC:relationshipRemarks":http://rs.tdwg.org/dwc/terms/#relationshipRemarks|
941 709

  
942 710
h3. "measurementID":http://rs.tdwg.org/dwc/terms/#measurementID
943 711

  
944
|*Sources*|"DwC:measurementID":http://rs.tdwg.org/dwc/terms/#measurementID|
945 712

  
946 713
h3. "measurementType":http://rs.tdwg.org/dwc/terms/#measurementType
947 714

  
948
|*Sources*|"DwC:measurementType":http://rs.tdwg.org/dwc/terms/#measurementType|
949 715

  
950 716
h3. "measurementValue":http://rs.tdwg.org/dwc/terms/#measurementValue
951 717

  
952
|*Sources*|"DwC:measurementValue":http://rs.tdwg.org/dwc/terms/#measurementValue|
953 718

  
954 719
h3. "measurementAccuracy":http://rs.tdwg.org/dwc/terms/#measurementAccuracy
955 720

  
956
|*Sources*|"DwC:measurementAccuracy":http://rs.tdwg.org/dwc/terms/#measurementAccuracy|
957 721

  
958 722
h3. "measurementUnit":http://rs.tdwg.org/dwc/terms/#measurementUnit
959 723

  
960
|*Sources*|"DwC:measurementUnit":http://rs.tdwg.org/dwc/terms/#measurementUnit|
961 724

  
962 725
h3. "measurementDeterminedDate":http://rs.tdwg.org/dwc/terms/#measurementDeterminedDate
963 726

  
964
|*Sources*|"DwC:measurementDeterminedDate":http://rs.tdwg.org/dwc/terms/#measurementDeterminedDate|
965 727

  
966 728
h3. "measurementDeterminedBy":http://rs.tdwg.org/dwc/terms/#measurementDeterminedBy
967 729

  
968
|*Sources*|"DwC:measurementDeterminedBy":http://rs.tdwg.org/dwc/terms/#measurementDeterminedBy|
969 730

  
970 731
h3. "measurementMethod":http://rs.tdwg.org/dwc/terms/#measurementMethod
971 732

  
972
|*Sources*|"DwC:measurementMethod":http://rs.tdwg.org/dwc/terms/#measurementMethod|
973 733

  
974 734
h3. "measurementRemarks":http://rs.tdwg.org/dwc/terms/#measurementRemarks
975 735

  
976
|*Sources*|"DwC:measurementRemarks":http://rs.tdwg.org/dwc/terms/#measurementRemarks|
977 736

  
978 737
h3. "yearCollected":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/YearCollected
979 738

  
980
|*Sources*|"DwC:MaNIS:YearCollected":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/YearCollected|
981 739

  
982 740
h3. "monthCollected":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/MonthCollected
983 741

  
984
|*Sources*|"DwC:MaNIS:MonthCollected":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/MonthCollected|
985 742

  
986 743
h3. "dayCollected":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/DayCollected
987 744

  
988
|*Sources*|"DwC:MaNIS:DayCollected":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/DayCollected|
989 745

  
990 746
h3. "yearIdentified":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/YearIdentified
991 747

  
992
|*Sources*|"DwC:MaNIS:YearIdentified":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/YearIdentified|
993 748

  
994 749
h3. "monthIdentified":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/MonthIdentified
995 750

  
996
|*Sources*|"DwC:MaNIS:MonthIdentified":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/MonthIdentified|
997 751

  
998 752
h3. "dayIdentified":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/DayIdentified
999 753

  
1000
|*Sources*|"DwC:MaNIS:DayIdentified":http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd#/DayIdentified|
1001 754

  
1002 755
h3. "longitude_DMS":http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd#/Longitude
1003 756

  
1004
|*Sources*|"DwC:Classic:Longitude":http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd#/Longitude|
1005
|*Comments*|Added units|
1006 757

  
1007 758
h3. "latitude_DMS":http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd#/Latitude
1008 759

  
1009
|*Sources*|"DwC:Classic:Latitude":http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd#/Latitude|
1010
|*Comments*|Added units|
1011 760

  
1012 761
h3. "dateCollected":http://rs.tdwg.org/dwc/terms/history/index.htm#EarliestDateCollected-2007-04-17
1013 762

  
1014
|*Sources*|"DwC:history:EarliestDateCollected-2007-04-17":http://rs.tdwg.org/dwc/terms/history/index.htm#EarliestDateCollected-2007-04-17|
1015
|*Comments*|Prefix removed to use for non-ranges|
1016 763

  
1017 764
h3. "accordingTo":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonConcepts/TaxonConcept/AccordingTo
1018 765

  
1019
|*Sources*|"TCS:AccordingTo":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonConcepts/TaxonConcept/AccordingTo|
1020 766

  
1021 767
h3. "forma":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/fm
1022 768

  
1023
|*Sources*|"TCS:fm":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/fm, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany|
1024 769

  
1025 770
h3. "acceptedVariety":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/fm
1026 771

  
1027
|*Sources*|"TCS:fm":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/fm, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
1028 772

  
1029 773
h3. "originalVariety":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/fm
1030 774

  
1031
|*Sources*|"TCS:fm":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/fm, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
1032 775

  
1033 776
h3. "verbatimVariety":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/fm
1034 777

  
1035
|*Sources*|"TCS:fm":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/fm, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
1036 778

  
1037 779
h3. "variety":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/var
1038 780

  
1039
|*Sources*|"TCS:var":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/var, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany|
1040 781

  
1041 782
h3. "acceptedForma":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/var
1042 783

  
1043
|*Sources*|"TCS:var":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/var, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
1044 784

  
1045 785
h3. "originalForma":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/var
1046 786

  
1047
|*Sources*|"TCS:var":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/var, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
1048 787

  
1049 788
h3. "verbatimForma":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/var
1050 789

  
1051
|*Sources*|"TCS:var":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankBelowSubspeciesEnum/var, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
1052 790

  
1053 791
h3. "cultivar":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankCultivatedPlants/cv
1054 792

  
1055
|*Sources*|"TCS:cv":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankCultivatedPlants/cv|
1056 793

  
1057 794
h3. "acceptedCultivar":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankCultivatedPlants/cv
1058 795

  
1059
|*Sources*|"TCS:cv":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankCultivatedPlants/cv, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
1060 796

  
1061 797
h3. "originalCultivar":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankCultivatedPlants/cv
1062 798

  
1063
|*Sources*|"TCS:cv":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankCultivatedPlants/cv, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
1064 799

  
1065 800
h3. "verbatimCultivar":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankCultivatedPlants/cv
1066 801

  
1067
|*Sources*|"TCS:cv":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankCultivatedPlants/cv, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
1068 802

  
1069 803
h3. "subspecies":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankSpeciesGroupEnum/ssp
1070 804

  
1071
|*Sources*|"TCS:ssp":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankSpeciesGroupEnum/ssp, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany|
1072 805

  
1073 806
h3. "acceptedSubspecies":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankSpeciesGroupEnum/ssp
1074 807

  
1075
|*Sources*|"TCS:ssp":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankSpeciesGroupEnum/ssp, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany, "DwC:acceptedNameUsage":http://rs.tdwg.org/dwc/terms/#acceptedNameUsage|
1076 808

  
1077 809
h3. "originalSubspecies":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankSpeciesGroupEnum/ssp
1078 810

  
1079
|*Sources*|"TCS:ssp":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankSpeciesGroupEnum/ssp, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany, "DwC:originalNameUsage":http://rs.tdwg.org/dwc/terms/#originalNameUsage|
1080 811

  
1081 812
h3. "verbatimSubspecies":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankSpeciesGroupEnum/ssp
1082 813

  
1083
|*Sources*|"TCS:ssp":http://www.tdwg.org/standards/117/download/#/v101.xsd#/TaxonomicRankSpeciesGroupEnum/ssp, "Wikipedia:Ranks_in_botany":http://en.wikipedia.org/wiki/Taxonomic_rank#Ranks_in_botany, "DwC:verbatimTaxonRank":http://rs.tdwg.org/dwc/terms/#verbatimTaxonRank|
1084 814

  
1085 815
h3. "projectID":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/projects/project
1086 816

  
1087
|*Sources*|"VegX:project":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/projects/project, "DwC:occurrenceID":http://rs.tdwg.org/dwc/terms/#occurrenceID|
1088 817

  
1089 818
h3. "projectStartDate":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/projects/project
1090 819

  
1091
|*Sources*|"VegX:project":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/projects/project, "DwC:eventDate":http://rs.tdwg.org/dwc/terms/#eventDate, "VegBank:obsStartDate":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=observation&entity=dba_tabledescription&where=where_tablename#obsStartDate|
1092 820

  
1093 821
h3. "projectEndDate":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/projects/project
1094 822

  
1095
|*Sources*|"VegX:project":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/projects/project, "DwC:eventDate":http://rs.tdwg.org/dwc/terms/#eventDate, "VegBank:obsEndDate":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=observation&entity=dba_tabledescription&where=where_tablename#obsEndDate|
1096 823

  
1097 824
h3. "projectName":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/projects/project
1098 825

  
1099
|*Sources*|"VegX:project":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/projects/project, "VegX:plotName":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/plotName|
1100 826

  
1101 827
h3. "plotNotes":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/note
1102 828

  
1103
|*Sources*|"VegX:note":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/note, "DwC:fieldNotes":http://rs.tdwg.org/dwc/terms/#fieldNotes|
1104
|*Comments*|Table added for uniqueness|
1105 829

  
1106 830
h3. "plotArea_m2":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/area
1107 831

  
1108
|*Sources*|"VegX:area":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/area|
1109
|*Comments*|Table added for clarity. Added units.|
1110 832

  
1111 833
h3. "slopeAspect":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/slopeAspect
1112 834

  
1113
|*Sources*|"VegX:slopeAspect":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/slopeAspect|
1114 835

  
1115 836
h3. "slopeGradient":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/slopeGradient
1116 837

  
1117
|*Sources*|"VegX:slopeGradient":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/slopeGradient|
1118 838

  
1119 839
h3. "landform":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/landform
1120 840

  
1121
|*Sources*|"VegX:landform":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/landform|
1122 841

  
1123 842
h3. "temperature":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plotObservations/plotObservation/observationConditions/temperature
1124 843

  
1125
|*Sources*|"VegX:temperature":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plotObservations/plotObservation/observationConditions/temperature|
1126 844

  
1127 845
h3. "communityID":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/communityDeterminations/communityDetermination/communityConcepts/communityConcept
1128 846

  
1129
|*Sources*|"VegX:communityConcept":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/communityDeterminations/communityDetermination/communityConcepts/communityConcept, "DwC:occurrenceID":http://rs.tdwg.org/dwc/terms/#occurrenceID|
1130
|*Comments*|Table shortened for standardization|
1131 847

  
1132 848
h3. "communityName":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/communityDeterminations/communityDetermination/communityConcepts/communityConcept/name
1133 849

  
1134
|*Sources*|"VegX:name":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/communityDeterminations/communityDetermination/communityConcepts/communityConcept/name|
1135
|*Comments*|Table shortened for standardization|
1136 850

  
1137 851
h3. "aggregateOccurrenceID":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/aggregateOrganismObservations/aggregateOrganismObservation
1138 852

  
1139
|*Sources*|"VegX:aggregateOrganismObservation":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/aggregateOrganismObservations/aggregateOrganismObservation, "DwC:occurrenceID":http://rs.tdwg.org/dwc/terms/#occurrenceID|
1140 853

  
1141 854
h3. "height_ft":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/individualOrganismObservations/individualOrganismObservation/height
1142 855

  
1143
|*Sources*|"VegX:height":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/individualOrganismObservations/individualOrganismObservation/height|
1144
|*Comments*|Added units|
1145 856

  
1146 857
h3. "height_m":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/individualOrganismObservations/individualOrganismObservation/height
1147 858

  
1148
|*Sources*|"VegX:height":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/individualOrganismObservations/individualOrganismObservation/height|
1149
|*Comments*|Added units|
1150 859

  
1151 860
h3. "organismX_m":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/individualOrganismObservations/individualOrganismObservation/relativePlotPosition/relativeX
1152 861

  
1153
|*Sources*|"VegX:relativeX":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/individualOrganismObservations/individualOrganismObservation/relativePlotPosition/relativeX|
1154
|*Comments*|Table added for clarity. Added units.|
1155 862

  
1156 863
h3. "organismY_m":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/individualOrganismObservations/individualOrganismObservation/relativePlotPosition/relativeY
1157 864

  
1158
|*Sources*|"VegX:relativeY":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/individualOrganismObservations/individualOrganismObservation/relativePlotPosition/relativeY|
1159
|*Comments*|Table added for clarity. Added units.|
1160 865

  
1161 866
h3. "phosphorus_fraction":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/phosphorus
1162 867

  
1163
|*Sources*|"VegX:phosphorus":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/phosphorus|
1164
|*Comments*|Added units|
1165 868

  
1166 869
h3. "phosphorus_percent":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/phosphorus
1167 870

  
1168
|*Sources*|"VegX:phosphorus":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/phosphorus|
1169
|*Comments*|Added units|
1170 871

  
1171 872
h3. "potassium_fraction":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/pottasium
1172 873

  
1173
|*Sources*|"VegX:pottasium":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/pottasium|
1174
|*Comments*|Spelling corrected. Added units.|
1175 874

  
1176 875
h3. "potassium_percent":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/pottasium
1177 876

  
1178
|*Sources*|"VegX:pottasium":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/pottasium|
1179
|*Comments*|Spelling corrected. Added units.|
1180 877

  
1181 878
h3. "magnesium_fraction":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/magnesium
1182 879

  
1183
|*Sources*|"VegX:magnesium":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/magnesium|
1184
|*Comments*|Added units|
1185 880

  
1186 881
h3. "magnesium_percent":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/magnesium
1187 882

  
1188
|*Sources*|"VegX:magnesium":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/magnesium|
1189
|*Comments*|Added units|
1190 883

  
1191 884
h3. "nitrogen_fraction":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/nitrogen
1192 885

  
1193
|*Sources*|"VegX:nitrogen":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/nitrogen|
1194
|*Comments*|Added units|
1195 886

  
1196 887
h3. "nitrogen_percent":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/nitrogen
1197 888

  
1198
|*Sources*|"VegX:nitrogen":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/nitrogen|
1199
|*Comments*|Added units|
1200 889

  
1201 890
h3. "ph":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/ph
1202 891

  
1203
|*Sources*|"VegX:ph":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/abioticObservations/abioticObservation/ph|
1204 892

  
1205 893
h3. "coverPercent":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/attributes/attribute/ordinal/coverPercent
1206 894

  
1207
|*Sources*|"VegX:coverPercent":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/attributes/attribute/ordinal/coverPercent|
1208 895

  
1209 896
h3. "verbatimGrowthForm":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=observation&entity=dba_tabledescription&where=where_tablename#growthform1Type
1210 897

  
1211
|*Sources*|"VegBank:growthform1Type":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=observation&entity=dba_tabledescription&where=where_tablename#growthform1Type, "DwC:verbatimLocality":http://rs.tdwg.org/dwc/terms/#verbatimLocality, "SALVIAS:habit":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/habit|
1212
|*Comments*|Additional values from SALVIAS|
1213 898

  
1214 899
h3. "growthForm":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=observation&entity=dba_tabledescription&where=where_tablename#growthform1Type
1215 900

  
1216
|*Sources*|"VegBank:growthform1Type":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=observation&entity=dba_tabledescription&where=where_tablename#growthform1Type, "habitClassIncluded":https://projects.nceas.ucsb.edu/nceas/projects/bien/wiki/Plot_Methodology#methodAttributeExamples_MTL.xlsx#MethodAttributes.habitClassIncluded|
1217 901

  
1218 902
h3. "recordedBy.middleName":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=party&entity=dba_tabledescription&where=where_tablename#middleName
1219 903

  
1220
|*Sources*|"VegBank:middleName":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=party&entity=dba_tabledescription&where=where_tablename#middleName|
1221 904

  
1222 905
h3. "authorStemCode":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#authorPlotCode
1223 906

  
1224
|*Sources*|"VegBank:authorPlotCode":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#authorPlotCode, "VegBank:stemCode":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=stemlocation&entity=dba_tabledescription&where=where_tablename#stemCode|
1225 907

  
1226 908
h3. "parentLocationID":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#PARENT_ID
1227 909

  
1228
|*Sources*|"VegBank:PARENT_ID":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#PARENT_ID, "DwC:locationID":http://rs.tdwg.org/dwc/terms/#locationID|
1229 910

  
1230 911
h3. "parentPlotName":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#PARENT_ID
1231 912

  
1232
|*Sources*|"VegBank:PARENT_ID":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#PARENT_ID, "VegX:plotName":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/plotName|
1233 913

  
1234 914
h3. "minSlopeAspect":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#minSlopeAspect
1235 915

  
1236
|*Sources*|"VegBank:minSlopeAspect":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#minSlopeAspect|
1237 916

  
1238 917
h3. "maxSlopeAspect":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#maxSlopeAspect
1239 918

  
1240
|*Sources*|"VegBank:maxSlopeAspect":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#maxSlopeAspect|
1241 919

  
1242 920
h3. "minSlopeGradient":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#minSlopeGradient
1243 921

  
1244
|*Sources*|"VegBank:minSlopeGradient":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#minSlopeGradient|
1245 922

  
1246 923
h3. "maxSlopeGradient":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#maxSlopeGradient
1247 924

  
1248
|*Sources*|"VegBank:maxSlopeGradient":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=plot&entity=dba_tabledescription&where=where_tablename#maxSlopeGradient|
1249 925

  
1250 926
h3. "referenceType":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=reference&entity=dba_tabledescription&where=where_tablename#referenceType
1251 927

  
1252
|*Sources*|"VegBank:referenceType":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=reference&entity=dba_tabledescription&where=where_tablename#referenceType, "BIEN2:aggregatorOrPrimary":http://nimoy.nceas.ucsb.edu/phpmyadmin/index.php?db=bien_web&table=datasource&target=tbl_structure.php#aggregatorOrPrimary, "BIEN2:isHerbarium":http://nimoy.nceas.ucsb.edu/phpmyadmin/index.php?db=bien_web&table=dataSourceNameCorrected&target=tbl_structure.php#isHerbarium|
1253 928

  
1254 929
h3. "organic_fraction":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilOrganic
1255 930

  
1256
|*Sources*|"VegBank:soilOrganic":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilOrganic|
1257
|*Comments*|Added units|
1258 931

  
1259 932
h3. "organic_percent":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilOrganic
1260 933

  
1261
|*Sources*|"VegBank:soilOrganic":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilOrganic|
1262
|*Comments*|Added units|
1263 934

  
1264 935
h3. "texture":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilTexture
1265 936

  
1266
|*Sources*|"VegBank:soilTexture":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilTexture|
1267 937

  
1268 938
h3. "sand_fraction":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilSand
1269 939

  
1270
|*Sources*|"VegBank:soilSand":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilSand|
1271
|*Comments*|Added units|
1272 940

  
1273 941
h3. "sand_percent":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilSand
1274 942

  
1275
|*Sources*|"VegBank:soilSand":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilSand|
1276
|*Comments*|Added units|
1277 943

  
1278 944
h3. "silt_fraction":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilSilt
1279 945

  
1280
|*Sources*|"VegBank:soilSilt":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilSilt|
1281
|*Comments*|Added units|
1282 946

  
1283 947
h3. "silt_percent":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilSilt
1284 948

  
1285
|*Sources*|"VegBank:soilSilt":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilSilt|
1286
|*Comments*|Added units|
1287 949

  
1288 950
h3. "clay_fraction":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilClay
1289 951

  
1290
|*Sources*|"VegBank:soilClay":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilClay|
1291
|*Comments*|Added units|
1292 952

  
1293 953
h3. "clay_percent":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilClay
1294 954

  
1295
|*Sources*|"VegBank:soilClay":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#soilClay|
1296
|*Comments*|Added units|
1297 955

  
1298 956
h3. "cationExchangeCapacity_cmol_kg":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#exchangeCapacity
1299 957

  
1300
|*Sources*|"VegBank:exchangeCapacity":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#exchangeCapacity, "SALVIAS:DB:soil_cation_cap":http://nimoy.nceas.ucsb.edu/phpmyadmin/index.php?db=salvias_plots&table=plotMetadata&target=tbl_structure.php#soil_cation_cap|
1301
|*Comments*|Expanded for clarity|
1302 958

  
1303 959
h3. "baseSaturation_fraction":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#baseSaturation
1304 960

  
1305
|*Sources*|"VegBank:baseSaturation":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#baseSaturation|
1306
|*Comments*|Added units|
1307 961

  
1308 962
h3. "baseSaturation_percent":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#baseSaturation
1309 963

  
1310
|*Sources*|"VegBank:baseSaturation":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=soilObs&entity=dba_tabledescription&where=where_tablename#baseSaturation|
1311
|*Comments*|Added units|
1312 964

  
1313 965
h3. "stemCount":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=stemcount&entity=dba_tabledescription&where=where_tablename#stemCount
1314 966

  
1315
|*Sources*|"VegBank:stemCount":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=stemcount&entity=dba_tabledescription&where=where_tablename#stemCount|
1316 967

  
1317 968
h3. "matchedTaxonFit_fraction":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxoninterpretation&entity=dba_tabledescription&where=where_tablename#taxonFit
1318 969

  
1319
|*Sources*|"VegBank:taxonFit":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxoninterpretation&entity=dba_tabledescription&where=where_tablename#taxonFit, "TNRS:Overall_score":http://tnrs.iplantcollaborative.org/instructions.html#simple_download/Overall_score, "TNRS:Name_matched":http://tnrs.iplantcollaborative.org/instructions.html#simple_download/Name_matched|
1320
|*Comments*|Added units|
1321 970

  
1322 971
h3. "matchedFamilyFit_fraction":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxoninterpretation&entity=dba_tabledescription&where=where_tablename#taxonFit
1323 972

  
1324
|*Sources*|"VegBank:taxonFit":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxoninterpretation&entity=dba_tabledescription&where=where_tablename#taxonFit, "TNRS:Family_score":http://tnrs.iplantcollaborative.org/instructions.html#detailed_download/Family_score, "TNRS:Family_matched":http://tnrs.iplantcollaborative.org/instructions.html#detailed_download/Family_matched|
1325
|*Comments*|Added units|
1326 973

  
1327 974
h3. "matchedGenusFit_fraction":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxoninterpretation&entity=dba_tabledescription&where=where_tablename#taxonFit
1328 975

  
1329
|*Sources*|"VegBank:taxonFit":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxoninterpretation&entity=dba_tabledescription&where=where_tablename#taxonFit, "TNRS:Genus_score":http://tnrs.iplantcollaborative.org/instructions.html#detailed_download/Genus_score, "TNRS:Genus_matched":http://tnrs.iplantcollaborative.org/instructions.html#detailed_download/Genus_matched|
1330
|*Comments*|Added units|
1331 976

  
1332 977
h3. "matchedSpeciesFit_fraction":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxoninterpretation&entity=dba_tabledescription&where=where_tablename#taxonFit
1333 978

  
1334
|*Sources*|"VegBank:taxonFit":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxoninterpretation&entity=dba_tabledescription&where=where_tablename#taxonFit, "TNRS:Specific_epithet_score":http://tnrs.iplantcollaborative.org/instructions.html#detailed_download/Specific_epithet_score, "TNRS:Specific_epithet_matched":http://tnrs.iplantcollaborative.org/instructions.html#detailed_download/Specific_epithet_matched, "DwC:Classic:Species":http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd#/Species|
1335
|*Comments*|Added units|
1336 979

  
1337 980
h3. "taxonOccurrenceID":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxonobservation&entity=dba_tabledescription&where=where_tablename
1338 981

  
1339
|*Sources*|"VegBank:where_tablename":http://vegbank.org/vegbank/views/dba_tabledescription_detail.jsp?view=detail&wparam=taxonobservation&entity=dba_tabledescription&where=where_tablename, "DwC:occurrenceID":http://rs.tdwg.org/dwc/terms/#occurrenceID|
1340 982

  
1341 983
h3. "precipitation":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_metadata/precip_mm
1342 984

  
1343
|*Sources*|"SALVIAS:precip_mm":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_metadata/precip_mm|
1344
|*Comments*|Expanded for clarity|
1345 985

  
1346 986
h3. "plotArea_ha":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_metadata/plot_area_ha
1347 987

  
1348
|*Sources*|"SALVIAS:plot_area_ha":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_metadata/plot_area_ha|
1349 988

  
1350 989
h3. "censusNumber":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/census_no
1351 990

  
1352
|*Sources*|"SALVIAS:census_no":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/census_no|
1353
|*Comments*|Expanded for clarity|
1354 991

  
1355 992
h3. "subplot":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/subplot
1356 993

  
1357
|*Sources*|"SALVIAS:subplot":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/subplot|
1358 994

  
1359 995
h3. "subplotID":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/subplot
1360 996

  
1361
|*Sources*|"SALVIAS:subplot":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/subplot, "DwC:locationID":http://rs.tdwg.org/dwc/terms/#locationID|
1362 997

  
1363 998
h3. "subplotX":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/subplot
1364 999

  
1365
|*Sources*|"SALVIAS:subplot":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/subplot, "VegX:relativeX":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/relatedPlot/relativeSpatialCoordinate/relativeX|
1366 1000

  
1367 1001
h3. "subplotY":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/subplot
1368 1002

  
1369
|*Sources*|"SALVIAS:subplot":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/subplot, "VegX:relativeY":http://wiki.tdwg.org/twiki/pub/Vegetation/WebHome/VegX_Schema_1.5.3_proposed.zip#/veg.xsd#/plots/plot/relatedPlot/relativeSpatialCoordinate/relativeY|
1370 1003

  
1371 1004
h3. "tag":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/tag2
1372 1005

  
1373
|*Sources*|"SALVIAS:tag2":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/tag2|
1374
|*Comments*|Number removed for clarity|
1375 1006

  
1376 1007
h3. "voucherType":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/det_type
1377 1008

  
1378
|*Definition*|values: direct, indirect|
1379
|*Sources*|"SALVIAS:det_type":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/det_type|
1009
values: direct, indirect
1380 1010

  
1011

  
1381 1012
h3. "morphospecies":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/species_status#morphospecies
1382 1013

  
1383
|*Sources*|"SALVIAS:morphospecies":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/species_status#morphospecies|
1384 1014

  
1385 1015
h3. "intercept_cm":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/intercept_cm
1386 1016

  
1387
|*Sources*|"SALVIAS:intercept_cm":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/intercept_cm|
1388 1017

  
1389 1018
h3. "intercept_m":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/intercept_cm
1390 1019

  
1391
|*Sources*|"SALVIAS:intercept_cm":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/intercept_cm|
1392
|*Comments*|Changed to SI base units|
1393 1020

  
1394 1021
h3. "heightFirstBranch":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/ht_first_branch_m
1395 1022

  
1396
|*Sources*|"SALVIAS:ht_first_branch_m":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/ht_first_branch_m|
1397 1023

  
1398 1024
h3. "diameterBreastHeight_cm":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_dbh
1399 1025

  
1400
|*Sources*|"SALVIAS:stem_dbh":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_dbh|
1401
|*Comments*|Expanded for clarity. Added units.|
1402 1026

  
1403 1027
h3. "diameterBreastHeight_in":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_dbh
1404 1028

  
1405
|*Sources*|"SALVIAS:stem_dbh":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_dbh|
1406
|*Comments*|Expanded for clarity. Added units.|
1407 1029

  
1408 1030
h3. "diameterBreastHeight_m":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_dbh
1409 1031

  
1410
|*Sources*|"SALVIAS:stem_dbh":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_dbh|
1411
|*Comments*|Expanded for clarity. Added units.|
1412 1032

  
1413 1033
h3. "basalDiameter":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/basal_diam
1414 1034

  
1415
|*Sources*|"SALVIAS:basal_diam":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/basal_diam|
1416
|*Comments*|Expanded for clarity|
1417 1035

  
1418 1036
h3. "canopyForm":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_canopy_form
1419 1037

  
1420
|*Sources*|"SALVIAS:stem_canopy_form":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_canopy_form|
1421 1038

  
1422 1039
h3. "canopyPosition":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_canopy_position
1423 1040

  
1424
|*Sources*|"SALVIAS:stem_canopy_position":http://salvias.net/Documents/salvias_data_dictionary.html#Plot_data/stem_canopy_position|
1425 1041

  
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff