1
|
CREATE TABLE location
|
2
|
(
|
3
|
location_id serial NOT NULL,
|
4
|
sourceid character varying(30),
|
5
|
reference_id integer,
|
6
|
parent_id integer,
|
7
|
reallatitude double precision,
|
8
|
reallongitude double precision,
|
9
|
locationaccuracy double precision,
|
10
|
confidentialitystatus integer NOT NULL,
|
11
|
confidentialityreason character varying(200),
|
12
|
latitude double precision,
|
13
|
longitude double precision,
|
14
|
-- ...
|
15
|
accessioncode character varying(255),
|
16
|
sublocationxposition double precision,
|
17
|
sublocationyposition double precision,
|
18
|
namedplace_id integer,
|
19
|
);
|
20
|
|
21
|
CREATE TABLE locationevent -- VegBank's observation table.
|
22
|
(
|
23
|
locationevent_id serial NOT NULL,
|
24
|
previous_id integer,
|
25
|
location_id integer NOT NULL,
|
26
|
project_id integer,
|
27
|
sourceid character varying(30),
|
28
|
-- ...
|
29
|
accessioncode character varying(255),
|
30
|
);
|
31
|
|
32
|
CREATE TABLE taxonoccurrence -- VegBank's taxonobservation table.
|
33
|
(
|
34
|
taxonoccurrence_id serial NOT NULL,
|
35
|
locationevent_id integer NOT NULL,
|
36
|
authorplantname character varying(255),
|
37
|
reference_id integer,
|
38
|
taxoninferencearea double precision,
|
39
|
emb_taxonoccurrence integer,
|
40
|
-- ...
|
41
|
accessioncode character varying(255),
|
42
|
);
|
43
|
|
44
|
CREATE TABLE aggregateoccurrence -- VegBank's taxonimportance table.
|
45
|
(
|
46
|
aggregateoccurrence_id serial NOT NULL,
|
47
|
taxonoccurrence_id integer NOT NULL,
|
48
|
taxonbin_id integer,
|
49
|
cover double precision,
|
50
|
basalarea double precision,
|
51
|
biomass double precision,
|
52
|
inferencearea double precision,
|
53
|
stratumbase double precision,
|
54
|
stratumheight double precision,
|
55
|
emb_aggregateoccurrence integer,
|
56
|
covercode character varying(10),
|
57
|
count integer NOT NULL,
|
58
|
accessioncode character varying(255),
|
59
|
);
|
60
|
|
61
|
CREATE TABLE individualplant -- VegBank's stemcount table.
|
62
|
(
|
63
|
individualplant_id serial NOT NULL,
|
64
|
aggregateoccurrence_id integer NOT NULL,
|
65
|
height double precision,
|
66
|
heightaccuracy double precision,
|
67
|
emb_individualplant integer,
|
68
|
sourceid character varying(20),
|
69
|
accessioncode character varying(255),
|
70
|
stemcount integer,
|
71
|
);
|
72
|
|
73
|
CREATE TABLE stem -- VegBank's stemlocation table.
|
74
|
(
|
75
|
stem_id serial NOT NULL,
|
76
|
individualplant_id integer NOT NULL,
|
77
|
sourceid character varying(20),
|
78
|
xposition double precision,
|
79
|
yposition double precision,
|
80
|
health character varying(50),
|
81
|
emb_stem integer,
|
82
|
diameter double precision,
|
83
|
height double precision,
|
84
|
heightaccuracy double precision,
|
85
|
age double precision,
|
86
|
accessioncode character varying(255),
|
87
|
diameteraccuracy double precision,
|
88
|
);
|
89
|
|
90
|
CREATE TABLE specimen -- A herbarium specimen. Contains Darwin Core specimen data.
|
91
|
(
|
92
|
specimen_id serial NOT NULL,
|
93
|
reference_id integer NOT NULL,
|
94
|
collectioncode_dwc character varying(255),
|
95
|
catalognumber_dwc character varying(255),
|
96
|
collectiondate timestamp with time zone,
|
97
|
collector_id integer,
|
98
|
museum_id integer,
|
99
|
sourceaccessionnumber character varying(100),
|
100
|
accessioncode character varying(255),
|
101
|
taxonoccurrence_id integer,
|
102
|
);
|
103
|
|
104
|
CREATE TABLE voucher
|
105
|
(
|
106
|
voucher_id serial NOT NULL,
|
107
|
taxonoccurrence_id integer NOT NULL,
|
108
|
specimen_id integer NOT NULL,
|
109
|
accessioncode character varying(255),
|
110
|
);
|
111
|
|
112
|
CREATE TABLE taxondetermination -- VegBank's taxoninterpretation table.
|
113
|
(
|
114
|
taxondetermination_id serial NOT NULL,
|
115
|
taxonoccurrence_id integer NOT NULL,
|
116
|
plantconcept_id integer NOT NULL,
|
117
|
party_id integer NOT NULL,
|
118
|
role_id integer NOT NULL,
|
119
|
determinationtype character varying(30),
|
120
|
reference_id integer,
|
121
|
originaldetermination boolean NOT NULL,
|
122
|
currentdetermination boolean NOT NULL,
|
123
|
taxonfit character varying(50),
|
124
|
taxonconfidence character varying(50),
|
125
|
grouptype character varying(20),
|
126
|
notes text,
|
127
|
notespublic boolean,
|
128
|
notesmgt boolean,
|
129
|
revisions boolean,
|
130
|
determinationdate timestamp with time zone NOT NULL,
|
131
|
emb_taxondetermination integer,
|
132
|
accessioncode character varying(255),
|
133
|
);
|
134
|
|
135
|
CREATE TABLE stratum
|
136
|
(
|
137
|
stratum_id serial NOT NULL,
|
138
|
locationevent_id integer NOT NULL,
|
139
|
stratumtype_id integer NOT NULL,
|
140
|
stratummethod_id integer,
|
141
|
stratumname character varying(30),
|
142
|
stratumheight double precision,
|
143
|
stratumbase double precision,
|
144
|
stratumcover double precision,
|
145
|
stratumdescription character varying(200),
|
146
|
);
|
147
|
|
148
|
CREATE TABLE sizeclass -- A range of size measurements used to aggregate organisms.
|
149
|
(
|
150
|
sizeclass_id serial NOT NULL,
|
151
|
mindiameter double precision,
|
152
|
diameterprecision double precision,
|
153
|
minheight double precision,
|
154
|
heightprecision double precision,
|
155
|
maxdiameter double precision,
|
156
|
maxheight double precision,
|
157
|
accessioncode character varying(255),
|
158
|
);
|
159
|
|
160
|
CREATE TABLE taxonbin -- Defines a set of aggregate measurements. Used by aggregateoccurrence to define how measurements were aggregated.
|
161
|
(
|
162
|
taxonbin_id integer NOT NULL,
|
163
|
label character varying(255) NOT NULL,
|
164
|
stratum_id integer,
|
165
|
sizeclass_id integer,
|
166
|
coverindex_id integer,
|
167
|
accessioncode character varying(255),
|
168
|
);
|