Project

General

Profile

1
E-mail from Bob Peet <peet@unc.edu> on 2011-12-9:
2

    
3
at the BIEN call yesterday I promised to help with mapping TurboVeg to VegBank (via VegX).  I need to get up with Stephan to get the newest version and some data, but I attach two files you might work on immediately and which we could then share first with Stephan and then Aaron.
4

    
5
Tvussetup.exe is 2002 version of the TurboVeg installation file.  Being almost 10 years old, I guess there have been a few changes.  It bombed when I tried to install it on my 64-bit Windows OS.  Rather than fiddle with a work around I installed it on Melica, and it worked fine on that 32-bit Windows machine.  If you try to install it you need to know a new things.  To register: Owner = Bob Peet, Code = 1002958.  The default password is Zostera.
6

    
7
The second file (DBASEDIC_rkp2011.xlsx) is a start at mapping, mostly dating back to 2002.  I wonder if you might flesh it out to help Aaron. Cols E & F are mine and I believe the rest came from Stephan.
8
-----
9
E-mail from Mike Lee <michael.lee@unc.edu> on 2011-12-16:
10

    
11
New columns are in blue and headers start with mtl.
12

    
13
the chief complication is how TurboVeg handles strata.  There are standard denormalized fields in the "observation" table to store a variety of heights and cover values, e.g.:
14
*COV_TOTAL
15
*COV_TREES
16
*COV_SHRUBS
17
*COV_HERBS
18
+COV_MOSSES
19
+COV_LICHEN
20
+COV_ALGAE
21
*TREE_HIGH
22
TREE_LOW
23
*SHRUB_HIGH
24
SHRUB_LOW
25
*HERB_HIGH
26
HERB_LOW
27
HERB_MAX
28
*CRYPT_HIGH
29

    
30
VegBank has a subset of these standardized fields that we can use (marked with *).  However, to accurately separate lichens, mosses, and algae, we will need to use our normalized stratum table.  To even better map out the min and max heights, we will also need to use the stratum table.  The trick is that for actual species records, strata are slightly different:
31
t1    Tree layer (high)
32
t2    Tree layer - middle
33
t3    Tree later - low
34
s1    Shrub layer (high)
35
s2    Shrub layer - low
36
hl    Herb layer
37
jl    Juvenile
38
sl    Seedling
39
ml     Moss layer
40

    
41
These map up pretty well, but they are more finely divided.  We could use t1 and s1 for trees and herbs.  Presumably and lichens and algae get entered in the ... herb layer? Or moss layer? 
42

    
43
Or, we could have a t1 layer that just has species in it and a separate TREE layer that records the overall height of trees and total cover of trees in all of t1,t2,t3.
44

    
45
Other than this issue, things are largely compatible and could be populated with a little conversion here, and little filling in extra fields there.
(3-3/3)