Enum Class NormalizedProjection.ParameterRole
- All Implemented Interfaces:
- Serializable,- Comparable<NormalizedProjection.ParameterRole>,- Constable
- Enclosing class:
- NormalizedProjection
NormalizedProjection and its
 normalization / denormalization matrices.
 This is an enumeration of parameters found in almost every map projections, but under different names.
 This enumeration allows NormalizedProjection subclasses to specify which parameter names, ranges
 and default values should be used by the
 projection constructor.
 NormalizedProjection subclasses will typically provide values only for the following keys:
 CENTRAL_MERIDIAN, SCALE_FACTOR, FALSE_EASTING and FALSE_NORTHING.
- Since:
- 0.6
- See Also:
Defined in the sis-referencing module
- 
Nested Class SummaryNested classes/interfaces inherited from class EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionMaps the central meridian parameter (symbol: λ₀).Maps the false easting parameter (symbol: FE).Maps the false northing parameter (symbol: FN).Maps the false southing parameter (symbol: FS).Maps the false westing parameter (symbol: FW).Maps the parameter for the latitude where to compute the radius of conformal sphere (symbol: Rc).Maps the scale factor parameter (symbol: k₀).Maps the semi-major axis length parameter (symbol: a).Maps the semi-minor axis length parameter (symbol: b).
- 
Method SummaryModifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enumclone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- 
Enum Constant Details- 
SEMI_MAJORMaps the semi-major axis length parameter (symbol: a). This value is used for computingNormalizedProjection.eccentricity, and is also a multiplication factor for the denormalization matrix.Unless specified otherwise, this is always mapped to a parameter named "semi_major".NormalizedProjectionsubclasses typically do not need to provide a value for this key.
- 
SEMI_MINORMaps the semi-minor axis length parameter (symbol: b). This value is used for computingNormalizedProjection.eccentricity.Unless specified otherwise, this is always mapped to a parameter named "semi_minor".NormalizedProjectionsubclasses typically do not need to provide a value for this key.
- 
LATITUDE_OF_CONFORMAL_SPHERE_RADIUSMaps the parameter for the latitude where to compute the radius of conformal sphere (symbol: Rc). If this parameter is provided, then the radius of the conformal sphere at latitude φ will be used instead of the semi-major axis length in the denormalisation matrix. In other words, if provided then a is replaced by Rc below:This enumeration shall be used only when the user requested explicitly spherical formulas, for example the "Mercator (Spherical)" projection (EPSG:1026), but the figure of the Earth may be an ellipsoid rather than a sphere. In the majority of cases, this enumeration should not be used. 
- 
CENTRAL_MERIDIANMaps the central meridian parameter (symbol: λ₀). This value is subtracted from the longitude values before the map projections.Some common names for this parameter are: - Longitude of origin
- Longitude of false origin
- Longitude of natural origin
- Spherical longitude of origin
- Longitude of projection centre
 
- 
SCALE_FACTORMaps the scale factor parameter (symbol: k₀). This is a multiplication factor for the (x,y) values obtained after map projections.Some common names for this parameter are: - Scale factor at natural origin
- Scale factor on initial line
- Scale factor on pseudo standard parallel
 
- 
FALSE_EASTINGMaps the false easting parameter (symbol: FE). This is a translation term for the x values obtained after map projections.Some common names for this parameter are: - False easting
- Easting at false origin
- Easting at projection centre
 
- 
FALSE_WESTINGMaps the false westing parameter (symbol: FW). This is the same x translation thanFALSE_EASTING, but of opposite sign.Actually, there is usually no parameter named "false westing" in a map projection. But some projections like "Lambert Conic Conformal (West Orientated)" are defined in such a way that their "false easting" parameter is effectively a "false westing". This enumeration value can be used for informing NormalizedProjectionabout that fact.
- 
FALSE_NORTHINGMaps the false northing parameter (symbol: FN). This is a translation term for the y values obtained after map projections.Some common names for this parameter are: - False northing
- Northing at false origin
- Northing at projection centre
 
- 
FALSE_SOUTHINGMaps the false southing parameter (symbol: FS). This is the same y translation thanFALSE_NORTHING, but of opposite sign.Actually, there is usually no parameter named "false southing" in a map projection. But some projections like "Transverse Mercator (South Orientated)" are defined in such a way that their "false northing" parameter is effectively a "false southing". This enumeration value can be used for informing NormalizedProjectionabout that fact.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-