blob: 9a09fecb0dfd4b28f587bc900f693d148a7eca84 [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.parameter.ParameterDescriptorGroup;
/**
* The provider for <cite>"Geocentric translations (geog3D domain)"</cite> (EPSG:1035).
* This is a special case of {@link PositionVector7Param3D} where only the translation
* terms can be set to a non-null value.
*
* @author Martin Desruisseaux (IRD, Geomatys)
* @version 0.7
* @since 0.7
* @module
*/
@XmlTransient
public final class GeocentricTranslation3D extends GeocentricAffineBetweenGeographic {
/**
* Serial number for inter-operability with different versions.
*/
private static final long serialVersionUID = 2208429505407588276L;
/**
* The group of all parameters expected by this coordinate operation.
*/
static final ParameterDescriptorGroup PARAMETERS;
static {
PARAMETERS = builder()
.addIdentifier("1035")
.addName("Geocentric translations (geog3D domain)")
.createGroupWithSameParameters(GeocentricTranslation2D.PARAMETERS);
}
/**
* Constructs the provider.
*/
public GeocentricTranslation3D() {
this(3, 3, new GeocentricAffineBetweenGeographic[4]);
redimensioned[0] = new GeocentricTranslation2D( redimensioned);
redimensioned[1] = new GeocentricTranslation3D(2, 3, redimensioned);
redimensioned[2] = new GeocentricTranslation3D(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 GeocentricTranslation3D(int sourceDimensions, int targetDimensions, GeodeticOperation[] redimensioned) {
super(sourceDimensions, targetDimensions, PARAMETERS, redimensioned);
}
/**
* Returns the type of this operation.
*/
@Override
int getType() {
return TRANSLATION;
}
}