public static enum ContextualParameters.MatrixRole extends Enum<ContextualParameters.MatrixRole>
ContextualParameters.getMatrix(MatrixRole)
Defined in the sis-referencing
module
Enum Constant and Description |
---|
DENORMALIZATION
Matrix for scaling Cartesian coordinates to the size of the planet, or any other linear operations needed
after execution of a non-linear operation.
|
INVERSE_DENORMALIZATION
Inverse of the
DENORMALIZATION matrix. |
INVERSE_NORMALIZATION
Inverse of the
NORMALIZATION matrix. |
NORMALIZATION
Matrix for converting angular degrees to radians, or any other linear operations needed
before to apply a non-linear operation.
|
Modifier and Type | Method and Description |
---|---|
static ContextualParameters.MatrixRole |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContextualParameters.MatrixRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContextualParameters.MatrixRole NORMALIZATION
public static final ContextualParameters.MatrixRole INVERSE_NORMALIZATION
NORMALIZATION
matrix.
For example in a map projection, this matrix is typically (but not necessarily) as below:
public static final ContextualParameters.MatrixRole DENORMALIZATION
public static final ContextualParameters.MatrixRole INVERSE_DENORMALIZATION
DENORMALIZATION
matrix.public static ContextualParameters.MatrixRole[] values()
for (ContextualParameters.MatrixRole c : ContextualParameters.MatrixRole.values()) System.out.println(c);
public static ContextualParameters.MatrixRole 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 nullCopyright © 2010–2017 The Apache Software Foundation. All rights reserved.