org.opengis.geometry.coordinate.BicubicGrid Maven / Gradle / Ivy
Show all versions of gt-opengis Show documentation
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2011, Open Source Geospatial Foundation (OSGeo)
* (C) 2003-2005, Open Geospatial Consortium Inc.
*
* All Rights Reserved. http://www.opengis.org/legal/
*/
package org.opengis.geometry.coordinate;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import java.util.List;
import org.opengis.annotation.UML;
/**
* A {@linkplain GriddedSurface gridded surface} that uses cubic polynomial splines as the
* horizontal and vertical curves. The initial tangents for the splines are often replaced by an
* extra pair of rows (and columns) of control points.
*
* The horizontal and vertical curves require initial and final tangent vectors for a complete
* definition. These values are supplied by the four methods defined in this interface.
*
* @version ISO 19107
* @author Martin Desruisseaux (IRD)
* @since GeoAPI 2.0
*/
@UML(identifier = "GM_BicubicGrid", specification = ISO_19107)
public interface BicubicGrid extends GriddedSurface {
/** Returns the initial tangent vectors. */
@UML(identifier = "horiVectorAtStart", obligation = MANDATORY, specification = ISO_19107)
List getHorizontalVectorAtStart();
/** Returns the initial tangent vectors. */
@UML(identifier = "horiVectorAtEnd", obligation = MANDATORY, specification = ISO_19107)
List getHorizontalVectorAtEnd();
/** Returns the initial tangent vectors. */
@UML(identifier = "vertVectorAtStart", obligation = MANDATORY, specification = ISO_19107)
List getVerticalVectorAtStart();
/** Returns the initial tangent vectors. */
@UML(identifier = "vertVectorAtEnd", obligation = MANDATORY, specification = ISO_19107)
List getVerticalVectorAtEnd();
}