Package com.esri.arcgisruntime.geometry
Class GeodeticDistanceResult
- java.lang.Object
 - 
- com.esri.arcgisruntime.geometry.GeodeticDistanceResult
 
 
- 
public final class GeodeticDistanceResult extends Object
The returned result of callingGeometryEngine.distanceGeodetic(Point, Point, LinearUnit, AngularUnit, GeodeticCurveType)- Since:
 - 100.0.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetAzimuth1()Returns the azimuth value at point 1 towards point 2, in the angular unit that was used as a parameter when callingGeometryEngine.distanceGeodetic(Point, Point, LinearUnit, AngularUnit, GeodeticCurveType)doublegetAzimuth2()Returns azimuth value at point 2 towards point 1, in the angular unit that was used as a parameter when callingGeometryEngine.distanceGeodetic(Point, Point, LinearUnit, AngularUnit, GeodeticCurveType)AngularUnitgetAzimuthUnit()Returns the units for the azimuth1 and azimuth2 properties of this object.doublegetDistance()Returns the geodetic distance from the two input points in the same linear unit as the input parameter.LinearUnitgetDistanceUnit()Returns the unit of measure for the distance. 
 - 
 
- 
- 
Method Detail
- 
getDistance
public double getDistance()
Returns the geodetic distance from the two input points in the same linear unit as the input parameter.- Returns:
 - the geodetic distance from the two input points in the same linear unit as the input parameter
 - Since:
 - 100.0.0
 
 
- 
getAzimuthUnit
public AngularUnit getAzimuthUnit()
Returns the units for the azimuth1 and azimuth2 properties of this object.- Returns:
 - the units for the azimuth1 and azimuth2 properties of this object
 - Since:
 - 100.0.0
 
 
- 
getDistanceUnit
public LinearUnit getDistanceUnit()
Returns the unit of measure for the distance.- Returns:
 - the unit of measure for the distance
 - Since:
 - 100.0.0
 
 
- 
getAzimuth1
public double getAzimuth1()
Returns the azimuth value at point 1 towards point 2, in the angular unit that was used as a parameter when callingGeometryEngine.distanceGeodetic(Point, Point, LinearUnit, AngularUnit, GeodeticCurveType)- Returns:
 - azimuth at point 1 towards point 2, in the angular unit that was used as a parameter when calling
 
GeometryEngine.distanceGeodetic(Point, Point, LinearUnit, AngularUnit, GeodeticCurveType) - Since:
 - 100.0.0
 
 
- 
getAzimuth2
public double getAzimuth2()
Returns azimuth value at point 2 towards point 1, in the angular unit that was used as a parameter when callingGeometryEngine.distanceGeodetic(Point, Point, LinearUnit, AngularUnit, GeodeticCurveType)- Returns:
 - azimuth value at point 2 towards point 1, in the angular unit that was used as a parameter when calling
 
GeometryEngine.distanceGeodetic(Point, Point, LinearUnit, AngularUnit, GeodeticCurveType) - Since:
 - 100.0.0
 
 
 - 
 
 -