org.geotoolkit.geometry.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geotk-referencing Show documentation
Show all versions of geotk-referencing Show documentation
Implementations of Coordinate Reference Systems (CRS),
conversion and transformation services derived from ISO 19111.
/*
* Geotoolkit.org - An Open Source Java GIS Toolkit
* http://www.geotoolkit.org
*
* (C) 2001-2011, Open Source Geospatial Foundation (OSGeo)
* (C) 2009-2011, Geomatys
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
/**
* Basic geometric objects. Every geometry objects are associated with a
* {@linkplain org.opengis.referencing.crs.CoordinateReferenceSystem Coordinate Reference System},
* which may have an arbitrary number of dimensions. However a few specialized classes restrict
* the CRS to a fixed number of dimensions only. The table below summarizes the most common
* objects, and list the Java2D classes that are conceptually equivalent.
*
*
*
* Purpose
* Any dimension
* One dimension
* Two dimensions
* Java2D equivalence
*
* A point in a multi-dimensional space
* {@link org.geotoolkit.geometry.GeneralDirectPosition}
* {@link org.geotoolkit.geometry.DirectPosition1D}
* {@link org.geotoolkit.geometry.DirectPosition2D}
* {@link java.awt.geom.Point2D}
*
* A box in a multi-dimensional space
* {@link org.geotoolkit.geometry.GeneralEnvelope}
*
* {@link org.geotoolkit.geometry.Envelope2D}
* {@link java.awt.geom.Rectangle2D}
*
*
*
* @author Martin Desruisseaux (IRD, Geomatys)
* @version 3.09
*
* @since 1.2
* @module
*/
package org.geotoolkit.geometry;