Calculating slope from contours using buffers and creating a slope map

Here is a simple way of creating a slope map using contour data to create a vector polygon layer.

Below we have 50m contour data.

contours only

For example to calculate a slope of 10 degrees or greater using 50m contours we must calculate the maximum distance between contour lines that results in a 10 degree slope using a trigonometric equation.

10 degree slope

In this example the maximum distance is 284 meters between the 50m contour lines.

We then halve this distance to get 142 meters and use this value to buffer the contours. Do not dissolve the buffer results as we will need to find the intersects between the buffers.

contours buffered

Intersect the buffers to find the overlapping areas. The intersect tool in ArcGIS can be useful for this. These overlaps will signal the contours lines that have 10 degrees or more slope between them.

intersected buffers

These intersected slithers only represent part of the 10 degree slope as the 10 degree slope should in theory cover the entire width between the two contour lines and possibly beyond the contour lines depending on the width of the intersect.

Buffering these intersects using the 142m figure that was calculated previously will extend the slope areas to the nearest contour line and beyond depending on the steepness of the slope. Dissolving this final buffer will create a single feature representing the 10 degrees and above slope.

calculating slope from contours

To calculate slope intervals, you would follow the same process as above with progressively higher slopes while clipping out the lower slope layer with the higher layer until you reach the largest slope interval layer. 

 

 

 

 

Leave a Comment