Package | Description |
---|---|
org.geolatte.geom |
A model for geospatial geometries.
|
org.geolatte.geom.builder |
A DSL to simplify the creation of Geometries.
|
org.geolatte.geom.cga |
Modifier and Type | Method and Description |
---|---|
LinearRing<P>[] |
Polygon.components()
Returns the components
|
LinearRing<P> |
Polygon.getExteriorRing()
Returns the exterior boundary of this
Polygon . |
LinearRing<P> |
Polygon.getInteriorRingN(int index)
Returns the specified interior ring.
|
static <P extends Position> |
Geometries.mkLinearRing(PositionSequence<P> seq,
CoordinateReferenceSystem<P> crs)
Creates a
LinearRing from a PositionSequence and coordinate reference system |
Modifier and Type | Method and Description |
---|---|
Iterator<LinearRing<P>> |
Polygon.iterator()
Returns an
Iterator over the boundaries of this Polygon . |
Modifier and Type | Method and Description |
---|---|
static <P extends Position> |
Geometries.mkPolygon(LinearRing<P>... rings) |
Modifier and Type | Method and Description |
---|---|
static <P extends Position> |
Geometries.mkPolygon(List<LinearRing<P>> rings) |
Constructor and Description |
---|
Polygon(LinearRing<P>... rings)
Creates a
Polygon with the specified array of exterior and interior boundaries. |
Modifier and Type | Method and Description |
---|---|
static <P extends Position> |
DSL.ring(CoordinateReferenceSystem<P> crs,
P... positions)
Creates a
LinearRing |
Modifier and Type | Method and Description |
---|---|
static <P extends Position> |
DSL.polygon(LinearRing<P> hull,
LinearRing<P>... rings)
Creates a
Polygon from the specified outer ring (or hull) and inner rings (if any) |
static <P extends Position> |
DSL.polygon(LinearRing<P> hull,
LinearRing<P>... rings)
Creates a
Polygon from the specified outer ring (or hull) and inner rings (if any) |
Modifier and Type | Method and Description |
---|---|
static boolean |
NumericalMethods.isCounterClockwise(LinearRing<?> ring)
Determines whether the specified
LinearRing is counter-clockwise. |
Copyright © 2024 geolatte.org. All rights reserved.