GM_SlopeAlg_t8 Enumeration |
Slope calculation algorithm to use
Namespace:GlobalMapper.Types
Assembly: GlobalMapperWrapperNET (in GlobalMapperWrapperNET.dll) Version: 18.0.0.0 (18.0.0.0)

C#
Copy
public enum GM_SlopeAlg_t8

Member name | Value | Description | |
---|---|---|---|
SlopeAlg_Combined4 | 0 | Combined X and Y slope using 4 non-diagonal neighbor cells [slope = sqrt( Xslope * Xslope + Yslope * Yslope)] | |
SlopeAlg_Combined8 | 1 | Combined X and Y slope using all 8 neighbor cells [slope = sqrt( Xslope * Xslope + Yslope * Yslope)] | |
SlopeAlg_Max4 | 2 | Maximum slope of the slope from cell to each of 4 non-diagonal neighbor cells | |
SlopeAlg_Max8 | 3 | Maximum slope of the slope from cell to each of 8 neighbor cells | |
SlopeAlg_NumTypes | 4 | Total Number of Slope Algorithm Types | |
SlopeAlg_Default | 0 | Default to the fast method we've been using for a long time |
