I am trying to tile a process a point cloud to make a raster. What I want to happen for each tile is
- Read tile boundary
- Buffer by 100m
- Clip point cloud to Buffered polygon
- Create DEM
- Clip DEM to tile boundary
- Write the final output raster
Also I'm wondering how to implement the clipping the output DEM to the correct tile geometry. I suspect I need to implement this as a loop so that it steps through each tile.
Thanks