Parameters
- geometry
- The geometry to replace non simple Zs.
- zValue
- The z-value to assign.
Return Value
A geometry in which each coordinate has a simple (non-NaN) z-value.
Exception | Description |
---|---|
System.ArgumentNullException | Geometry is null or empty. |
System.NotImplementedException | The method is not implemented for GeometryBag. |
System.InvalidOperationException | This geometry is not Z-Aware. |
List<Coordinate3D> coordsZ = new List<Coordinate3D>() { new Coordinate3D(1, 2, double.NaN), new Coordinate3D(4, 5, 3), new Coordinate3D(7, 8, double.NaN) }; Polygon polygon = PolygonBuilder.CreatePolygon(coordsZ); // polygon.HasZ = true Polygon polygonZReplaced = GeometryEngine.Instance.ReplaceNaNZs(polygon, -1) as Polygon; // polygonZReplaced.Points[0].Z = -1 // polygonZReplaced.Points[1].Z = 3 // polygonZReplaced.Points[2].Z = -1
Target Platforms: Windows 10, Windows 8.1