java.lang.Object
io.jenetics.jpx.geom.Ellipsoid
- All Implemented Interfaces:
Serializable
Represents an earth ellipsoid, which is a mathematical figure approximating
the shape of the Earth, used as a reference frame for computations in
geodesy, astronomy and the geosciences. Various different ellipsoids have
been used as approximations.
- Since:
- 1.0
- Version:
- 1.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EllipsoidThe default ellipsoid: WGSC-84static final EllipsoidThe ellipsoid of the International Earth Rotation and Reference Systems Service (1989)static final EllipsoidThe ellipsoid of the International Earth Rotation and Reference Systems Service (2003)static final EllipsoidThe ellipsoid of the World Geodetic System: WGS 84 -
Method Summary
Modifier and TypeMethodDescriptiondoubleA()Return the equatorial radius, in meter.doubleB()Return the polar radius, in meter.doubleF()Return the inverse flattening.getName()Return the name of the earth ellipsoid model.static EllipsoidCreate a new earth ellipsoid with the given parameters.
-
Field Details
-
WGS84
The ellipsoid of the World Geodetic System: WGS 84- See Also:
-
IERS_1989
The ellipsoid of the International Earth Rotation and Reference Systems Service (1989)- See Also:
-
IERS_2003
The ellipsoid of the International Earth Rotation and Reference Systems Service (2003)- See Also:
-
DEFAULT
The default ellipsoid: WGSC-84
-
-
Method Details
-
getName
Return the name of the earth ellipsoid model.- Returns:
- the name of the earth ellipsoid model
-
A
Return the equatorial radius, in meter.- Returns:
- the equatorial radius, in meter
-
B
Return the polar radius, in meter.- Returns:
- the polar radius, in meter
-
F
Return the inverse flattening.- Returns:
- the inverse flattening
-
of
Create a new earth ellipsoid with the given parameters.- Parameters:
name- the name of the earth ellipsoid modela- the equatorial radius, in meterb- the polar radius, in meterf- the inverse flattening- Returns:
- a new earth ellipsoid with the given parameters
-