DK11 for .NET | TatukGIS.NDK.TGIS_ContourGeneratorMode | Enums
Specifies output type for contouring process.
// C# public enum TGIS_ContourGeneratorMode { Polylines, ClosedPolylines, OverlappingPolygons, Polygons }
' VisualBasic Public Enum TGIS_ContourGeneratorMode Polylines ClosedPolylines OverlappingPolygons Polygons End Enum
// Oxygene type TGIS_ContourGeneratorMode = public ( Polylines, ClosedPolylines, OverlappingPolygons, Polygons );
Name | Value | Description | |
---|---|---|---|
Polylines | Plain polylines like the contouring algorithm provide. | ||
ClosedPolylines | Force polylines' closure. | ||
OverlappingPolygons | Overlapping polygon shells where the lower limit value increase by ContourInterval from ContourBase and upper equals maximum value of the source grid; for example 0..100, 10..100, 20..100, etc. | ||
Polygons | Non-overlapping polygon bands with range of lower and upper limit equals ContourInterval; for example 0..10, 10..20, 20..30, etc. | ||