Class NorthPoleRotation
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.NorthPoleRotation
- All Implemented Interfaces:
Serializable,Formattable,MathTransformProvider,Deprecable,LenientComparable,org.opengis.referencing.IdentifiedObject,org.opengis.referencing.operation.OperationMethod
The provider for the NetCDF Rotated Latitude/Longitude coordinate operation.
This is similar to the WMO Rotated Latitude/Longitude but rotating north pole instead of south pole.
The 0° rotated meridian is defined as the meridian that runs through both the geographical and the rotated North pole.
- Since:
- 1.2
- Version:
- 1.3
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final org.opengis.parameter.ParameterDescriptor<Double>The operation parameter descriptor for the north_pole_grid_longitude parameter value.static final org.opengis.parameter.ParameterDescriptorGroupThe group of all parameters expected by this coordinate operation.private static final org.opengis.parameter.ParameterDescriptor<Double>The operation parameter descriptor for the grid north pole latitude parameter value.private static final org.opengis.parameter.ParameterDescriptor<Double>The operation parameter descriptor for the grid north pole longitude parameter value.private static final longFor cross-version compatibility.Fields inherited from class org.apache.sis.internal.referencing.provider.AbstractProvider
sourceCSType, sourceOnEllipsoid, targetCSType, targetOnEllipsoidFields inherited from class org.apache.sis.referencing.AbstractIdentifiedObject
DEPRECATED_KEY, LOCALE_KEYFields inherited from interface org.opengis.referencing.IdentifiedObject
ALIAS_KEY, IDENTIFIERS_KEY, NAME_KEY, REMARKS_KEYFields inherited from interface org.opengis.referencing.operation.OperationMethod
FORMULA_KEY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.opengis.referencing.operation.MathTransformcreateMathTransform(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, resolveAmbiguityMethods inherited from class org.apache.sis.referencing.operation.DefaultOperationMethod
castOrCopy, computeHashCode, equals, formatTo, getFormula, getInterface, getParameters, getSourceDimensions, getTargetDimensions, redimension, redimensionMethods inherited from class org.apache.sis.referencing.AbstractIdentifiedObject
castOrCopy, equals, formatTo, getAlias, getDescription, getIdentifiers, getName, getRemarks, hashCode, isDeprecated, isHeuristicMatchForNameMethods inherited from class org.apache.sis.io.wkt.FormattableObject
print, toString, toString, toWKTMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods 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 north pole latitude parameter value.
Notes:Parameter names SIS: Latitude of rotated pole NetCDF: grid_north_pole_latitude - No default value
-
POLE_LONGITUDE
The operation parameter descriptor for the grid north pole longitude parameter value.
Notes:Parameter names SIS: Longitude of rotated pole NetCDF: grid_north_pole_longitude - No default value
-
AXIS_ANGLE
The operation parameter descriptor for the north_pole_grid_longitude parameter value. This parameter is optional.
Notes:Parameter names SIS: Axis rotation NetCDF: north_pole_grid_longitude - 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
-
NorthPoleRotation
public NorthPoleRotation()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.
-