blob: afff0927fd7da018328d91fdaa790b525bd06c14 [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.xml.bind.annotation.XmlTransient;
import org.opengis.util.FactoryException;
import org.opengis.parameter.ParameterValueGroup;
import org.opengis.parameter.ParameterDescriptorGroup;
import org.opengis.referencing.operation.MathTransform;
import org.opengis.referencing.operation.MathTransformFactory;
import org.apache.sis.metadata.iso.citation.Citations;
import org.apache.sis.parameter.Parameters;
/**
* The provider for <cite>"Abridged Molodensky transformation"</cite> (EPSG:9605).
* This provider constructs transforms between two geographic reference systems without passing though a geocentric one.
* This class nevertheless extends {@link GeocentricAffineBetweenGeographic} because it is an approximation of
* {@link GeocentricTranslation3D}.
*
* <p>The translation terms (<var>dx</var>, <var>dy</var> and <var>dz</var>) are common to all authorities.
* But remaining parameters are specified in different ways depending on the authority:</p>
*
* <ul>
* <li>EPSG defines <cite>"Semi-major axis length difference"</cite>
* and <cite>"Flattening difference"</cite> parameters.</li>
* <li>OGC rather defines "{@code src_semi_major}", "{@code src_semi_minor}",
* "{@code tgt_semi_major}", "{@code tgt_semi_minor}" and "{@code dim}" parameters.</li>
* </ul>
*
* @author Rueben Schulz (UBC)
* @author Martin Desruisseaux (IRD, Geomatys)
* @version 0.7
* @since 0.7
* @module
*/
@XmlTransient
public final class AbridgedMolodensky extends GeocentricAffineBetweenGeographic {
/**
* Serial number for inter-operability with different versions.
*/
private static final long serialVersionUID = -3889456253400732280L;
/**
* The group of all parameters expected by this coordinate operation.
*/
public static final ParameterDescriptorGroup PARAMETERS;
static {
PARAMETERS = builder()
.addIdentifier("9605")
.addName("Abridged Molodensky")
.addName(Citations.OGC, "Abridged_Molodenski")
.createGroupWithSameParameters(Molodensky.PARAMETERS);
}
/**
* Constructs a new provider.
*/
public AbridgedMolodensky() {
this(3, 3, new AbridgedMolodensky[4]);
redimensioned[0] = new AbridgedMolodensky(2, 2, redimensioned);
redimensioned[1] = new AbridgedMolodensky(2, 3, redimensioned);
redimensioned[2] = new AbridgedMolodensky(3, 2, redimensioned);
redimensioned[3] = this;
}
/**
* Constructs a provider for the given dimensions.
*
* @param sourceDimensions number of dimensions in the source CRS of this operation method.
* @param targetDimensions number of dimensions in the target CRS of this operation method.
* @param redimensioned providers for all combinations between 2D and 3D cases, or {@code null}.
*/
private AbridgedMolodensky(int sourceDimensions, int targetDimensions, GeodeticOperation[] redimensioned) {
super(sourceDimensions, targetDimensions, PARAMETERS, redimensioned);
}
/**
* While Abridged Molodensky method is an approximation of geocentric translation, this is not exactly that.
*/
@Override
int getType() {
return OTHER;
}
/**
* Creates an Abridged Molodensky transform from the specified group of parameter values.
*
* @param factory the factory to use for creating concatenated transforms.
* @param values the group of parameter values.
* @return the created Abridged Molodensky transform.
* @throws FactoryException if a transform can not be created.
*/
@Override
public MathTransform createMathTransform(final MathTransformFactory factory, final ParameterValueGroup values)
throws FactoryException
{
return Molodensky.createMathTransform(factory, Parameters.castOrWrap(values),
getSourceDimensions(), getTargetDimensions(), true);
}
}