public static enum CustomProjection.Param extends java.lang.Enum<CustomProjection.Param>
Enum Constant and Description |
---|
a
Semimajor radius of the ellipsoid axis
|
alpha
azimuth (true) of the center line passing through the center of the
projection (Oblique Mercator)
|
axis
definition of axis for projection
|
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)
|
gamma
rectified bearing of the center line (Oblique Mercator)
|
init |
k_0
Scaling factor
|
lat_0
Latitude of origin
|
lat_1
Latitude of first standard parallel
|
lat_2
Latitude of second standard parallel
|
lat_ts
Latitude of true scale (Polar Stereographic)
|
lon_0
Central meridian
|
lon_1
longitude of first point (Oblique Mercator)
|
lon_2
longitude of second point (Oblique Mercator)
|
lonc
longitude of the center of the projection (Oblique Mercator)
|
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
|
no_off
select "Hotine" variant of Oblique Mercator
|
no_uoff
legacy alias for no_off
|
pm
Prime meridian
|
proj
Projection name (see
proj -l ) |
rf
Reciprocal of the ellipsoid flattening term (e.g.
|
south
indicate southern hemisphere for UTM
|
to_meter
crs units to meter multiplier
|
towgs84
3 or 7 term datum transform parameters
|
units
meters, US survey feet, etc.
|
vunits
vertical units - ignore, as we don't use height information
|
wktext
the exact proj.4 string will be preserved in the WKT representation
|
wmssrs |
x_0
False easting
|
y_0
False northing
|
zone
UTM zone
|
Modifier and Type | Field and Description |
---|---|
boolean |
hasValue
true if the parameter has a value |
java.lang.String |
key
Parameter key
|
(package private) static java.util.Map<java.lang.String,CustomProjection.Param> |
paramsByKey
Map of all parameters by key
|
Modifier and Type | Method and Description |
---|---|
static CustomProjection.Param |
valueOf(java.lang.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 pm
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 lat_ts
public static final CustomProjection.Param lonc
public static final CustomProjection.Param alpha
public static final CustomProjection.Param gamma
public static final CustomProjection.Param no_off
public static final CustomProjection.Param no_uoff
public static final CustomProjection.Param lon_1
public static final CustomProjection.Param lon_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 to_meter
public static final CustomProjection.Param axis
public static final CustomProjection.Param zone
public static final CustomProjection.Param south
public static final CustomProjection.Param vunits
public static final CustomProjection.Param wmssrs
public static final CustomProjection.Param bounds
public final java.lang.String key
public final boolean hasValue
true
if the parameter has a valuestatic final java.util.Map<java.lang.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(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 namejava.lang.NullPointerException
- if the argument is null