org.geotools.geometry |
package org.geotools.geometry
{@linkplain org.geotools.geometry.Geometry} implementation. An explanation for this
package is provided in the {@linkplain org.opengis.spatialschema.geometry OpenGIS®
javadoc}. The remaining discussion on this page is specific to the Geotools implementation.
The {@link org.geotools.geometry.GeneralDirectPosition} class represents a
point in a multi-dimensional space. This space may have an arbitrary number of dimensions. For
a two-dimensional space, DirectPosition is conceptually equivalent to
{@link java.awt.geom.Point2D}.
The class {@link org.geotools.geometry.GeneralEnvelope} represents a box in
a multi-dimensional space. For a two-dimensional space, Envelope is conceptually
equivalent to {@link java.awt.geom.Rectangle2D}.
|
Java Source File Name | Type | Comment |
AbstractDirectPosition.java | Class | Base class for
implementations. |
AbstractEnvelope.java | Class | Base class for
implementations. |
DirectPosition1D.java | Class | Holds the coordinates for a one-dimensional position within some coordinate reference system. |
DirectPosition2D.java | Class | Holds the coordinates for a two-dimensional position within some coordinate reference system.
Note 1: This class inherits
and
fields. |
Envelope2D.java | Class | A two-dimensional envelope on top of
Rectangle2D . |
GeneralDirectPosition.java | Class | Holds the coordinates for a position within some coordinate reference system. |
GeneralEnvelope.java | Class | A minimum bounding box or rectangle. |
GeneralEnvelopeTest.java | Class | Tests the
GeneralEnvelope class. |
Geometry.java | Class | Root class of the Geotools default implementation of geometric object. |
MockGeometryFactory.java | Class | Quick implementation for testing purposes. |
TransformedDirectPosition.java | Class | A direct position capable to
a point between an arbitrary CRS
and
. |