Geometry Service Simplify method

Generates topologically correct geometry.

 

Simplify(SpatialReference SpatialReference, Geometry[] InGeometryArray)

 

Parameter

Description

SpatialReference

SpatialReference of the geometries in the InGeometryArray. Cannot be null.
 

InGeometryArray

The array of Geometry to be simplified.  All geometries are assumed to be in the coordinate system defined by the SpatialReference parameter.
 

 

Return Value

 

An array of Geometry (Geometry[]).

 

Remarks

 

Input geometry can be points, multipoints, polylines or polygons. Geometry that cannot be simplifed are replaced with empty geometries of the same type.

 

Simplify alters the input geometry making its definition "topologically legal" with respect to its geometry type:
 

Examples

C#

VB.NET

Java