Uses of Class
mil.nga.sf.GeometryEnvelope
-
Packages that use GeometryEnvelope Package Description mil.nga.sf mil.nga.sf.util -
-
Uses of GeometryEnvelope in mil.nga.sf
Methods in mil.nga.sf that return GeometryEnvelope Modifier and Type Method Description GeometryEnvelope
GeometryEnvelope. copy()
Copy the geometry envelopeGeometryEnvelope
Geometry. getEnvelope()
Get the minimum bounding box for this GeometryGeometryEnvelope
GeometryEnvelope. overlap(GeometryEnvelope envelope)
Get the overlapping geometry envelope with the provided envelopeGeometryEnvelope
GeometryEnvelope. overlap(GeometryEnvelope envelope, boolean allowEmpty)
Get the overlapping geometry envelope with the provided envelopeGeometryEnvelope
GeometryEnvelope. union(GeometryEnvelope envelope)
Get the union geometry envelope combined with the provided envelopeMethods in mil.nga.sf with parameters of type GeometryEnvelope Modifier and Type Method Description boolean
GeometryEnvelope. contains(GeometryEnvelope envelope)
Determine if inclusively contains the provided envelopeboolean
GeometryEnvelope. contains(GeometryEnvelope envelope, double epsilon)
Determine if inclusively contains the provided envelopevoid
Geometry. expandEnvelope(GeometryEnvelope envelope)
Expand the envelope with the minimum bounding box for this Geometryboolean
GeometryEnvelope. intersects(GeometryEnvelope envelope)
Determine if intersects with the provided envelopeboolean
GeometryEnvelope. intersects(GeometryEnvelope envelope, boolean allowEmpty)
Determine if intersects with the provided envelopeGeometryEnvelope
GeometryEnvelope. overlap(GeometryEnvelope envelope)
Get the overlapping geometry envelope with the provided envelopeGeometryEnvelope
GeometryEnvelope. overlap(GeometryEnvelope envelope, boolean allowEmpty)
Get the overlapping geometry envelope with the provided envelopeGeometryEnvelope
GeometryEnvelope. union(GeometryEnvelope envelope)
Get the union geometry envelope combined with the provided envelopeConstructors in mil.nga.sf with parameters of type GeometryEnvelope Constructor Description GeometryEnvelope(GeometryEnvelope envelope)
Copy Constructor -
Uses of GeometryEnvelope in mil.nga.sf.util
Methods in mil.nga.sf.util that return GeometryEnvelope Modifier and Type Method Description static GeometryEnvelope
GeometryEnvelopeBuilder. buildEnvelope(Geometry geometry)
Build Geometry Envelopestatic GeometryEnvelope
GeometryUtils. geodesicEnvelope(GeometryEnvelope envelope)
Expand the vertical bounds of a geometry envelope in degrees by including geodesic boundsstatic GeometryEnvelope
GeometryUtils. webMercatorEnvelope()
Get a Web Mercator bounded geometry envelopestatic GeometryEnvelope
GeometryUtils. wgs84Envelope()
Get a WGS84 bounded geometry envelopestatic GeometryEnvelope
GeometryUtils. wgs84EnvelopeWithWebMercator()
Get a WGS84 geometry envelope with Web Mercator boundsstatic GeometryEnvelope
GeometryUtils. wgs84TransformableEnvelope()
Get a WGS84 bounded geometry envelope used for projection transformations (degrees to meters)Methods in mil.nga.sf.util with parameters of type GeometryEnvelope Modifier and Type Method Description static void
GeometryUtils. bound(Geometry geometry, GeometryEnvelope envelope)
Bound all points in the geometry to be within the geometry envelope.static void
GeometryEnvelopeBuilder. buildEnvelope(Geometry geometry, GeometryEnvelope envelope)
Build Geometry Envelopestatic Geometry
GeometryEnvelopeBuilder. buildGeometry(GeometryEnvelope envelope)
Build a geometry representation of the geometry envelopestatic boolean
GeometryUtils. contains(GeometryEnvelope envelope1, GeometryEnvelope envelope2)
Determine if the first envelope contains the second within the default tolerance ofGeometryConstants.DEFAULT_EQUAL_EPSILON
.static boolean
GeometryUtils. contains(GeometryEnvelope envelope, Point point)
Determine if the envelope contains the point within the default tolerance ofGeometryConstants.DEFAULT_EQUAL_EPSILON
.static List<Point>
GeometryUtils. crop(List<Point> points, GeometryEnvelope envelope)
Crop the list of consecutive points in meters by the envelope bounds in meters.static CircularString
GeometryUtils. crop(CircularString circularString, GeometryEnvelope envelope)
Crop the circular string in meters by the envelope bounds in meters.static CompoundCurve
GeometryUtils. crop(CompoundCurve compoundCurve, GeometryEnvelope envelope)
Crop the compound curve in meters by the envelope bounds in meters.static CurvePolygon<Curve>
GeometryUtils. crop(CurvePolygon<Curve> curvePolygon, GeometryEnvelope envelope)
Crop the curve polygon in meters by the envelope bounds in meters.static Geometry
GeometryUtils. crop(Geometry geometry, GeometryEnvelope envelope)
Crop the geometry in meters by the envelope bounds in meters.static Line
GeometryUtils. crop(Line line, GeometryEnvelope envelope)
Crop the line in meters by the envelope bounds in meters.static LineString
GeometryUtils. crop(LineString lineString, GeometryEnvelope envelope)
Crop the line string in meters by the envelope bounds in meters.static MultiLineString
GeometryUtils. crop(MultiLineString multiLineString, GeometryEnvelope envelope)
Crop the multi line string in meters by the envelope bounds in meters.static MultiPoint
GeometryUtils. crop(MultiPoint multiPoint, GeometryEnvelope envelope)
Crop the multi point by the envelope bounds.static MultiPolygon
GeometryUtils. crop(MultiPolygon multiPolygon, GeometryEnvelope envelope)
Crop the multi polygon in meters by the envelope bounds in meters.static Point
GeometryUtils. crop(Point point, GeometryEnvelope envelope)
Crop the point by the envelope bounds.static Polygon
GeometryUtils. crop(Polygon polygon, GeometryEnvelope envelope)
Crop the polygon in meters by the envelope bounds in meters.static PolyhedralSurface
GeometryUtils. crop(PolyhedralSurface polyhedralSurface, GeometryEnvelope envelope)
Crop the polyhedral surface in meters by the envelope bounds in meters.static TIN
GeometryUtils. crop(TIN tin, GeometryEnvelope envelope)
Crop the TIN in meters by the envelope bounds in meters.static Triangle
GeometryUtils. crop(Triangle triangle, GeometryEnvelope envelope)
Crop the triangle in meters by the envelope bounds in meters.static GeometryEnvelope
GeometryUtils. geodesicEnvelope(GeometryEnvelope envelope)
Expand the vertical bounds of a geometry envelope in degrees by including geodesic bounds
-