Class PolarStereographicC

All Implemented Interfaces:
Serializable, Formattable, MathTransformProvider, Deprecable, LenientComparable, org.opengis.referencing.IdentifiedObject, org.opengis.referencing.operation.OperationMethod

public final class PolarStereographicC extends MapProjection
The provider for "Polar Stereographic (Variant C)" projection (EPSG:9830). This is very similar to variant B except in the way to use the false northing.
Since:
0.6
Version:
0.6
Author:
Martin Desruisseaux (Geomatys)
See Also:
  • Field Details

    • IDENTIFIER

      public static final String IDENTIFIER
      The EPSG identifier, to be preferred to the name when available.
      See Also:
    • EASTING_AT_FALSE_ORIGIN

      public static final org.opengis.parameter.ParameterDescriptor<Double> EASTING_AT_FALSE_ORIGIN
      The operation parameter descriptor for the Easting at false origin (Ef) parameter value. Valid values range is unrestricted and default value is 0 metre.
      Parameter names
      EPSG: Easting at false origin
      OGC: false_easting
      ESRI: False_Easting
      NetCDF: false_easting
      GeoTIFF: FalseOriginEasting
      Proj4: x_0
    • NORTHING_AT_FALSE_ORIGIN

      public static final org.opengis.parameter.ParameterDescriptor<Double> NORTHING_AT_FALSE_ORIGIN
      The operation parameter descriptor for the Northing at false origin (Nf) parameter value. Valid values range is unrestricted and default value is 0 metre.
      Parameter names
      EPSG: Northing at false origin
      OGC: false_northing
      ESRI: False_Northing
      NetCDF: false_northing
      GeoTIFF: FalseOriginNorthing
      Proj4: y_0
    • FALSE_EASTING

      public static final org.opengis.parameter.ParameterDescriptor<Double> FALSE_EASTING
      The operation parameter descriptor for the False easting (FE) parameter value. Valid values range is unrestricted and default value is 0 metre.
      Parameter names
      EPSG: False easting
      OGC: false_easting
      ESRI: False_Easting
      NetCDF: false_easting
      GeoTIFF: FalseEasting
      Proj4: x_0
    • FALSE_NORTHING

      public static final org.opengis.parameter.ParameterDescriptor<Double> FALSE_NORTHING
      The operation parameter descriptor for the False northing (FN) parameter value. Valid values range is unrestricted and default value is 0 metre.
      Parameter names
      EPSG: False northing
      OGC: false_northing
      ESRI: False_Northing
      NetCDF: false_northing
      GeoTIFF: FalseNorthing
      Proj4: y_0
  • Constructor Details

    • PolarStereographicC

      public PolarStereographicC()
      Constructs a new provider.
  • Method Details

    • createProjection

      protected NormalizedProjection createProjection(Parameters parameters) throws org.opengis.parameter.ParameterNotFoundException
      Creates a map projection on an ellipsoid having a semi-major axis length of 1. The default implementation creates a projection for the "Polar Stereographic" case only. Subclasses need to override if they want to support other cases (oblique and equatorial).
      Specified by:
      createProjection in class MapProjection
      Parameters:
      parameters - the group of parameter values.
      Returns:
      the map projection created from the given parameter values.
      Throws:
      org.opengis.parameter.ParameterNotFoundException - if a required parameter was not found.