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

org.geotoolkit.geometry.package-info Maven / Gradle / Ivy

Go to download

Implementations of Coordinate Reference Systems (CRS), conversion and transformation services derived from ISO 19111.

There is a newer version: 3.20-geoapi-3.0
Show newest version
/*
 *    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.
 * 

*

* * * * * * * * * * * * * * * * * * * *
PurposeAny dimensionOne dimensionTwo dimensionsJava2D 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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy