All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opengis.geometry.coordinate.BicubicGrid Maven / Gradle / Ivy

There is a newer version: 24.2-oss84-1
Show newest version
/*
 *    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(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy