Package org.geotools.api.geometry
The geometry packages contain the various classes for coordinate geometry.
All of these classes through the root class org.opengis.geometry.Geometry
inherit an optional
association to a coordinate reference system. All direct positions exposed through the interfaces
defined in this specification shall be in the coordinate reference system of the geometric object
accessed. All elements of a geometric complex, composite, or aggregate shall be associated to the
same coordinate reference system. When instances of org.opengis.geometry.Geometry
are aggregated
in another org.opengis.geometry.Geometry
(such as a org.opengis.geometry.aggregate.Aggregate
,
or org.opengis.geometry.complex.Complex
) which already has a coordinate reference system specified,
then these elements are assumed to be in that same coordinate reference system unless otherwise
specified.
The geometry package has several internal packages that separate primitive geometric objects, aggregates and complexes, which have a more elaborate internal structure than simple aggregates.
Any object that inherits the semantics of the org.opengis.geometry.Geometry
acts as a set of direct positions. Its behavior will be determined by which direct positions it
contains. Objects under org.opengis.geometry.primitive.Primitive
will be open, that is, they
will not contain their boundary points; curves will not contain their end points, surfaces will
not contain their boundary curves, and solids will not contain their bounding surfaces. Objects
under org.opengis.geometry.complex.Complex
will be closed, that is, they will contain their
boundary points. This leads to some apparent ambiguity. A representation of a line as a primitive
must reference its end points, but will not contain these points as a set of direct positions. A
representation of a line as a complex will also reference its end points, and will contain these
points as a set of direct positions. This means that identical digital representations will have
slightly different semantics depending on whether they are accessed as primitives or complexes.
This difference of semantics is most striking in the
org.opengis.geometry.complex.CompositeCurve
. Composite curves are used to represent features whose
geometry could also be represented as curve primitives. From a cartographic point of view, these
two representations are not different. From a topological point of view, they are different. This
distinction appears as an inheritance relationship between org.opengis.geometry.complex.CompositeCurve
and org.opengis.geometry.primitive.OrientableCurve
. The primary semantics of a
org.opengis.geometry.complex.CompositeCurve
is as a closed org.opengis.geometry.Geometry
, but it
may also act as an open org.opengis.geometry.Geometry
under org.opengis.geometry.primitive.Primitive
operations. Interface protocols depending upon the topological details of this object will have to
be distinguished as to whether they have been inherited from org.opengis.geometry.primitive.Primitive
or org.opengis.geometry.complex.Complex
, where the distinction first occurs. Even though these protocols
have been inherited from the same operations defined at org.opengis.geometry.Geometry
, they will act
differently depending upon the branch of the inheritance tree from which they have inherited semantics.
Creators of implementation profiles may take this into account and use a proxy mechanism for realization
relationships that cause semantic dissonance.
org.opengis.geometry.Geometry
and org.opengis.geometry.primitive.Primitive
are purely abstract in the sense that no object or data structure from an application can
instantiate them directly. Instances of these classes must be instances of one of their non-abstract
subtypes, such as org.opengis.geometry.primitive.Point
, org.opengis.geometry.primitive.Curve
, or
org.opengis.geometry.primitive.Surface
. This is not the case for org.opengis.geometry.complex.Complex
,
which can be directly instantiated by an application, and need not be an instance of one of the
non-abstract subclasses of org.opengis.geometry.complex.Composite
.
-
Interface Summary Interface Description BoundingBox Represents a two-dimensional envelope.BoundingBox3D Represents a three-dimensional envelope.Bounds A minimum bounding box or rectangle.Position Holds the coordinates for a position within some coordinate reference system. -
Exception Summary Exception Description MismatchedDimensionException Indicates that an operation cannot be completed properly because of a mismatch in the dimensions of object attributes.MismatchedReferenceSystemException Indicates that an object cannot be constructed because of a mismatch in the reference systems of geometric components.