EllipsoidComputeSurfaceArea Method (Double, Double, Double, Double) |
Computes an approximation of the surface area of a given section of the surface of an ellipsoid using
Gauss Legendre 10th order quadrature.
Namespace:
AGI.Foundation.Geometry.Shapes
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public double ComputeSurfaceArea(
double minLongitude,
double minLatitude,
double maxLongitude,
double maxLatitude
)
Public Function ComputeSurfaceArea (
minLongitude As Double,
minLatitude As Double,
maxLongitude As Double,
maxLatitude As Double
) As Double
public:
double ComputeSurfaceArea(
double minLongitude,
double minLatitude,
double maxLongitude,
double maxLatitude
)
member ComputeSurfaceArea :
minLongitude : float *
minLatitude : float *
maxLongitude : float *
maxLatitude : float -> float
Parameters
- minLongitude
- Type: SystemDouble
The west-most longitude which bounds the region. - minLatitude
- Type: SystemDouble
The south-most latitude which bounds the region. - maxLongitude
- Type: SystemDouble
The east-most longitude which bounds the region. - maxLatitude
- Type: SystemDouble
The north-most latitude which bounds the region.
Return Value
Type:
DoubleThe approximate area of the section on the surface of this ellipsoid.
See Also