Stand description example -- fixed format

Here is an example of the fixed format for the stand description  
along with a "ruler" to illustrate the columns for each item. The 
FORTRAN formats follow to make the exact location easy to determine. All numbers,
including any decimal points, must be within the space provided. If no decimal 
point is provided, numberical fields must be right justified in the field. 


The example below shows stand "Demo plot 1" with 23 tree records
for a plot at elevation 3000 feet. The first period should include an additional
3.00 years of growth. The 50-year site index for ponderosa pine is 85 feet,
for sugar pine it is 83 feet, etc. The age is set to zero for all species.
The first tree record is for species 5, white fir, with the digits to the
right of the decimal used here as the tree number (ignored by CACTOS).
The DBH is 13.2 inches, height 61 feet, live crown ratio is .279, and this
tree represents 5 trees per acre. 
         1         2         3         4         5         6         7
123456789012345678901234567890123456789012345678901234567890123456789012



Demo plot 1                 23     3000       3.00                    
  85.  83.  70.  84.  75.   0.   0.   0.   0.   0.   0.   0.   0.   0. 
   0.   0.   0.   0.   0.   0.   0.   0.   0.   0.   0.   0.   0.   0. 
   5.001  13.200  61.000    .279   5.000    
   5.002  19.600  92.000    .565   5.000    
   5.003  23.000 102.000    .422   5.000    
   5.004  19.200  94.000    .500   5.000    
   5.005  18.300  94.000    .574   5.000    
   2.006  34.000 121.000    .430   5.000    
   2.007  26.200  99.000    .545   5.000    
   5.008  18.000  95.000    .463   5.000    
   3.009  44.400 105.000    .476   5.000    
   2.010  34.400 130.000    .462   5.000    
   5.011  18.000  83.000    .494   5.000    
   3.012  33.500 110.000    .618   5.000    
   4.013  30.400 116.000    .655   5.000    
   5.014  12.500  56.000    .304   5.000    
   5.015  13.500  78.000    .500   5.000    
   5.016   9.200  40.000    .300  10.000    
   5.017  10.100  68.000    .309  10.000    
   5.018  10.500  53.000    .434  10.000   
   5.019   9.400  48.000    .667  10.000    
   5.020   4.800  20.000    .500  20.000    
   5.021   5.100  16.000    .375  20.000    
   5.022   4.800  17.000    .412  20.000    
   5.023   3.100  10.000    .500  20.000


FORTRAN format:

Line 1          (A20,5X,I5,4X,I5,6X,F5.2)
Lines 2 and 3   (14F5.0)) 
Lines 4 to end  (5F8.0)

HOME |FEEDBACK