DK11 for Java | tatukgis.jdk.TGIS_ContourGeneratorMode | Enums
Specifies output type for contouring process.
// Java public enum TGIS_ContourGeneratorMode { Polylines, ClosedPolylines, OverlappingPolygons, Polygons }
// Oxygene type TGIS_ContourGeneratorMode = public ( Polylines, ClosedPolylines, OverlappingPolygons, Polygons } of Integer;
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. | ||