Class SouthPoleRotation
java.lang.Object
org.apache.sis.io.wkt.FormattableObject
org.apache.sis.referencing.AbstractIdentifiedObject
org.apache.sis.referencing.operation.DefaultOperationMethod
org.apache.sis.internal.referencing.provider.AbstractProvider
org.apache.sis.internal.referencing.provider.SouthPoleRotation
- All Implemented Interfaces:
Serializable
,Formattable
,MathTransformProvider
,Deprecable
,LenientComparable
,org.opengis.referencing.IdentifiedObject
,org.opengis.referencing.operation.OperationMethod
The provider for the WMO Rotated Latitude/Longitude coordinate operation.
This is defined by the World Meteorological Organization (WMO) in GRIB2 template 3.1.
The 180° rotated meridian runs through both the geographical and the rotated South pole.
Comparison with UCAR library
This is consistent withucar.unidata.geoloc.projection.RotatedLatLon
in UCAR netCDF library version 5.5.2.- Since:
- 1.2
- Version:
- 1.3
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final org.opengis.parameter.ParameterDescriptor<Double>
The operation parameter descriptor for the grid_south_pole_angle parameter value (optional).static final org.opengis.parameter.ParameterDescriptorGroup
The group of all parameters expected by this coordinate operation.(package private) static final org.opengis.parameter.ParameterDescriptor<Double>
The operation parameter descriptor for the grid south pole latitude parameter value.(package private) static final org.opengis.parameter.ParameterDescriptor<Double>
The operation parameter descriptor for the grid south pole longitude parameter value.private static final long
For cross-version compatibility.Fields inherited from class org.apache.sis.internal.referencing.provider.AbstractProvider
sourceCSType, sourceOnEllipsoid, targetCSType, targetOnEllipsoid
Fields inherited from class org.apache.sis.referencing.AbstractIdentifiedObject
DEPRECATED_KEY, LOCALE_KEY
Fields inherited from interface org.opengis.referencing.IdentifiedObject
ALIAS_KEY, IDENTIFIERS_KEY, NAME_KEY, REMARKS_KEY
Fields inherited from interface org.opengis.referencing.operation.OperationMethod
FORMULA_KEY
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.opengis.referencing.operation.MathTransform
createMathTransform
(org.opengis.referencing.operation.MathTransformFactory factory, org.opengis.parameter.ParameterValueGroup parameters) Creates a coordinate operation from the specified group of parameter values.Methods inherited from class org.apache.sis.internal.referencing.provider.AbstractProvider
addIdentifierAndLegacy, addNameAndLegacy, builder, createLatitude, createLongitude, createMandatoryLatitude, createScale, createShift, createZeroConstant, getOperationType, inverse, recoverableException, resolveAmbiguity
Methods inherited from class org.apache.sis.referencing.operation.DefaultOperationMethod
castOrCopy, computeHashCode, equals, formatTo, getFormula, getInterface, getParameters, getSourceDimensions, getTargetDimensions, redimension, redimension
Methods inherited from class org.apache.sis.referencing.AbstractIdentifiedObject
castOrCopy, equals, formatTo, getAlias, getDescription, getIdentifiers, getName, getRemarks, hashCode, isDeprecated, isHeuristicMatchForName
Methods inherited from class org.apache.sis.io.wkt.FormattableObject
print, toString, toString, toWKT
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.opengis.referencing.IdentifiedObject
getAlias, getIdentifiers, getName, getRemarks, toWKT
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDFor cross-version compatibility.- See Also:
-
POLE_LATITUDE
The operation parameter descriptor for the grid south pole latitude parameter value. This is the geographic latitude (usually in degrees) of the southern pole of the coordinate system. The symbol used in GRIB2 template 3.1 is θp.Parameter names SIS: Latitude of rotated pole NetCDF: grid_south_pole_latitude - No default value
-
POLE_LONGITUDE
The operation parameter descriptor for the grid south pole longitude parameter value. This is the geographic longitude (usually in degrees) of the southern pole of the coordinate system. The symbol used in GRIB2 template 3.1 is λp.Parameter names SIS: Longitude of rotated pole NetCDF: grid_south_pole_longitude - No default value
-
AXIS_ANGLE
The operation parameter descriptor for the grid_south_pole_angle parameter value (optional). This is the angle of rotation about the new polar axis (measured clockwise when looking from the southern to the northern pole) of the coordinate system, assuming the new axis to have been obtained by first rotating the sphere through λp about the geographic polar axis, and then rotating through (90° + θp) degrees so that the southern pole moved along the (previously rotated) Greenwich meridian.Parameter names SIS: Axis rotation NetCDF: grid_south_pole_angle - Value domain: [-180.0 … 180.0]°
- Optional
-
PARAMETERS
public static final org.opengis.parameter.ParameterDescriptorGroup PARAMETERSThe group of all parameters expected by this coordinate operation.
-
-
Constructor Details
-
SouthPoleRotation
public SouthPoleRotation()Constructs a new provider.
-
-
Method Details
-
createMathTransform
public org.opengis.referencing.operation.MathTransform createMathTransform(org.opengis.referencing.operation.MathTransformFactory factory, org.opengis.parameter.ParameterValueGroup parameters) throws org.opengis.util.FactoryException Creates a coordinate operation from the specified group of parameter values.- Parameters:
factory
- the factory to use for creating the transforms.parameters
- the group of parameter values.- Returns:
- the coordinate operation created from the given parameter values.
- Throws:
org.opengis.util.FactoryException
- if the coordinate operation cannot be created.
-