I am new to working with raster data and I am trying to teach myself a few things. I have what I think is a simple problem but I can't seem to figure this one out after a few hours of searching Arc Help etc.
I have raster with ground elevations to which I want to add tree heights. I have a Forest Cover polygon vector layer which has tree heights for my study area. I would like to add the heights of trees to the elevation data.
My first guess was to convert the Forest Cover polygon to a raster based on the tree height field and then Merge/Combine the two rasters?
I have esri's 3d Analyst so I think I would have all the available tools? I am using ArcMap 10.0
-
2Could you please supply more details such as what the purpose of the analysis is? Is this for cartographic or analytic purposes?Aaron– Aaron ♦2014年03月28日 18:54:10 +00:00Commented Mar 28, 2014 at 18:54
-
1Hi Aaron. I am just doing some basic visual analysis using the Line of Sight tool. I am wondering if a certain study area is visible from a few specific viewpoints, however I would like to add tree heights to my raster data to make it slightly more accurateChrisA– ChrisA2014年03月28日 18:59:46 +00:00Commented Mar 28, 2014 at 18:59
-
I'm new to this too but thinking of this logically: you'd have a forest raster. On that raster you would have a point that represents a tree. That tree would have 3 values: x,y would be the lat/long of the tree and z would be the tree height. Now the how to in setting all that is far beyond me.SASS_Shooter– SASS_Shooter2014年03月28日 19:02:20 +00:00Commented Mar 28, 2014 at 19:02
-
If I've created a raster which cells are based off of tree heights, and the cells of my two data sets are the same size... is it as easy as adding the two rasters together using the Raster Calculator tool?ChrisA– ChrisA2014年03月28日 19:34:47 +00:00Commented Mar 28, 2014 at 19:34
1 Answer 1
you can do this with the raster calculator, but probably not as easy as a sum because you probably have NoData values where there is no forest . In this case, here is a more robust method :
Con(IsNull("converted_polygon"), "DEM", "DEM" + "converted_polygon" )
-
Another Approach: Reproject Forest Cover polygons to the same projection as the DEM. Run the reprojected Forest Cover Polygon feature class using the Polygon to Raster tool with the height field and set the cell size to the same as the DEM and set the Environmental Settings in the Polygon to Raster tool - Processing Extent - Snap Raster to your current DEM. Use the Spatial Analyst Plus Tool (Spatial Analyst - Math - Plus) to add the DEM and the Forest Cover Raster together.ChrisA– ChrisA2014年04月11日 21:29:46 +00:00Commented Apr 11, 2014 at 21:29
-
@ChrisA be careful that you will have no data where there is no forest, so if you use the plus tool, something + NoData will yield NoDataradouxju– radouxju2014年04月13日 09:28:49 +00:00Commented Apr 13, 2014 at 9:28
-
Explore related questions
See similar questions with these tags.