Arc Extract Breakline from DEM

From Tuflow
Revision as of 12:55, 21 October 2012 by tuflow>Par (Created page with "=Introduction= This page outlines the method used to take a line feature class, and extract elevations from DEM for input to TUFLOW breaklines. This is useful if you have a hydr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Introduction

This page outlines the method used to take a line feature class, and extract elevations from DEM for input to TUFLOW breaklines. This is useful if you have a hydraulic control, for example a road embankment that you want to ensure is represented in the model. In this method the elevations will be extracted from the DEM. If detailed survey exists this should be used. This can also be used to process a thalweg / creek centre line.
TUFLOW breaklines (2d Z Shape), are a mixture of line and point feature classes. This allows points to be deleted, without deleting the vertices along the line. The process of converting a line feature class, to a point feature class and extracting the elevation. Is a multiple step process and we are looking to implement a python script to automate this. There are two ways of doing this:
Method 1

  1. Convert line vertices to points
  2. Extract elevations directly from DEM


This method requires that the line has been digitised at the high or low point that you are trying to represent. The next method, creates a buffer around each points and can be used to extract the maximum / minimum elevation from the DEM within this buffer. This ensures that the control is represented, even if the line does not follow the levee crest or centreline perfectly. Method 2 The steps involved are:

  1. Convert line vertices to points
  2. Create a buffer around each point (specified buffer distance)
  3. Extract desired elevation statistic (max, min, mean) for each region
  4. Assign elevation from buffer to point