Package com.esri.core.geometry
Class OperatorGeodeticAreaLocal
- java.lang.Object
-
- com.esri.core.geometry.Operator
-
- com.esri.core.geometry.OperatorGeodeticArea
-
- com.esri.core.geometry.OperatorGeodeticAreaLocal
-
class OperatorGeodeticAreaLocal extends OperatorGeodeticArea
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.esri.core.geometry.Operator
Operator.Type
-
-
Constructor Summary
Constructors Constructor Description OperatorGeodeticAreaLocal()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]execute(GeometryCursor geoms, SpatialReference sr, int geodeticCurveType, ProgressTracker progressTracker)Calculates the geodetic area of each geometry in the geometry cursor.doubleexecute(Geometry geom, SpatialReference sr, int geodeticCurveType, ProgressTracker progressTracker)Calculates the geodetic area of the input Geometry.-
Methods inherited from class com.esri.core.geometry.OperatorGeodeticArea
getType, local
-
Methods inherited from class com.esri.core.geometry.Operator
accelerateGeometry, canAccelerateGeometry, deaccelerateGeometry
-
-
-
-
Method Detail
-
execute
public double[] execute(GeometryCursor geoms, SpatialReference sr, int geodeticCurveType, ProgressTracker progressTracker)
Description copied from class:OperatorGeodeticAreaCalculates the geodetic area of each geometry in the geometry cursor.- Specified by:
executein classOperatorGeodeticArea- Parameters:
geoms- The geometry cursor to be iterated over to perform the Geodetic Area calculation.sr- The SpatialReference of the geometries.geodeticCurveType- Use theGeodeticCurveTypeinterface to choose the interpretation of a line connecting two points.- Returns:
- Returns an array of the geodetic areas of the geometries.
-
execute
public double execute(Geometry geom, SpatialReference sr, int geodeticCurveType, ProgressTracker progressTracker)
Description copied from class:OperatorGeodeticAreaCalculates the geodetic area of the input Geometry.- Specified by:
executein classOperatorGeodeticArea- Parameters:
geom- The input Geometry for the geodetic area calculation.sr- The SpatialReference of the Geometry.geodeticCurveType- Use theGeodeticCurveTypeinterface to choose the interpretation of a line connecting two points.- Returns:
- Returns the geodetic area of the Geometry.
-
-