Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

I have a point file of trees in my study area, which includes the attributes of each tree. Each tree also has a crown radius associated with it. I need to summarize the attributes of these points into a 5-meter raster file. The 5-meter raster file placement is defined by a 5-meter fishnet.

I would like a suggestion as to which method is the most statistically robust.

One method I thought might work is:

For a given 5 X 5 meter cell, take the area of each crown that occupies a cell and multiply it by the attribute of interest. Do this for each crown and sum these values and divide by the total area of crown occupying the given cell.

i.e. Let the shape i be have the value of some attribute of the Tree … say Crown bulk density, (CBDi ) Then the value of the grid cell X = sum(CBDi * Ai) / sum (Ai) where Ai is the area of each crown within the cell.

I don't know how to perform this method in ArcGIS though.

Another simple method:

  1. Do a point to raster and calculate the mean value and snap the raster to the defined raster.
  2. Choose either bilinear or nearest neighbor for the resampling method in the environment settings.

Thanks in advance for your help! Jim

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.