Class MapProjectionParameters.EarthRadius

All Implemented Interfaces:
Serializable, Cloneable, LenientComparable, org.opengis.parameter.GeneralParameterValue, org.opengis.parameter.ParameterValue<Double>
Enclosing class:
MapProjectionParameters

static final class MapProjectionParameters.EarthRadius extends DefaultParameterValue<Double>
The earth radius parameter. This parameter is computed automatically from the "semi_major" and "semi_minor" parameters. When explicitly set, this parameter value is also assigned to the "semi_major" and "semi_minor" axis lengths.
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      For cross-version compatibility. Actually instances of this class are not expected to be serialized, but we try to be a bit safer here.
      See Also:
    • DESCRIPTOR

      static final org.opengis.parameter.ParameterDescriptor<Double> DESCRIPTOR
      All names known to Apache SIS for the Earth radius parameter. This is used in some netCDF files instead of SEMI_MAJOR and SEMI_MINOR. This is not a standard parameter.
    • semiMajor

      private final org.opengis.parameter.ParameterValue<?> semiMajor
      The parameters for the semi-major and semi-minor axis length.
    • semiMinor

      private final org.opengis.parameter.ParameterValue<?> semiMinor
      The parameters for the semi-major and semi-minor axis length.
  • Constructor Details

    • EarthRadius

      EarthRadius(org.opengis.parameter.ParameterValue<?> semiMajor, org.opengis.parameter.ParameterValue<?> semiMinor)
      Creates a new parameter.
  • Method Details