Class MapProjection.AbstractProvider

All Implemented Interfaces:
Serializable, IdentifiedObject, OperationMethod, PROJFormattable
Direct Known Subclasses:
AlbersEqualArea.Provider, AzimuthalEquidistant.Provider, CassiniSoldner.Provider, CylindricalEqualArea.BehrmannProvider, CylindricalEqualArea.LambertCylindricalEqualAreaProvider, CylindricalEqualArea.Provider, EckertIV.Provider, EqualArea.Provider, EquidistantConic.Provider, EquidistantCylindrical.Provider, EquidistantCylindrical.SphericalProvider, GeneralOblique.Provider, GeostationarySatellite.Provider, Gnomonic.Provider, Homolosine.Provider, Krovak.NorthProvider, Krovak.Provider, LambertAzimuthalEqualArea.Provider, LambertConformal1SP.Provider, LambertConformal2SP.Provider, LambertConformalBelgium.Provider, LambertConformalEsriProvider, Mercator1SP.Provider, Mercator2SP.Provider, MercatorPseudoProvider, MeteosatSG.Provider, Mollweide.MollweideProvider, Mollweide.WagnerIVProvider, Mollweide.WagnerVProvider, NewZealandMapGrid.Provider, ObliqueMercator.Provider, Orthographic.Provider, PlateCarree.Provider, Polyconic.Provider, Robinson.Provider, RotatedPole.Provider, Sinusoidal.Provider, Stereographic.Provider, TransverseMercator.Provider, WinkelTripel.AitoffProvider, WinkelTripel.WinkelProvider, WorldVanDerGrintenI.Provider
Enclosing class:
MapProjection

public abstract static class MapProjection.AbstractProvider extends MathTransformProvider
The base provider for MapProjections.
Author:
Martin Desruisseaux (PMO, IRD)
See Also:
  • Field Details

    • SEMI_MAJOR

      public static final ParameterDescriptor<Double> SEMI_MAJOR
      The operation parameter descriptor for the semi major parameter value. Valid values range is from 0 to infinity. This parameter is mandatory.
    • SEMI_MINOR

      public static final ParameterDescriptor<Double> SEMI_MINOR
      The operation parameter descriptor for the semi minor parameter value. Valid values range is from 0 to infinity. This parameter is mandatory.
    • CENTRAL_MERIDIAN

      public static final ParameterDescriptor<Double> CENTRAL_MERIDIAN
      The operation parameter descriptor for the central meridian parameter value. Valid values range is from -180 to 180°. Default value is 0.
    • LATITUDE_OF_ORIGIN

      public static final ParameterDescriptor<Double> LATITUDE_OF_ORIGIN
      The operation parameter descriptor for the latitude of origin parameter value. Valid values range is from -90 to 90°. Default value is 0.
    • LONGITUDE_OF_CENTRE

      public static final ParameterDescriptor<Double> LONGITUDE_OF_CENTRE
      The operation parameter descriptor for the longitude of center parameter value. Valid values range is from -180 to 180°. Default value is 0.
    • LATITUDE_OF_CENTRE

      public static final ParameterDescriptor<Double> LATITUDE_OF_CENTRE
      The operation parameter descriptor for the latitude of center parameter value. Valid values range is from -90 to 90°. Default value is 0.
    • STANDARD_PARALLEL_1

      public static final ParameterDescriptor<Double> STANDARD_PARALLEL_1
      The operation parameter descriptor for the standard parallel 1 parameter value. Valid values range is from -90 to 90°. Default value is 0.
    • STANDARD_PARALLEL_2

      public static final ParameterDescriptor<Double> STANDARD_PARALLEL_2
      The operation parameter descriptor for the standard parallel 2 parameter value. Valid values range is from -90 to 90°. Default value is 0.
    • SCALE_FACTOR

      public static final ParameterDescriptor<Double> SCALE_FACTOR
      The operation parameter descriptor for the scaleFactor parameter value. Valid values range is from 0 to infinity. Default value is 1.
    • FALSE_EASTING

      public static final ParameterDescriptor<Double> FALSE_EASTING
      The operation parameter descriptor for the falseEasting parameter value. Valid values range is unrestricted. Default value is 0.
    • FALSE_NORTHING

      public static final ParameterDescriptor<Double> FALSE_NORTHING
      The operation parameter descriptor for the falseNorthing parameter value. Valid values range is unrestricted. Default value is 0.
  • Constructor Details

    • AbstractProvider

      public AbstractProvider(ParameterDescriptorGroup parameters)
      Constructs a math transform provider from a set of parameters. The provider identifiers will be the same than the parameter ones.
      Parameters:
      parameters - The set of parameters (never null).
  • Method Details

    • getOperationType

      public Class<? extends Projection> getOperationType()
      Returns the operation type for this map projection.
      Overrides:
      getOperationType in class MathTransformProvider
      Returns:
      The GeoAPI interface implemented by this operation.
    • doubleValue

      protected static double doubleValue(ParameterDescriptor param, ParameterValueGroup group) throws ParameterNotFoundException
      Returns the parameter value for the specified operation parameter in standard units. Values are automatically converted into the standard units specified by the supplied param argument, except degrees which are converted to radians. This conversion is performed because the radians units are standard for all internal computations in the map projection package. For example they are the standard units for latitudeOfOrigin and centralMeridian fields in the MapProjection class.
      Parameters:
      param - The parameter to look for.
      group - The parameter value group to search into.
      Returns:
      The requested parameter value.
      Throws:
      ParameterNotFoundException - if the parameter is not found.