Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul

Size: px
Start display at page:

Download "Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul"

Transcription

1 Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul May 2017 No. 302 Automating the Creation of Stem Maps for Permanent Forest Inventory Plots Using R (Revised) David C. Wilson, John M. Zobel, and Alan R. Ek 1 Abstract A method is presented and documented for constructing tree location maps for permanent field plots to aid remeasurement and usage of the tree and plot data. Keywords: continuous forest inventory, plot map, tree map, R Introduction Documenting change on permanent forest monitoring plots presents several challenges, especially for the specific trees over many observation cycles. Difficulties associated with identifying individual trees, and maintaining continuity in records over time can be greatly reduced through the use of tree location data, e.g., coordinates. Given such coordinates, plot maps provide an easily understood record of the position of each tree, along with various identifying characteristics (e.g. species, tree number, Dbh, tree class, etc.). Tree maps were developed for the 2014, 2000 and earlier remeasurements of the Cloquet Forestry Center (CFC) Continuous Forest Inventory (CFI) to help with the inventory process (see Shrestha et al. 2015; Dieser and Ek 2011). These maps have proved especially helpful in identifying trees which have been removed or lost through harvesting, competition, weather events, etc. In this case they were also a key tool for finding plot centers and for ensuring the accuracy of tree detail. This note describes the coded process and technical aspects of producing these tree maps. Methods and Results Maps for the above remeasurement, as illustrated in Figure 1, were created using the recorded distance and azimuth of each tree with respect to plot center as data inputs to an R (R Core Team 2015) script automating the production of tree maps for each inventory plot. Additional functions were also implemented to provide useful symbology indicating the species, tree number, and relative Dbh of each tree (linked to tree Dbh class), along with tree position on the plot. Summary statistics for trees per acre (TPA), basal area (BA), timber volume, and total biomass are also printed to the tree map for each inventory plot. Individual tree locations were also calculated as the tree locations were assigned (Figure 2). These tree locations were then output in Universal Transverse Mercator (UTM) coordinates consistent with UTM zone 15N. The R code shown in Appendix A was used to create the plot and tree maps. An initial set of maps was produced prior to the 2014 remeasurement to assist field crews with finding plot centers and identifying specific trees on the plots. A second set of maps and tree coordinates was also produced immediately following the re-measurement to create an updated product for analysis in subsequent studies. Three R functions were written and used together to create the tree maps. An initial function used to draw the plot circles was adapted from code presented by Madouasse (2011). This circle function depends only on the {base R package, which comes standard with the installation of R, and will overlay as many circles as desired on a plot using the add=true parameter of the plot function. A second function interprets the tree data (e.g. azimuth, distance, species, Dbh, tree class) 1 David Wilson is a Research Associate, Department of Forest Resources, University of Minnesota; John Zobel is an Assistant Professor, Department of Forestry, Wildlife & Fisheries, University of Tennessee; Alan Ek is Professor Emeritus, Department of Forest Resources, University of Minnesota. This work was supported by the Department of Forest Resources, the Interagency Information Cooperative, the Minnesota Agricultural Experiment Station, and the USDA NIFA McIntire-Stennis Cooperative Forest Research Program. 1

2 associated with a given plot, and adds a point for each tree to the map. Symbology is then adjusted based on tree species, Dbh, and tree class (e.g. live/dead, harvested, missing, etc.). A third wrapper function loops through a table of plot level data, reads summarized biometric statistics, and calls the tree mapping function for each plot. Biometric statistics were produced using the relationships and analytical techniques described by Walters and Ek (1993), Hahn (1984), Hahn and Carmean (1982), and Ek et al. (1984), and summarized by Shrestha et al. (2015) and Dieser and Ek (2011). Figure 1. A plot level map of all trees observed in the 2014 inventory. Trees present in the 2000 inventory, but missing or dead in 2014 are indicated by an X through the marker symbol. 2

3 c ɵ b a Trigonometric Relationships sin(ɵ) = opposite(a) / hypotenuse(c) cos(ɵ) = adjacent(b) / hypotenuse(c) tan(ɵ) = opposite(a) / adjacent(b) Pythagorean Theorem a 2 + b 2 = c 2, for any right triangle Figure 2: Schematic illustration of the trigonometric relationships used to calculate UTM coordinates for each tree observed in the 2014 CFC-CFI re-measurement. 3

4 Literature Cited and References Dieser, Peter J., and Alan R. Ek Cloquet Forestry Center continuous forest inventory for 2000: Analysis and integration with the historical database. Staff Paper Series No St. Paul, MN: University of Minnesota, Department of Forest Resources. Ek, Alan R.; Birdsall, Earl T.; Spears, Rebecca J A Simple Model for Estimating Total and Merchantable Tree Heights. Research Note NC-309. St. Paul, MN: U.S. Dept. of Agriculture, Forest Service, North Central Forest Experiment Station Hahn, Jerold T Tree volume and biomass equations for the Lake States. Research Paper NC-250. St. Paul, MN: USDA Forest Service, North Central Forest Experiment Station. Hahn, Jerold T., and Willard H. Carmean Lake States site index curves formulated. General Technical Report NC-88. St. Paul, MN: USDA Forest Service, North Central Forest Experiment Station. Hatch, Charles R., and Hugo H. John Cloquet Forest Center forest stand structure and growth estimates derived from permanent plots and a multiple random start sampling design. Sci. Jour. Ser. Paper No St. Paul, MN: University of Minnesota, Agriculture Experiment Station. Madouasse, A Shrestha, M., D.C. Wilson, J.M. Zobel, and A.R. Ek Cloquet Forestry Center continuous forest inventory Update for Staff Paper Series No St. Paul, MN: University of Minnesota, Department of Forest Resources R Core Team (2015). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. URL 4

5 Appendix A: R Code and Functions for creating Tree Maps. #' Load data tree2014 <- read.csv("../fia_rapidforestinventory/tree2014.csv", stringsasfactors=false) plot2014 <- read.csv("../fia_rapidforestinventory/plot2014.csv", stringsasfactors=false) cfc.2014.clean <- subset(tree2014, tree2014$treeclass!=5 & tree2014$treeclass!=7) cfc.2014.clean <- droplevels(cfc.2014.clean) #Function to draw a circle circle <- function(xorig, yorig, radius, add,...){ x <- seq(-radius, radius, length.out = 1000) # Euclidian distance to the origin y <- sapply(x, function(z) sqrt(radius^2 - z^2)) if(add == TRUE){ lines(xorig + c(x, rev(x)), c(yorig + y, yorig + rev(-y)), type = "l",...) else { plot(xorig + c(x, rev(x)), c(yorig + y, yorig + rev(-y)), type = "l",...) ######################################################################################### # Tree level mapping function tree.map2<-function(data,size.large=7,size.small=100,xlim=null,ylim=null,main=null, sub=null){ r<-sqrt(43560/(size.large* )) r2<-sqrt(43560/(size.small* )) plot(0,0,pch=18,xlim=c(-50,50),ylim=c(-50,50),xlab="ft",ylab="ft",main=main,sub=sub,col="grey44") #Draw the 1/7 th acre and 1/100 th acre plots with a North indicator. circle(0,0,r,add=t) circle(0,0,r2,add=t,lty=2) text(0,50,"n") # Add a point for each tree in the data. for(i in 1:length(data$TreeNumber)){ nodbh.flag<-f if(is.na(data$dbh[i])==t) { if(data$treeclass[i]==61 data$treeclass[i]==6){ nodbh.flag<-f else { dbh.exp<-1 nodbh.flag<-t if(data$azimuth[i]>0 & data$azimuth[i]<=90) { theta<-90-data$azimuth[i] A.sign<-1 O.sign<-1 5

6 if(data$azimuth[i]>90 & data$azimuth[i]<=180) { theta<-data$azimuth[i]-90 A.sign<-1 O.sign<--1 if(data$azimuth[i]>180 & data$azimuth[i]<=270) { theta<-270-data$azimuth[i] A.sign<--1 O.sign<--1 if(data$azimuth[i]>270 & data$azimuth[i]<=360) { theta<-data$azimuth[i]-270 A.sign<--1 O.sign<-1 col<-0 pch<-1 lwd<-1.5 if(data$species[i]==7 data$species[i]==8 data$species[i]==9 ) { col<-1 if(data$species[i]==1 data$species[i]==2 data$species[i]==3 data$species[i]==10) { col<-2 if(data$species[i]==4) { col<-3 if(data$species[i]==5) { col<-4 if(data$species[i]==60 data$species[i]==61) { pch<-0; col<-"goldenrod" if(data$species[i]==64){ pch<-0; col<-"purple3" if(col==0) { col<-"brown4"; pch<-5 if(pch==1) { if(data$treeclass[i]==61 data$treeclass[i]==6) { pch<-13; dbh.exp<-1.2 if(pch==0) { if(data$treeclass[i]==61 data$treeclass[i]==6) { pch<-7; dbh.exp<-1.2 if(pch==5) { if(data$treeclass[i]==61 data$treeclass[i]==6) { pch<-9; dbh.exp<-1.2 rad< *theta #convert azimuth angle to radians H<-data$Distance[i] if(data$azimuth[i]==0 & rad==0){ A<-H*sin(rad)*O.sign O<-H*cos(rad)*A.sign if(!data$azimuth[i]==0 & rad==0){ O<-H*sin(rad)*O.sign A<-H*cos(rad)*A.sign if(!rad==0){ O<-H*sin(rad)*O.sign A<-H*cos(rad)*A.sign data$utm.t.north[i]<-data$northing[i]+o* data$utm.t.east[i]<-data$easting[i]+a* if(nodbh.flag==f) points(a,o,cex=dbh.exp,col=col,pch=pch,lwd=lwd) 6

7 if(nodbh.flag==t) points(a,o,cex=dbh.exp,col=col,pch=17,lwd=1) if(dbh.exp<1) pos<-1 else pos<-dbh.exp text(a+pos,o+pos,data$ptn[i],cex=.5) ################################################################################################# # Define top level mapping function tree.map.auto2<-function(data,data.p,file,size.large=7,size.small=100,xlim=null,ylim=null){ pdf(file=file,width=6.7) tree2014.detail<-list() for(i in 1:length(unique(data$PlotNumber))){ data.t<-data[data$plotnumber==sort(unique(data$plotnumber))[i],] plot<-subset(plot2014, plot2014$plot_num==data.t$plotnumber[1] & plot2014$cond_class == 1) data.t$northing<-plot$northing[1] data.t$easting<-plot$easting[1] main<-paste("plot",data.t$plotnumber[1]) sub<-paste("tpa = ", plot$tpa[1], ", BA = ", format(plot$plot_ba[1], digits=5), ", CFVOL = ", format(plot$cfvolacre[1], digits=6), ", Biomass (tons) = ", format(plot$biomass[1], digits=4)) tree2014.detail[[i]]<-tree.map2(data=data.t,size.large=7,size.small=100,xlim=xlim,ylim=ylim,main=main, sub=sub) tree2014.update<-rbind.fill(tree2014.detail) write.csv(tree2014.update,file = "../FIA_RapidForestInventory/tree2014_UTM.csv") dev.off() # Call top level mapping function with necessary inputs tree.map.auto2(cfc.2014.clean, plot2014,file="../fia_rapidforestinventory/trees2014.pdf") 7

Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul

Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul December 2016 No. 302 Automating the Creation of Stem Maps for Permanent Forest Inventory

More information

Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul

Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul October 2016 No. 301 Volume, Growth, and Stand Dynamics of a 192-year Old Pinus resinosa

More information

FOR Forest Measurement and Inventory Site Index Measurement David Larsen

FOR Forest Measurement and Inventory Site Index Measurement David Larsen Site Index FOR 2542 - Forest Measurement and Inventory Site Index Measurement David Larsen Site index is a tool to determine the relative productivity of a particular site or location. Site index is the

More information

Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul

Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul Minnesota Forestry Research Notes Published by the Department of Forest Resources, University of Minnesota, St. Paul 201 No. 30 Evaluating Old Age for Forests in Minnesota from Forest Inventory Records

More information

Natural Resource Biometrics December 2, 1999 oak.snr.missouri.edu/nr3110/

Natural Resource Biometrics December 2, 1999 oak.snr.missouri.edu/nr3110/ Site Index By David R. Larsen Site index is a tool to determine the relative productivity of a particular site or location. Site index is the height of a "free to grow" tree of a given species at a base

More information

Environment and Natural Resources Trust Fund Request for Proposals (RFP)

Environment and Natural Resources Trust Fund Request for Proposals (RFP) Environment and Natural Resources Trust Fund 2012-2013 Request for Proposals (RFP) Project Title: Rapid Forest Ecosystem and Habitat Inventory by Imputation ENRTF ID: 016-B Topic Area: B. Forestry/Agriculture/Minerals

More information

Appendix B: Site Index Curves for Selected Tree Species. Interpreting Site Index Curves

Appendix B: Site Index Curves for Selected Tree Species. Interpreting Site Index Curves 199 Appendix B: Site Index Curves for Selected Tree Species Interpreting Site Index Curves Site index is the height to which trees will grow over a given period usually 50 years in the Lake States. Trees

More information

METHODS FOR ACQUISITION OF BIOMASS COMPARTMENTS

METHODS FOR ACQUISITION OF BIOMASS COMPARTMENTS Austro2007/FORMEC 07: Meeting the eeds of Tomorrows Forests ew Developments in Forest Engineering, October 7 11, 2007, Vienna and Heiligenkreuz Austria METHODS FOR ACQUISITIO OF BIOMASS COMPARTMETS Otto

More information

NTRAL HARDWOOD NOTES. Estimating Pine Growth And Yield

NTRAL HARDWOOD NOTES. Estimating Pine Growth And Yield North Central Forest Experiment Station 5.08 NTRAL HARDWOOD NOTES Estimating Pine Growth And Yield Although hardwoods comprise the bulk of the volume in the central hardwood forest, pines are locally important

More information

Where are the black walnut trees in Missouri?

Where are the black walnut trees in Missouri? Vasievich, J. Michael; Kingsley, Neal P. 1995. Where are the walnut trees in Missouri?. Walnut Council Bulletin. 22(4): 4-6. Where are the black walnut trees in Missouri? J. Michael Vasievich and Neal

More information

The Art of Timber Cruising Part II Fixed-Area Plots

The Art of Timber Cruising Part II Fixed-Area Plots The Art of Timber Cruising Part II Fixed-Area Plots In this second article on timber cruising, we will be looking at a simple method of preparing a basic description of the forest compartments in your

More information

Forest biomass by component for the coterminous United States Forest Products Society International Convention June 20, 2010 Madison, WI Pat Miles

Forest biomass by component for the coterminous United States Forest Products Society International Convention June 20, 2010 Madison, WI Pat Miles Forest biomass by component for the coterminous United States Forest Products Society International Convention June 20, 2010 Madison, WI Pat Miles Outline 1. FIA sample design 2. Biomass components pre-aug

More information

Using the tree-growth model MOSES to assess the impact of uneven-aged forest management

Using the tree-growth model MOSES to assess the impact of uneven-aged forest management Institute of Silviculture University of Natural Resources and Life Sciences, Vienna Using the tree-growth model MOSES to assess the impact of uneven-aged forest management Christopher Thurnher Clemens

More information

A Crown Cover Chart For Oak Savannas

A Crown Cover Chart For Oak Savannas March, 1994, TB-NC-2 A Crown Cover Chart For Oak Savannas Jay R. Law, USDA Forest Service (retired) Paul S. Johnson, Principal Silviculturist Garry Houf, Forest Biologist, Mark Twain National Forest Although

More information

A Computerized Tree Growth Projection System for Forest Resource Evaluation in the Lake States

A Computerized Tree Growth Projection System for Forest Resource Evaluation in the Lake States A Computerized Tree Growth Projection System for Forest Resource Evaluation in the Lake States Allen L. Lundgren Burton L. Essex Abstract: A computerized tree growth projection system has been developed

More information

FOR 274 Forest Measurements and Inventory. Written Take Home Exam

FOR 274 Forest Measurements and Inventory. Written Take Home Exam FOR 274 Forest Measurements and Inventory Written Take Home Exam Instructions: This exam is comprehensive of the material covered within the Forest Resources 274 class curriculum. The first question is

More information

Forest Biodiversity in Sweden

Forest Biodiversity in Sweden Forest Biodiversity in Sweden Sören Wulff Department of Forest Resource Management Tract distribution One year sample Design of Swedish NFI Department of Forest Resource Management, BioSoil program European

More information

WISCONSIN WOODLANDS:

WISCONSIN WOODLANDS: G3362 WISCONSIN WOODLANDS: Estimating Stocking Conditions In Your Timber Stand Jeff Martin Foresters use the term stocking to indicate the number of trees or basal area per acre in a timber stand an aggregation

More information

David J. Nowak USDA Forest Service

David J. Nowak USDA Forest Service David J. Nowak USDA Forest Service Overview What is i-tree Eco? Background & Methods Project Steps Putting i-tree Eco to work Questions & Answers Assessing Urban Tree Populations i-tree Eco assesses: Structure

More information

Upper Canopy module Fixed Area Plot Summary and beyond!

Upper Canopy module Fixed Area Plot Summary and beyond! Upper Canopy module Fixed Area Plot Summary and beyond! Eight standard steps to process live upper canopy (tree) inventory data: 0. Complete your data by calculating heights for trees w/ height data 1.

More information

RESPONSE TO UREA AND AMMONIUM NITRATE FERTILIZATION IN AN 80-YEAR-OLD DOUGLAS-FIR STAND. by Richard E. Miller. Principal Soil Scientist

RESPONSE TO UREA AND AMMONIUM NITRATE FERTILIZATION IN AN 80-YEAR-OLD DOUGLAS-FIR STAND. by Richard E. Miller. Principal Soil Scientist I PNW-330 March 1979 RESPONSE TO UREA AND AMMONIUM NITRATE FERTILIZATION IN AN 80-YEAR-OLD DOUGLAS-FIR STAND by Richard E. Miller. Principal Soil Scientist and Constance A. Harrington. Research Forester

More information

A Characterization of Timber Salvage Operations on Public Forests in Minnesota and Wisconsin

A Characterization of Timber Salvage Operations on Public Forests in Minnesota and Wisconsin A Characterization of Timber Salvage Operations on Public Forests in Minnesota and Wisconsin Matthew Russell1, Michael Kilgore2, Charles Blinn3 Abstract Despite the common management practice and benefits

More information

Attempt any FOUR questions. All questions are of equal marks.

Attempt any FOUR questions. All questions are of equal marks. Attempt any FOUR questions. All questions are of equal marks. Regular 2069 Magh/Falgun 1. (a) A forester standing 30m away from the base of a 5 inward leaned Oak tree on regular slope observed with Abney

More information

SITE INDEX MODELS FOR HEIGHT GROWTH OF PLANTED LOBLOLLY PINE (Pinus taeda L.) SEED SOURCES. Warren L. Nance and Osborn O. Wells 1/

SITE INDEX MODELS FOR HEIGHT GROWTH OF PLANTED LOBLOLLY PINE (Pinus taeda L.) SEED SOURCES. Warren L. Nance and Osborn O. Wells 1/ SITE INDEX MODELS FOR HEIGHT GROWTH OF PLANTED LOBLOLLY PINE (Pinus taeda L.) SEED SOURCES Warren L. Nance and Osborn O. Wells 1/ Abstract.--The loblolly phase of the Southwide Pine Seed Source Study (Wells

More information

ANALYZING REGIONAL FIA DATA IN THE ARCVIEW GEOGRAPHIC INFORMATION SYSTEM 1

ANALYZING REGIONAL FIA DATA IN THE ARCVIEW GEOGRAPHIC INFORMATION SYSTEM 1 ANALYZING REGIONAL FIA DATA IN THE ARCVIEW GEOGRAPHIC INFORMATION SYSTEM 1 David Reed, Scott Pugh, Pat Miles, and Kurt Pregitzer 2 Abstract The ArcView Geographic Information System (GIS) is probably the

More information

Mule Deer Winter Range Planning. Current And Future Forest Condition Pilot Project. Submitted to:

Mule Deer Winter Range Planning. Current And Future Forest Condition Pilot Project. Submitted to: Mule Deer Winter Range Planning Current And Future Forest Condition Pilot Project Submitted to: Ministry of Sustainable Resource Management Cariboo Region March, 2003 FIRS Project # 1029-16 Professional

More information

Using the Landscape Management System (LMS) James B. McCarter, Kevin W. Zobrist Rural Technology Initiative, University of Washington

Using the Landscape Management System (LMS) James B. McCarter, Kevin W. Zobrist Rural Technology Initiative, University of Washington Using the Landscape Management System (LMS) James B. McCarter, Kevin W. Zobrist Rural Technology Initiative, University of Washington Introduction What is LMS? Using LMS Outline Stand Scale Analysis Landscape

More information

WHITE PINE GROWTH AND YIELD ON A MINED SITE IN VIRGINIA: RESPONSE TO THINNING AND PRUNING 1

WHITE PINE GROWTH AND YIELD ON A MINED SITE IN VIRGINIA: RESPONSE TO THINNING AND PRUNING 1 WHITE PINE GROWTH AND YIELD ON A MINED SITE IN VIRGINIA: RESPONSE TO THINNING AND PRUNING 1 J. A. Burger 2, W. E. Auch, R. G. Oderwald, and M. Eisenbies Abstract. Owners of reclaimed mined land are interested

More information

Change in Area and Ownership of Private Timberland in Western Oregon Between and

Change in Area and Ownership of Private Timberland in Western Oregon Between and ed States artment of culture Forest Service Pacific Northwest Forest and Range Experiment Station Resource Bulletin PNW-92 May 1981 Change in Area and Ownership of Private Timberland in Western Oregon

More information

FWF Silviculture Lab Exercise 2018 Spring Semester. Comparison of Thinning Methods

FWF Silviculture Lab Exercise 2018 Spring Semester. Comparison of Thinning Methods Page 1 of 10 FWF 312 ---- Silviculture Lab Exercise 2018 Spring Semester Comparison of Thinning Methods Introduction Thinning is the technique that more than any other distinguishes intensive silvicultural

More information

Comparing Productivity and Costs of Two Beetle-killed Stand Harvesting Methods in Northern Colorado

Comparing Productivity and Costs of Two Beetle-killed Stand Harvesting Methods in Northern Colorado Comparing Productivity and Costs of Two Beetle-killed Stand Harvesting Methods in Northern Colorado Hee Han1, Woodam Chung2, Nathaniel Anderson 3 Abstract There has been increasing interest in utilizing

More information

ForeCost Output. ForeCost results: Sampling economics for Mature Loblolly Pine

ForeCost Output. ForeCost results: Sampling economics for Mature Loblolly Pine ForeCost Output ForeCost results: Sampling economics for Mature Loblolly Pine Date: 22 March 2017 Introduction This report details the results of a stand-level analysis run using ForeCost, SilviaTerra

More information

Monitoring State Forest Lands in Standardization with a National Forest Inventory Program

Monitoring State Forest Lands in Standardization with a National Forest Inventory Program Monitoring State Forest Lands in Standardization with a National Forest Inventory Program James A. Westfall 1 and Charles T. Scott 2 Introduction Within the past decade, there has been increasing interest

More information

Lesson B3 2. Measuring Trees. Pathway Strand: Power, Structural and Technical Systems

Lesson B3 2. Measuring Trees. Pathway Strand: Power, Structural and Technical Systems Lesson B3 2 Measuring Trees Unit B. Plant Wildlife Management Problem Area 3. Forest Management Lesson 2. Measuring Trees New Mexico Content Standard: Pathway Strand: Power, Structural and Technical Systems

More information

Component Biomass Equations for the Principal Conifer Species of the Inland Northwest

Component Biomass Equations for the Principal Conifer Species of the Inland Northwest Motivations Sampling Strategy Modeling framework Results Component Biomass Equations for the Principal Conifer Species of the Inland Northwest David Affleck Department of Forest Management University of

More information

PNW-3 53 March 1980 ESTIMATING MERCHANTABLE VOLUMES OF SECOND GROWTH DOUGLAS-FIR STANDS FROM TOTAL CUBIC VOLUME AND ASSOCIATED STAND CHARACTERISTICS

PNW-3 53 March 1980 ESTIMATING MERCHANTABLE VOLUMES OF SECOND GROWTH DOUGLAS-FIR STANDS FROM TOTAL CUBIC VOLUME AND ASSOCIATED STAND CHARACTERISTICS This file was created by scanning the printed publication. Text errors identified by the software have been corrected; however, some errors may remain. PNW-3 53 March 1980 ESTIMATING MERCHANTABLE VOLUMES

More information

Overstory density and harvesting method affect competition from understory vegetation. Klaus J. Puettmann and Matthew D. Duvall 1

Overstory density and harvesting method affect competition from understory vegetation. Klaus J. Puettmann and Matthew D. Duvall 1 Overstory density and harvesting method affect competition from understory vegetation Klaus J. Puettmann and Matthew D. Duvall ABSTRACT. The retention of live vertical structure during harvesting operations

More information

Appalachian Wood Energy Innovations Conference Asheville, NC August 2016

Appalachian Wood Energy Innovations Conference Asheville, NC August 2016 Appalachian Wood Energy Innovations Conference Asheville, NC August 2016 Outline USDA Forest Service, R&D Southern Research Station, Research Unit Introduction & Study Area Methodology Results Conclusions

More information

ASSESSING THE VALUE OF URBAN FORESTS IN THE UNITED _,,_3 STATES

ASSESSING THE VALUE OF URBAN FORESTS IN THE UNITED _,,_3 STATES FVUR }uai table ASSESSING THE VALUE OF URBAN FORESTS IN THE UNITED _,,_3 STATES David J. Nowak, John F. Dwyer, and Daniel E. Crane,, m,,2._.- ABSTRACT. Urban forests have value to society based upon the

More information

Minimum Standards and Stem Analysis Procedures for Site Index Research

Minimum Standards and Stem Analysis Procedures for Site Index Research Minimum Standards and Stem Analysis Procedures for Site Index Research First Published: 1996 Revised: November 1998, July 2000 FOREST PRODUCTIVITY COUNCIL OF BRITISH COLUMBIA Citation: B.C. Forest Productivity

More information

Cloquet Forestry Center 2005 Covertype Mapping Project

Cloquet Forestry Center 2005 Covertype Mapping Project Cloquet Forestry Center 2005 Covertype Mapping Project Brian C. Loeffelholz Research Fellow Department of Forest Resources Guthrie Zimmerman Ph.D. Candidate Department of Fisheries, Wildlife and Conservation

More information

Impact of Definitions of FIA Variables and Compilation Procedures on Inventory Compilation Results in Georgia

Impact of Definitions of FIA Variables and Compilation Procedures on Inventory Compilation Results in Georgia Impact of Definitions of FIA Variables and Compilation Procedures on Inventory Compilation Results in Georgia Brock Stewart 1, Chris J. Cieszewski 2, and Michal Zasada 3,4 Abstract. This paper presents

More information

6 Stump Cruising. April 1,

6 Stump Cruising. April 1, Timber Pricing Branch Stump Cruising 6 Stump Cruising April 1, 2017 6-1 Cruising Manual Ministry of Forests, Lands and NRO 6.1 Introduction The methods described in this chapter are prioritised by safety

More information

WESTERN WASHINGTON HARDWOOD ASSESSMENT

WESTERN WASHINGTON HARDWOOD ASSESSMENT 1 WESTERN WASHINGTON HARDWOOD ASSESSMENT 2 ND ANNUAL WESTERN HARDWOOD INTERNATIONAL CONVENTION & EXPOSITION PORTLAND, OR MAY 21, 2014 Luke Rogers, John Perez-Garcia, B. Bruce Bare 2 Report Available 3

More information

Department of Agriculture, Conservation & Forestry. Maine Forest Service. NERCOFE 2014 Workshop University of Maine

Department of Agriculture, Conservation & Forestry. Maine Forest Service. NERCOFE 2014 Workshop University of Maine Department of Agriculture, Conservation & Forestry Maine Forest Service NERCOFE 2014 Workshop University of Maine March 10-11, 2014 GIS/GPS Technology for Foresters Regulatory Compliance Presented by:

More information

FOR 274: Forest Measurements and Inventory. Growth and Yield: Overview. Growth and Yield: Overview

FOR 274: Forest Measurements and Inventory. Growth and Yield: Overview. Growth and Yield: Overview FOR 274: Forest Measurements and Inventory Growth, Yield and Biomass Overview Growth Percentage Allometrics and Volume Modeling Growth and Yield Husch, Beers and Kershaw pp250-257, chapters 15 & 16 Growth:

More information

Description of BLUFFLANDS/ROCHESTER PLATEAU. Subsection Forest Resource Management Plan (SFRMP) modeling

Description of BLUFFLANDS/ROCHESTER PLATEAU. Subsection Forest Resource Management Plan (SFRMP) modeling Appendix F Description of BLUFFLANDS/ROCHESTER PLATEAU Subsection Forest Resource Management Plan (SFRMP) modeling Curtis L. VanderSchaaf, Forest Modeler Resource Assessment Unit Grand Rapids, MN (218)

More information

GROWTH COMPARISONS OF TAMARACK AND EUROPEAN LARCH IN UPPER MICHIGAN. David D. Reed, Robert L. Sajdak, and John Kotar

GROWTH COMPARISONS OF TAMARACK AND EUROPEAN LARCH IN UPPER MICHIGAN. David D. Reed, Robert L. Sajdak, and John Kotar GROWTH COMPARISONS OF TAMARACK AND EUROPEAN LARCH IN UPPER MICHIGAN David D. Reed, Robert L. Sajdak, and John Kotar Abstract.--A tamarack plantation of a number of seed sources was established in 1967

More information

National Forests in North Carolina Croatan National Forest Croatan Ranger District

National Forests in North Carolina Croatan National Forest Croatan Ranger District United States Department of Agriculture Forest Service National Forests in North Carolina Croatan National Forest Croatan Ranger District 141 East Fisher Avenue New Bern, NC 28560-8468 252-638-5628 File

More information

Users Guide for Noble Fir Bough Cruiser

Users Guide for Noble Fir Bough Cruiser United States Department of Agriculture Forest Service Pacific Northwest Research Station General Technical Report PNW-GTR-644 July 2005 Users Guide for Noble Fir Bough Cruiser Roger D. Fight, Keith A.

More information

Photo Courtesy of Yumian Deng CC BY. Duke Carbon Offsets Initiative Carbon Sink Guide

Photo Courtesy of Yumian Deng CC BY. Duke Carbon Offsets Initiative Carbon Sink Guide Photo Courtesy of Yumian Deng CC BY Duke Carbon Offsets Initiative Carbon Sink Guide Duke Carbon Offsets Initiative History In 2007, Duke University signed the American College and University Presidents

More information

Urban Tree Planting Quantification Guidance

Urban Tree Planting Quantification Guidance Urban Tree Planting Quantification Guidance May 2016 1 Introduction... 2 2 Reporting Requirements for Urban Forest Carbon Pools... 2 3 Methodology for Estimating CO 2 e in Urban Tree Planting Projects...

More information

A Simple Procedure for Mapping Tree

A Simple Procedure for Mapping Tree Forest Science, Vol. 35, No. 3, pp. 657-662 Copyright 1989 by the Society of American Foresters A Simple Procedure for Mapping Tree Locations in Forest Stands DAVID D. REED HAL O. LIECHTY ANDREW J. BURTON

More information

MS33 THINNING STUDY: NINE-YEAR POST THINNING ANALYSIS

MS33 THINNING STUDY: NINE-YEAR POST THINNING ANALYSIS MS33 THINNING STUDY: NINE-YEAR POST THINNING ANALYSIS Plantation Management Research Cooperative Daniel B. Warnell School of Forest Resources University of Georgia PMRC Technical Report 1998-1 February,

More information

Change Monitoring Inventory

Change Monitoring Inventory Change Monitoring Inventory Ground Sampling Quality Assurance Standards Prepared by Ministry of Forests Resources Inventory Branch for the Terrestrial Ecosystem Task Force Resources Inventory Committee

More information

Primary questions: Incorporating Biomass Harvesting into Sustainable Forest Management: Issues and Guidelines

Primary questions: Incorporating Biomass Harvesting into Sustainable Forest Management: Issues and Guidelines Incorporating Biomass Harvesting into Sustainable Forest Management: Issues and Guidelines Northern Forest Biomass Energy Initiative: Working Session Conference Primary questions: How might biomass harvesting

More information

Potentially available LWD metrics for assessing riparian forest function

Potentially available LWD metrics for assessing riparian forest function Potentially available LWD metrics for assessing riparian forest function Kevin R. Gehringer Ph.D. Biometrics Northwest LLC SAF 2010 National Convention October 27-31 Albuquerque, New Mexico Introduction

More information

INTERNAL REPORT 98 STAND STRUCTURE SIMULATION. Peter Farnum. University of Washington ABSTRACT

INTERNAL REPORT 98 STAND STRUCTURE SIMULATION. Peter Farnum. University of Washington ABSTRACT INTERNAL REPORT 98 STAND STRUCTURE SIMULATION BASED ON INDIVIDUAL TREE UNITS Peter Farnum University of Washington ABSTRACT A model is developed to simulate basal area growth and mortality for forest stands

More information

TFL 52 BLOCKS A & B CHANGE MONITORING INVENTORY: TIME 2 MEASUREMENT RESULTS

TFL 52 BLOCKS A & B CHANGE MONITORING INVENTORY: TIME 2 MEASUREMENT RESULTS TFL 52 BLOCKS A & B CHANGE MONITORING INVENTORY: TIME 2 MEASUREMENT RESULTS Prepared for: Earl Spielman, RPF Inventory Forester West Fraser Mills Ltd. Quesnel, BC Prepared by: Timberline Natural Resource

More information

Spacing Trials Using the Nelder Wheel 1

Spacing Trials Using the Nelder Wheel 1 Spacing Trials Using the Nelder Wheel 1 Walter B. Mark 2 Abstract: The Nelder Wheel is a single tree systematic experimental design. Its major application is for plantation spacing experiments. The design

More information

What to do with a 60 + year old unmanaged red pine stand?

What to do with a 60 + year old unmanaged red pine stand? What to do with a 60 + year old unmanaged red pine stand? Background Red pine (Pinus resinosa) was extensively planted in the early parts of the 20 th century on abandoned agricultural land to control

More information

SPATIAL ANALYSIS OF POTENTIAL IMPACTS OF LOCAL FORESTRY ORDINANCES

SPATIAL ANALYSIS OF POTENTIAL IMPACTS OF LOCAL FORESTRY ORDINANCES SPATIAL ANALYSIS OF POTENTIAL IMPACTS OF LOCAL FORESTRY ORDINANCES David R. Daversa, Stephen P. Prisley, and Michael J. Mortimer Department of Forestry, Virginia Tech, Blacksburg, VA 24061 ABSTRACT Local

More information

12-1. TIMBER ESTIMATION 291

12-1. TIMBER ESTIMATION 291 12-1. TIMBER ESTIMATION 291 FOREST INVENTORY A forest inventory is the procedure for obtaining information on the quantity, quality, and condition of the forest resource, associated vegetation and components,

More information

TIMBER SALE PRESCRIPTION

TIMBER SALE PRESCRIPTION Michigan Department of Natural Resources - Forest, Mineral and Fire Management TIMBER SALE PRESCRIPTION Date 01/13/09 Timber Sale Number (if applicable) Name Scott Lint Email Address LintS@michigan.gov

More information

Models for Unfertilized and Fertilized Slash Pine Plantations: CRIFF B400 and B500 Series PMRC TECHNICAL REPORT

Models for Unfertilized and Fertilized Slash Pine Plantations: CRIFF B400 and B500 Series PMRC TECHNICAL REPORT Models for Unfertilized and Fertilized Slash Pine Plantations: CRIFF B400 and B500 Series Plantation Management Research Cooperative Daniel B. Warnell School of Forest Resources University of Georgia Athens,

More information

Full-tree harvesting system aids forest management

Full-tree harvesting system aids forest management Utah State University DigitalCommons@USU Aspen Bibliography Aspen Research 1969 Full-tree harvesting system aids forest management Z.A. Zasada J.C. Tappeiner Follow this and additional works at: https://digitalcommons.usu.edu/aspen_bib

More information

CHANGES _ A MISSOURI OZARK OAK-HICKORY FOREST DURING 40 YEARS OF U_EVEN-AGED

CHANGES _ A MISSOURI OZARK OAK-HICKORY FOREST DURING 40 YEARS OF U_EVEN-AGED CHANGES _ A MISSOURI OZARK OAK-HICKORY FOREST DURING 40 S OF U_EVEN-AGED MANAGEMENT Edward F. Loewenstein_,Harold E. GarretP, Paul S. Johnson2,and John P. Dwyer' Abstract: Changes in basal area, density

More information

Forest Assessments with LiDAR: from Research to Operational Programs

Forest Assessments with LiDAR: from Research to Operational Programs Forest Assessments with LiDAR: from Research to Operational Programs David L. Evans Department of Forestry Forest and Wildlife Research Center Mississippi State University Forest Remote Sensing: Then and

More information

TIMBER SALE PRESCRIPTION

TIMBER SALE PRESCRIPTION Michigan Department of Natural Resources - Forest, Mineral and Fire Management TIMBER SALE PRESCRIPTION Date 08/01/2011 Timber Sale Number (if applicable) 61-0??-11-01 Name Scott Throop Email Address throops@michigan.gov

More information

UNEVEN-AGED MANAGEMENT NORTHWEST CERTIFIED FORESTRY

UNEVEN-AGED MANAGEMENT NORTHWEST CERTIFIED FORESTRY UNEVEN-AGED MANAGEMENT NORTHWEST CERTIFIED FORESTRY Rolf Gersonde, 6/6/2015 Uneven-aged Management in 90 Minutes 2 Silviculture Background Forest Ecology Management Tools and Stocking Control Multi-aged

More information

Two-Aged Development of a Hickory and Yellow-Poplar Stand at Chuck Swan State Forest- Preliminary Results

Two-Aged Development of a Hickory and Yellow-Poplar Stand at Chuck Swan State Forest- Preliminary Results Forestry, Wildlife, and Fisheries Graduate Seminar Two-Aged Development of a and Yellow-Poplar Stand at Chuck Swan State Forest- Preliminary Results Amy Morgan, Brandon Kaetzel, Wayne Clatterbuck University

More information

Carbon sequestration is becoming. How to Estimate Forest Carbon for Large Areas from Inventory Data

Carbon sequestration is becoming. How to Estimate Forest Carbon for Large Areas from Inventory Data How to Estimate Forest Carbon for Large Areas from Inventory Data Linda S. Heath James E. Smith, Linda S. Heath, and Peter B. Woodbury ABSTRACT Carbon sequestration through forest growth provides a low-cost

More information

INDIAN AFFAIRS MANUAL. Chapter 8 Inventory and Monitoring Page 1

INDIAN AFFAIRS MANUAL. Chapter 8 Inventory and Monitoring Page 1 Chapter 8 Inventory and Monitoring Page 1 8.1 Purpose. This chapter documents the policies, standards, and responsibilities applicable to the collection, analysis and use of scientifically based data for

More information

Comparison of basal area estimated with Angle Count Method and Fixed Area Plots (A case study in tropical peat swamp forest)

Comparison of basal area estimated with Angle Count Method and Fixed Area Plots (A case study in tropical peat swamp forest) DAAD Workshop The Ecological and Economic Challenges of Managing Forested Landscapes in a Global Context - Focus: Asia Comparison of basal area estimated with Angle Count Method and Fixed Area Plots (A

More information

Tree Height Estimation in Redwood/Douglas-fir Stands in Mendocino County

Tree Height Estimation in Redwood/Douglas-fir Stands in Mendocino County Tree Height Estimation in Redwood/Douglas-fir Stands in Mendocino County Helge Eng 1 Abstract In this study, height-diameter equations were developed for managed stands of coastal redwood/douglas-fir stands

More information

Georgia, Forest Inventory & Analysis Factsheet. Richard A. Harper. Timberland Area and Live-Tree Volume by Survey

Georgia, Forest Inventory & Analysis Factsheet. Richard A. Harper. Timberland Area and Live-Tree Volume by Survey Georgia, 211 Richard A. Harper Forest Inventory & Analysis Factsheet F I A Forest cover along the Ocmulgee River south of Macon, GA. (photo courtesy of the Georgia Forestry Commission) 3 25 2 15 1 5 Area

More information

IMPACT OF INITIAL SPACING ON YIELD PER ACRE AND WOOD QUALITY OF UNTHINNED LOBLOLLY PINE AT AGE 21

IMPACT OF INITIAL SPACING ON YIELD PER ACRE AND WOOD QUALITY OF UNTHINNED LOBLOLLY PINE AT AGE 21 IMPACT OF INITIAL SPACING ON YIELD PER ACRE AND WOOD QUALITY OF UNTHINNED LOBLOLLY PINE AT AGE 21 Alexander Clark III, Richard F. Daniels, Lewis Jordan, and Laurie Schimleck 1 Abstract The market for southern

More information

FORESTRY. 3-4 Member Team

FORESTRY. 3-4 Member Team FORESTRY 3-4 Member Team IMPORTANT NOTE Please thoroughly read the General CDE Rules Section at the beginning of this handbook for complete rules and procedures that are relevant to State FFA Career Development

More information

Lower Mississippi Valley Joint Venture.

Lower Mississippi Valley Joint Venture. Lower Mississippi Valley Joint Venture www.lmvjv.org Managing Bottomland Hardwood Forest for Wildlife aka Desired Forest Conditions (DFCs) Kenny Ribbeck Louisiana Dept. Wildlife & Fisheries On Behalf of

More information

Airborne Laser Scanning (ALS) for forestry applications

Airborne Laser Scanning (ALS) for forestry applications Airborne Laser Scanning (ALS) for forestry applications International School on Lidar Technology 2008 IIT Kanpur, India Norbert Pfeifer + I.P.F.-Team http://www.ipf.tuwien.ac.at/ Christian Doppler Laboratory

More information

MONITORING FOR FOREST CARBON UNDER THIRD PARTY-VERIFIED CARBON OFFSET PROGRAMS

MONITORING FOR FOREST CARBON UNDER THIRD PARTY-VERIFIED CARBON OFFSET PROGRAMS MONITORING FOR FOREST CARBON UNDER THIRD PARTY-VERIFIED CARBON OFFSET PROGRAMS Prepared by Swedeen Consulting for Northwest Natural Resource Group 1 Published March 2014 Northwest Natural Resource Group

More information

Report and Opinion 2017;9(4)

Report and Opinion 2017;9(4) Parameter estimation accuracy of Diameter- height relationship and volume models of Entandrophragma angolensis species in Forestry Research Institute Nigeria (FRIN) Onne. Bukola Amoo Oyebade, Funmilayo

More information

Intensive Pine Straw Management on Post CRP Pine Stands

Intensive Pine Straw Management on Post CRP Pine Stands Intensive Pine Straw Management on Post CRP Pine Stands Mike D. Hayes, Bryan C. McElvany, E. David Dickens and David J. Moorhead 1 Introduction Across Southeast Georgia, thousands of landowners are faced

More information

Assessing Your Local Urban Forest. David J. Nowak USDA Forest Service Northern Research Station Syracuse, NY

Assessing Your Local Urban Forest. David J. Nowak USDA Forest Service Northern Research Station Syracuse, NY Assessing Your Local Urban Forest David J. Nowak USDA Forest Service Northern Research Station Syracuse, NY 1 Measurement is Critical Structure Function Value 2 Assessing Urban Forests Top-down approach

More information

Electronic Measurement Solutions. Examples in log scaling and standing forest inventory

Electronic Measurement Solutions. Examples in log scaling and standing forest inventory Electronic Measurement Solutions Examples in log scaling and standing forest inventory Haglöf Sweden AB Haglof Company Group Haglöf Company Group Haglöf Sweden AB, Sweden 1943 Haglöf Production, Sweden

More information

FOR 274: Forest Measurements and Inventory. Tree Age: Introduction. Tree Age: Terms. Tree Age and Site Indices Age Site Indices Variable Radius Plots

FOR 274: Forest Measurements and Inventory. Tree Age: Introduction. Tree Age: Terms. Tree Age and Site Indices Age Site Indices Variable Radius Plots FOR 274: Forest Measurements and Inventory Tree Age and Site Indices Age Site Indices Variable Radius Plots Tree Age: Introduction Tree Age: Defined as the time elapsed since germination (or budding of

More information

NTRALHARDWOOD NOTES. Estimating Oak Growth and Yield. Managed Stand Yield. Individual Tree Growth and Yield Models

NTRALHARDWOOD NOTES. Estimating Oak Growth and Yield. Managed Stand Yield. Individual Tree Growth and Yield Models North Central Forest Experiment Station 5.03 NTRALHARDWOOD NOTES Estimating Oak Growth and Yield Yields from upland oak stands vary widely from stand to stand due to differences in age, site quality, species

More information

New Turf for Gypsy Moth; There's More at Risk Downrange

New Turf for Gypsy Moth; There's More at Risk Downrange United States Department of Agriculture Forest Service Nottheastern Forest Experiment Station Research Paper NE-519 1983 New Turf for Gypsy Moth; There's More at Risk Downrange David A. Gansner, Owen W.

More information

Data and Information Collection for Sustainable Forest Management in Japan

Data and Information Collection for Sustainable Forest Management in Japan Data and Information Collection for Sustainable Forest Management in Japan Japan s Country Report for the International Expert Meeting on MAR-SFM 5 Nov 2001 Yokohama, Japan Yuji Imaizumi Assistant Director

More information

SandYare the strata-weighted mean, and standard

SandYare the strata-weighted mean, and standard A LANDSAT STAND BASAL AREA CLASSIFICATION SUITABLE FOR AUTOMATING STRATIFICATION OF FOREST INTO STATISTICALLY EFFICIENT STRATA Emily B. Schultz a, Thomas G. Matney a, David L. Evans a, and Ikuko Fujisaki

More information

INTERPINE. Investigation of Measurement Variability in FCM indicators Task 3. Prepared for NZFOA Print Date: Thursday, 31 March 2011

INTERPINE. Investigation of Measurement Variability in FCM indicators Task 3. Prepared for NZFOA Print Date: Thursday, 31 March 2011 INTERPINE Forestry Innovation Investigation of Measurement Variability in FCM indicators Task 3 Dash, J.P. and Marshall, H. Prepared for NZFOA Print Date: Ref. No: NZFOA170111 37 pages (including cover)

More information

Overview. United States Department of Agriculture. Sampling error (percent) Sampling error (percent)

Overview. United States Department of Agriculture. Sampling error (percent) Sampling error (percent) United States Department of Agriculture This resource update provides an overview of forest resources in Nebraska based on inventories conducted by the USDA Forest Service, Forest Inventory and Analysis

More information

TIMBER SALE PRESCRIPTION

TIMBER SALE PRESCRIPTION Michigan Department of Natural Resources - Forest, Mineral and Fire Management GENERAL Date TIMBER SALE PRESCRIPTION 01/17/11 Timber Sale Number (if applicable) 720041201 LOCAL CONTACT Name Tom Barnes

More information

Incorporating multi-cohort old aspen and mixedwood dynamics into a long term forest management plan

Incorporating multi-cohort old aspen and mixedwood dynamics into a long term forest management plan Incorporating multi-cohort old aspen and mixedwood dynamics into a long term forest management plan Session 4a Beyond Breakup Boreal Mixedwoods 2012 Conference Edmonton, AB Paul LeBlanc June 19 th, 2012

More information

Modeling Timber Appraisal Values on Native Trust Land

Modeling Timber Appraisal Values on Native Trust Land 2012 Esri International User Conference Where geographic knowledge drives action Managing Tribal Lands and Resources Modeling Timber Appraisal Values on Native Trust Land Carl Hardzinski USDI BIA MWR Bloomington,

More information

Nova Scotia Forest Inventory

Nova Scotia Forest Inventory Nova Scotia Forest Inventory Based on Forest Inventory Permanent Sample Plots Measured between 1994 and 1998 Report FOR 2000-1 TABLE OF CONTENTS 1.0 INTRODUCTION 1 1.1 Background 1 2.0 METHODS 2 3.0 RESULTS

More information

8.0 Forest Assessment Methods

8.0 Forest Assessment Methods 8.0 Forest Assessment Methods 8.1 Multiple Resource Inventory The type of information needed for the management of any forest includes a multitude of resource values. Gaining this information has stimulated

More information

EASTERN WHITE PINE SEED SOURCE VARIATION IN A NORTHERN MINNESOTA PLANTING. R. M. Jeffers 1 ABSTRACT

EASTERN WHITE PINE SEED SOURCE VARIATION IN A NORTHERN MINNESOTA PLANTING. R. M. Jeffers 1 ABSTRACT EASTERN WHITE PINE SEED SOURCE VARIATION IN A NORTHERN MINNESOTA PLANTING R. M. Jeffers 1 ABSTRACT Survival, total height, and diameter growth of eastern white pine grown in a northern Minnesota planting

More information

The Influence of Stand Density on Mortality in California s Forests

The Influence of Stand Density on Mortality in California s Forests The Influence of Stand Density on Mortality in California s Forests An Analysis of Inventory Data Michael Landram Regional Silviculturist, USDA Forest Service, R-5 Contributors and Collaborators Ralph

More information

NEW USES FOR OLD DATA Green Triangle Permanent Growth Plot Projects

NEW USES FOR OLD DATA Green Triangle Permanent Growth Plot Projects NEW USES FOR OLD DATA Green Triangle Permanent Growth Plot Projects Dr Jim O Hehir General Manager Planning and Development And many others Green Triangle SE South Australia and SW Victoria South Australia

More information