Uses of Class
org.geolatte.geom.Envelope
-
Packages that use Envelope Package Description org.geolatte.geom A model for geospatial geometries.org.geolatte.geom.crs.trans org.geolatte.geom.curve Space-filling curves.org.geolatte.geom.generator org.geolatte.geom.jts JTS interoperability classes. -
-
Uses of Envelope in org.geolatte.geom
Methods in org.geolatte.geom that return Envelope Modifier and Type Method Description <Q extends Position>
Envelope<Q>Envelope. as(Class<Q> castToType)Envelope<P>Geometry. getEnvelope()Returns theEnvelopeof this instance.Envelope<P>Envelope. intersect(Envelope<P> other)Intersects the specifiedEnvelopewith thisEnvelopeand returns the result.Envelope<P>Envelope. union(Envelope<P> other)Creates anEnvelopethat is the set-theoretic union of thisEnvelopewith the specifiedEnvelopeMethods in org.geolatte.geom with parameters of type Envelope Modifier and Type Method Description booleanEnvelope. contains(Envelope other)Checks whether thisEnvelopecontains the specifiesEnvelope.Envelope<P>Envelope. intersect(Envelope<P> other)Intersects the specifiedEnvelopewith thisEnvelopeand returns the result.booleanEnvelope. intersects(Envelope<P> other)Checks whether thisEnvelopeintersects the specifiesEnvelope.Envelope<P>Envelope. union(Envelope<P> other)Creates anEnvelopethat is the set-theoretic union of thisEnvelopewith the specifiedEnvelopebooleanEnvelope. within(Envelope<P> other)Checks whether thisEnvelopeis contained within the specifiedEnvelope -
Uses of Envelope in org.geolatte.geom.crs.trans
Methods in org.geolatte.geom.crs.trans that return Envelope Modifier and Type Method Description Envelope<Q>EnvelopeTransform. forward(Envelope<P> envelope)Envelope<P>EnvelopeTransform. reverse(Envelope<Q> envelope)Methods in org.geolatte.geom.crs.trans with parameters of type Envelope Modifier and Type Method Description Envelope<Q>EnvelopeTransform. forward(Envelope<P> envelope)Envelope<P>EnvelopeTransform. reverse(Envelope<Q> envelope) -
Uses of Envelope in org.geolatte.geom.curve
Methods in org.geolatte.geom.curve that return Envelope Modifier and Type Method Description Envelope<P>MortonCode. envelopeOf(String mortoncode)Returns the extent that corresponds to the specified morton codeEnvelope<P>MortonContext. getExtent()Returns the spatial extent of this instanceMethods in org.geolatte.geom.curve with parameters of type Envelope Modifier and Type Method Description booleanMortonContext. extentContains(Envelope<P> envelope)Checks whether the specifiedEnvelopeis contained in the extent.StringMortonCode. ofEnvelope(Envelope<P> envelope)Returns the Morton code for the specifiedEnvelope.Constructors in org.geolatte.geom.curve with parameters of type Envelope Constructor Description MortonContext(Envelope<P> extent, int depth)Constructs aMortonContextwith the specified extent and max. -
Uses of Envelope in org.geolatte.geom.generator
Methods in org.geolatte.geom.generator with parameters of type Envelope Modifier and Type Method Description static <P extends Position>
Generator<LineString<P>>GeometryGenerators. lineString(int numPnts, Envelope<P> bbox)static <P extends Position>
Generator<LineString<P>>GeometryGenerators. lineString(int numPnts, Envelope<P> bbox, Random rnd)static <P extends Position>
Generator<MultiLineString<P>>GeometryGenerators. multiLineString(int numLines, int numPoints, Envelope<P> bbox)static <P extends Position>
Generator<MultiLineString<P>>GeometryGenerators. multiLineString(int numLines, int numPoints, Envelope<P> bbox, Random rnd)static <P extends Position>
Generator<MultiPoint<P>>GeometryGenerators. multiPoint(int numPnts, Envelope<P> bbox)static <P extends Position>
Generator<MultiPoint<P>>GeometryGenerators. multiPoint(int numPnts, Envelope<P> bbox, Random rnd)static <P extends Position>
Generator<MultiPolygon<P>>GeometryGenerators. multiPolygon(int numLines, int numPoints, Envelope<P> bbox)static <P extends Position>
Generator<MultiPolygon<P>>GeometryGenerators. multiPolygon(int numLines, int numPoints, Envelope<P> bbox, Random rnd)static <P extends Position>
P[]PositionGenerator. nPositionsWithin(int size, Envelope<P> bbox, Random rnd)static <P extends Position>
P[]PositionGenerator. nPositionsWithinAndClosed(int size, Envelope<P> bbox, Random rnd)static <P extends Position>
Generator<Point<P>>GeometryGenerators. point(Envelope<P> bbox)static <P extends Position>
Generator<Point<P>>GeometryGenerators. point(Envelope<P> bbox, Random rnd)static <P extends Position>
Generator<Polygon<P>>GeometryGenerators. polygon(int numPnts, Envelope<P> bbox)static <P extends Position>
Generator<Polygon<P>>GeometryGenerators. polygon(int numPnts, Envelope<P> bbox, Random rnd)static <P extends Position>
PPositionGenerator. positionWithin(Envelope<P> bbox, Random rnd) -
Uses of Envelope in org.geolatte.geom.jts
Methods in org.geolatte.geom.jts that return Envelope Modifier and Type Method Description static Envelope<C2D>JTS. from(org.locationtech.jts.geom.Envelope jtsEnvelope)Converts a JTSEnvelopeto a geolatteEnvelope.static <P extends Position>
Envelope<P>JTS. from(org.locationtech.jts.geom.Envelope jtsEnvelope, CoordinateReferenceSystem<P> crs)Converts a JTSEnvelopeto a geolatteEnvelopewith the specified CRS.Methods in org.geolatte.geom.jts with parameters of type Envelope Modifier and Type Method Description static org.locationtech.jts.geom.EnvelopeJTS. to(Envelope<?> env)Converts a GeolatteEnvelopeto a JTSEnvelope.
-