blob: f3ae95f083875ae480934cedd29c3ab2baa623de [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sis.internal.referencing.provider;
import javax.measure.unit.NonSI;
import javax.xml.bind.annotation.XmlTransient;
import org.opengis.parameter.ParameterDescriptor;
import org.opengis.parameter.ParameterDescriptorGroup;
import org.apache.sis.metadata.iso.citation.Citations;
import org.apache.sis.parameter.ParameterBuilder;
import org.apache.sis.parameter.DefaultParameterDescriptor;
import org.apache.sis.measure.Latitude;
import org.apache.sis.measure.MeasurementRange;
/**
* The provider for <cite>"Stereographic North South"</cite> projection (ESRI).
*
* @author Rueben Schulz (UBC)
* @author Martin Desruisseaux (Geomatys)
* @since 0.6
* @version 0.7
* @module
*/
@XmlTransient
public final class PolarStereographicSouth extends AbstractStereographic {
/**
* For cross-version compatibility.
*/
private static final long serialVersionUID = -6173635411676914083L;
/**
* Returns the same parameter than the given one, except that the alias of the ESRI authority
* is promoted as the primary name. The old primary name and identifiers (which are usually the
* EPSG ones) are discarded.
*
* @param template the parameter from which to copy the names and identifiers.
* @param builder an initially clean builder where to add the names.
* @return the given {@code builder}, for method call chaining.
*/
@SuppressWarnings("unchecked")
private static ParameterDescriptor<Double> forESRI(final ParameterDescriptor<Double> template, final ParameterBuilder builder) {
return alternativeAuthority(template, Citations.ESRI, builder).createBounded((MeasurementRange<Double>)
((DefaultParameterDescriptor<Double>) template).getValueDomain(), template.getDefaultValue());
}
/**
* The group of all parameters expected by this coordinate operation.
*/
static final ParameterDescriptorGroup PARAMETERS;
static {
final ParameterBuilder builder = builder();
final ParameterDescriptor<?>[] parameters = {
alternativeAuthority(PolarStereographicB.STANDARD_PARALLEL, Citations.ESRI, builder)
.createBounded(Latitude.MIN_VALUE, 0, Latitude.MIN_VALUE, NonSI.DEGREE_ANGLE),
forESRI(PolarStereographicB.LONGITUDE_OF_ORIGIN, builder),
PolarStereographicB.SCALE_FACTOR, // Not formally a parameter of this projection.
forESRI(CylindricalEqualArea.FALSE_EASTING, builder),
forESRI(CylindricalEqualArea.FALSE_NORTHING, builder)
};
PARAMETERS = builder
.addName(Citations.ESRI, "Stereographic_South_Pole")
.createGroupForMapProjection(parameters);
}
/**
* Constructs a new provider.
*/
public PolarStereographicSouth() {
super(PARAMETERS);
}
}