blob: f7b8cc16467d49660f28f26d0d6f5d9fe7df9f12 [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 org.opengis.parameter.ParameterValueGroup;
import org.opengis.parameter.ParameterDescriptor;
import org.opengis.parameter.ParameterDescriptorGroup;
import org.opengis.parameter.ParameterNotFoundException;
import org.opengis.referencing.operation.Conversion;
import org.opengis.referencing.operation.MathTransform;
import org.opengis.referencing.operation.MathTransformFactory;
import org.apache.sis.referencing.operation.transform.MathTransforms;
import org.apache.sis.metadata.iso.citation.Citations;
import org.apache.sis.internal.util.Constants;
import org.apache.sis.parameter.Parameters;
import org.apache.sis.parameter.ParameterBuilder;
/**
* The provider for interpolation of one-dimensional coordinates.
*
* @author Martin Desruisseaux (Geomatys)
* @version 0.7
* @since 0.7
* @module
*/
public final class Interpolation1D extends AbstractProvider {
/**
* Serial number for inter-operability with different versions.
*/
private static final long serialVersionUID = -2571645687075958970L;
/**
* The operation parameter descriptor for the <cite>"preimage"</cite> parameter value.
* This parameter is optional and often omitted.
*
* @see <a href="https://en.wikipedia.org/wiki/Image_%28mathematics%29#Inverse_image">Preimage on Wikipedia</a>
* @see <a href="http://mathworld.wolfram.com/Preimage.html">Preimage on MathWord</a>
*/
private static final ParameterDescriptor<double[]> PREIMAGE;
/**
* The operation parameter descriptor for the <cite>"values"</cite> parameter value.
*/
private static final ParameterDescriptor<double[]> VALUES;
/**
* The group of all parameters expected by this coordinate operation.
*/
public static final ParameterDescriptorGroup PARAMETERS;
static {
final ParameterBuilder builder = new ParameterBuilder().setCodeSpace(Citations.SIS, Constants.SIS);
PREIMAGE = builder.addName("preimage").create(double[].class, null); // Optional and often omitted.
VALUES = builder.addName("values") .create(double[].class, null); // Optional but usually provided.
PARAMETERS = builder.addName("Interpolation 1D").createGroup(PREIMAGE, VALUES);
}
/**
* Constructs a provider for the 1-dimensional case.
*/
public Interpolation1D() {
super(1, 1, PARAMETERS);
}
/**
* Returns the operation type.
*
* @return {@code Conversion.class}.
*/
@Override
public Class<Conversion> getOperationType() {
return Conversion.class;
}
/**
* Creates a transform from the specified group of parameter values.
*
* @param factory ignored (can be null).
* @param values the group of parameter values.
* @return the created math transform.
* @throws ParameterNotFoundException if a required parameter was not found.
*/
@Override
public MathTransform createMathTransform(MathTransformFactory factory, ParameterValueGroup values)
throws ParameterNotFoundException
{
final Parameters pv = Parameters.castOrWrap(values);
return MathTransforms.interpolate(pv.getValue(PREIMAGE), pv.getValue(VALUES));
}
}