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)

Syntax
C#
Copy
public enum GM_SlopeAlg_t8
Members
Member nameValueDescription
SlopeAlg_Combined40Combined X and Y slope using 4 non-diagonal neighbor cells [slope = sqrt( Xslope * Xslope + Yslope * Yslope)]
SlopeAlg_Combined81Combined X and Y slope using all 8 neighbor cells [slope = sqrt( Xslope * Xslope + Yslope * Yslope)]
SlopeAlg_Max42Maximum slope of the slope from cell to each of 4 non-diagonal neighbor cells
SlopeAlg_Max83Maximum slope of the slope from cell to each of 8 neighbor cells
SlopeAlg_NumTypes4Total Number of Slope Algorithm Types
SlopeAlg_Default0Default to the fast method we've been using for a long time
See Also