public static enum CustomProjection.Param extends Enum<CustomProjection.Param>
Enum Constant and Description |
---|
a
Semimajor radius of the ellipsoid axis
|
b
Semiminor radius of the ellipsoid axis
|
bounds |
datum
Datum name (see
proj -ld ) |
ellps
Ellipsoid name (see
proj -le ) |
es
Eccentricity of the ellipsoid squared
|
f
Flattening of the ellipsoid = 1-sqrt(1-e^2)
|
init |
k_0
Scaling factor
|
lat_0
Latitude of origin
|
lat_1
Latitude of first standard parallel
|
lat_2
Latitude of second standard parallel
|
lon_0
Central meridian
|
nadgrids
Filename of NTv2 grid file to use for datum transforms
|
no_defs
Don't use the /usr/share/proj/proj_def.dat defaults file
|
proj
Projection name (see
proj -l ) |
rf
Reciprocal of the ellipsoid flattening term (e.g.
|
towgs84
3 or 7 term datum transform parameters
|
units
meters, US survey feet, etc.
|
wktext
the exact proj.4 string will be preserved in the WKT representation
|
wmssrs |
x_0
False easting
|
y_0
False northing
|
Modifier and Type | Field and Description |
---|---|
boolean |
hasValue
true if the parameter has a value |
String |
key
Parameter key
|
static Map<String,CustomProjection.Param> |
paramsByKey
Map of all parameters by key
|
Modifier and Type | Method and Description |
---|---|
static CustomProjection.Param |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomProjection.Param[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomProjection.Param x_0
public static final CustomProjection.Param y_0
public static final CustomProjection.Param lon_0
public static final CustomProjection.Param k_0
public static final CustomProjection.Param ellps
proj -le
)public static final CustomProjection.Param a
public static final CustomProjection.Param es
public static final CustomProjection.Param rf
public static final CustomProjection.Param f
public static final CustomProjection.Param b
public static final CustomProjection.Param datum
proj -ld
)public static final CustomProjection.Param towgs84
public static final CustomProjection.Param nadgrids
public static final CustomProjection.Param proj
proj -l
)public static final CustomProjection.Param lat_0
public static final CustomProjection.Param lat_1
public static final CustomProjection.Param lat_2
public static final CustomProjection.Param wktext
public static final CustomProjection.Param units
public static final CustomProjection.Param no_defs
public static final CustomProjection.Param init
public static final CustomProjection.Param wmssrs
public static final CustomProjection.Param bounds
public final boolean hasValue
true
if the parameter has a valuepublic static final Map<String,CustomProjection.Param> paramsByKey
public static CustomProjection.Param[] values()
for (CustomProjection.Param c : CustomProjection.Param.values()) System.out.println(c);
public static CustomProjection.Param valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null