|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GeoConstants.Ellipsoid>
org.hermit.geo.GeoConstants.Ellipsoid
public static enum GeoConstants.Ellipsoid
Selectable ellipsoids, for geodetic calculations.
Enum Constant Summary | |
---|---|
AIRY1858
Airy 1858 ellipsoid. |
|
AIRYM
Airy Modified ellipsoid. |
|
NAD27
Clarke 1866 (NAD27) ellipsoid. |
|
SPHERE
Pseudo-ellipsoid for an assumed spherical Earth. |
|
WGS66
NWL-9D (WGS 66) ellipsoid. |
|
WGS72
WGS 72 ellipsoid. |
|
WGS84
WGS 84 ellipsoid. |
Field Summary | |
---|---|
double |
axis
Equatorial semimajor axis of this ellipsoid (in metres). |
double |
flat
Flattening of this ellipsoid. |
java.lang.String |
name
User-visible name of this ellipsoid. |
Method Summary | |
---|---|
static GeoConstants.Ellipsoid |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GeoConstants.Ellipsoid[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GeoConstants.Ellipsoid SPHERE
public static final GeoConstants.Ellipsoid WGS84
public static final GeoConstants.Ellipsoid NAD27
public static final GeoConstants.Ellipsoid AIRY1858
public static final GeoConstants.Ellipsoid AIRYM
public static final GeoConstants.Ellipsoid WGS66
public static final GeoConstants.Ellipsoid WGS72
Field Detail |
---|
public final java.lang.String name
public final double axis
public final double flat
Method Detail |
---|
public static GeoConstants.Ellipsoid[] values()
for (GeoConstants.Ellipsoid c : GeoConstants.Ellipsoid.values()) System.out.println(c);
public static GeoConstants.Ellipsoid valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |