Uses of Class
com.vividsolutions.jts.geom.Envelope
-
Packages that use Envelope Package Description com.vividsolutions.jts.algorithm Contains classes and interfaces implementing fundamental computational geometry algorithms.com.vividsolutions.jts.algorithm.match Classes to compute matching metrics between geometries.com.vividsolutions.jts.geom Contains theGeometryinterface hierarchy and supporting classes.com.vividsolutions.jts.geom.impl Implementations of interfaces for geometric structures.com.vividsolutions.jts.geomgraph Contains classes that implement topology graphs.com.vividsolutions.jts.index Provides classes for various kinds of spatial indexes.com.vividsolutions.jts.index.chain Contains classes that implement Monotone Chainscom.vividsolutions.jts.index.kdtree Contains classes which implement a k-D tree index over 2-D point data.com.vividsolutions.jts.index.quadtree Contains classes that implement a Quadtree spatial indexcom.vividsolutions.jts.index.strtree Contains 2-D and 1-D versions of the Sort-Tile-Recursive (STR) tree, a query-only R-tree.com.vividsolutions.jts.noding.snapround Contains classes to implement the Snap Rounding algorithm for noding linestrings.com.vividsolutions.jts.operation.distance Provides classes for computing the distance between geometriescom.vividsolutions.jts.operation.distance3d com.vividsolutions.jts.shape com.vividsolutions.jts.shape.random com.vividsolutions.jts.triangulate Classes to compute Delaunay triangulations.com.vividsolutions.jts.triangulate.quadedge Classes to implement a topological subdivision of quadeges, to support creating triangulations and Voronoi diagrams.com.vividsolutions.jts.util Contains support classes for the Java Topology Suite.com.vividsolutions.jtsexample.geom com.vividsolutions.jtstest.function com.vividsolutions.jtstest.testbuilder com.vividsolutions.jtstest.testbuilder.geom com.vividsolutions.jtstest.testbuilder.io.shapefile com.vividsolutions.jtstest.testbuilder.model com.vividsolutions.jtstest.testbuilder.topostretch com.vividsolutions.jtstest.testbuilder.ui com.vividsolutions.jtstest.testbuilder.ui.tools -
-
Uses of Envelope in com.vividsolutions.jts.algorithm
Methods in com.vividsolutions.jts.algorithm with parameters of type Envelope Modifier and Type Method Description static CoordinateInteriorPointArea. centre(Envelope envelope)Returns the centre point of the envelope.Constructors in com.vividsolutions.jts.algorithm with parameters of type Envelope Constructor Description RectangleLineIntersector(Envelope rectEnv)Creates a new intersector for the given query rectangle, specified as anEnvelope. -
Uses of Envelope in com.vividsolutions.jts.algorithm.match
Methods in com.vividsolutions.jts.algorithm.match with parameters of type Envelope Modifier and Type Method Description static doubleHausdorffSimilarityMeasure. diagonalSize(Envelope env) -
Uses of Envelope in com.vividsolutions.jts.geom
Fields in com.vividsolutions.jts.geom declared as Envelope Modifier and Type Field Description protected EnvelopeGeometry. envelopeThe bounding box of thisGeometry.Methods in com.vividsolutions.jts.geom that return Envelope Modifier and Type Method Description protected abstract EnvelopeGeometry. computeEnvelopeInternal()Returns the minimum and maximum x and y values in thisGeometry, or a nullEnvelopeif thisGeometryis empty.protected EnvelopeGeometryCollection. computeEnvelopeInternal()protected EnvelopeLineString. computeEnvelopeInternal()protected EnvelopePoint. computeEnvelopeInternal()protected EnvelopePolygon. computeEnvelopeInternal()static EnvelopeCoordinateArrays. envelope(Coordinate[] coordinates)Computes the envelope of the coordinates.EnvelopeCoordinateSequence. expandEnvelope(Envelope env)Expands the givenEnvelopeto include the coordinates in the sequence.EnvelopeGeometry. getEnvelopeInternal()Gets anEnvelopecontaining the minimum and maximum x and y values in thisGeometry.EnvelopeEnvelope. intersection(Envelope env)Computes the intersection of twoEnvelopes.Methods in com.vividsolutions.jts.geom with parameters of type Envelope Modifier and Type Method Description booleanEnvelope. contains(Envelope other)Tests if theEnvelope otherlies wholely inside thisEnvelope(inclusive of the boundary).booleanEnvelope. covers(Envelope other)Tests if theEnvelope otherlies wholely inside thisEnvelope(inclusive of the boundary).doubleEnvelope. distance(Envelope env)Computes the distance between this and anotherEnvelope.EnvelopeCoordinateSequence. expandEnvelope(Envelope env)Expands the givenEnvelopeto include the coordinates in the sequence.voidEnvelope. expandToInclude(Envelope other)Enlarges thisEnvelopeso that it contains theotherEnvelope.OctagonalEnvelopeOctagonalEnvelope. expandToInclude(Envelope env)voidEnvelope. init(Envelope env)Initialize anEnvelopefrom an existing Envelope.static Coordinate[]CoordinateArrays. intersection(Coordinate[] coordinates, Envelope env)Extracts the coordinates which intersect anEnvelope.EnvelopeEnvelope. intersection(Envelope env)Computes the intersection of twoEnvelopes.booleanEnvelope. intersects(Envelope other)Check if the region defined byotheroverlaps (intersects) the region of thisEnvelope.booleanEnvelope. overlaps(Envelope other)Deprecated.Use #intersects instead.GeometryGeometryFactory. toGeometry(Envelope envelope)Creates aGeometrywith the same extent as the given envelope.Constructors in com.vividsolutions.jts.geom with parameters of type Envelope Constructor Description Envelope(Envelope env)Create anEnvelopefrom an existing Envelope.OctagonalEnvelope(Envelope env)Creates a new null bounding octagon bounding anEnvelope -
Uses of Envelope in com.vividsolutions.jts.geom.impl
Methods in com.vividsolutions.jts.geom.impl that return Envelope Modifier and Type Method Description EnvelopeCoordinateArraySequence. expandEnvelope(Envelope env)EnvelopePackedCoordinateSequence.Double. expandEnvelope(Envelope env)EnvelopePackedCoordinateSequence.Float. expandEnvelope(Envelope env)Methods in com.vividsolutions.jts.geom.impl with parameters of type Envelope Modifier and Type Method Description EnvelopeCoordinateArraySequence. expandEnvelope(Envelope env)EnvelopePackedCoordinateSequence.Double. expandEnvelope(Envelope env)EnvelopePackedCoordinateSequence.Float. expandEnvelope(Envelope env) -
Uses of Envelope in com.vividsolutions.jts.geomgraph
Methods in com.vividsolutions.jts.geomgraph that return Envelope Modifier and Type Method Description EnvelopeEdge. getEnvelope() -
Uses of Envelope in com.vividsolutions.jts.index
Methods in com.vividsolutions.jts.index with parameters of type Envelope Modifier and Type Method Description voidSpatialIndex. insert(Envelope itemEnv, java.lang.Object item)Adds a spatial item with an extent specified by the givenEnvelopeto the indexjava.util.ListSpatialIndex. query(Envelope searchEnv)Queries the index for all items whose extents intersect the given searchEnvelopeNote that some kinds of indexes may also return objects which do not in fact intersect the query envelope.voidSpatialIndex. query(Envelope searchEnv, ItemVisitor visitor)Queries the index for all items whose extents intersect the given searchEnvelope, and applies anItemVisitorto them.booleanSpatialIndex. remove(Envelope itemEnv, java.lang.Object item)Removes a single item from the tree. -
Uses of Envelope in com.vividsolutions.jts.index.chain
Methods in com.vividsolutions.jts.index.chain that return Envelope Modifier and Type Method Description EnvelopeMonotoneChain. getEnvelope()Methods in com.vividsolutions.jts.index.chain with parameters of type Envelope Modifier and Type Method Description voidMonotoneChain. select(Envelope searchEnv, MonotoneChainSelectAction mcs)Determine all the line segments in the chain whose envelopes overlap the searchEnvelope, and process them. -
Uses of Envelope in com.vividsolutions.jts.index.kdtree
Methods in com.vividsolutions.jts.index.kdtree with parameters of type Envelope Modifier and Type Method Description java.util.ListKdTree. query(Envelope queryEnv)Performs a range search of the points in the index.voidKdTree. query(Envelope queryEnv, KdNodeVisitor visitor)Performs a range search of the points in the index and visits all nodes found.voidKdTree. query(Envelope queryEnv, java.util.List result)Performs a range search of the points in the index. -
Uses of Envelope in com.vividsolutions.jts.index.quadtree
Methods in com.vividsolutions.jts.index.quadtree that return Envelope Modifier and Type Method Description static EnvelopeQuadtree. ensureExtent(Envelope itemEnv, double minExtent)Ensure that the envelope for the inserted item has non-zero extents.EnvelopeKey. getEnvelope()EnvelopeNode. getEnvelope()Methods in com.vividsolutions.jts.index.quadtree with parameters of type Envelope Modifier and Type Method Description voidNodeBase. addAllItemsFromOverlapping(Envelope searchEnv, java.util.List resultItems)voidKey. computeKey(Envelope itemEnv)return a square envelope containing the argument envelope, whose extent is a power of two and which is based at a power of 2static intKey. computeQuadLevel(Envelope env)static NodeNode. createExpanded(Node node, Envelope addEnv)static NodeNode. createNode(Envelope env)static EnvelopeQuadtree. ensureExtent(Envelope itemEnv, double minExtent)Ensure that the envelope for the inserted item has non-zero extents.NodeBaseNode. find(Envelope searchEnv)Returns the smallest existing node containing the envelope.NodeNode. getNode(Envelope searchEnv)Returns the subquad containing the envelope searchEnv.static intNodeBase. getSubnodeIndex(Envelope env, double centrex, double centrey)Gets the index of the subquad that wholly contains the given envelope.voidQuadtree. insert(Envelope itemEnv, java.lang.Object item)voidRoot. insert(Envelope itemEnv, java.lang.Object item)Insert an item into the quadtree this is the root of.protected booleanNode. isSearchMatch(Envelope searchEnv)protected abstract booleanNodeBase. isSearchMatch(Envelope searchEnv)protected booleanRoot. isSearchMatch(Envelope searchEnv)java.util.ListQuadtree. query(Envelope searchEnv)Queries the tree and returns items which may lie in the given search envelope.voidQuadtree. query(Envelope searchEnv, ItemVisitor visitor)Queries the tree and visits items which may lie in the given search envelope.booleanNodeBase. remove(Envelope itemEnv, java.lang.Object item)Removes a single item from this subtree.booleanQuadtree. remove(Envelope itemEnv, java.lang.Object item)Removes a single item from the tree.voidNodeBase. visit(Envelope searchEnv, ItemVisitor visitor)Constructors in com.vividsolutions.jts.index.quadtree with parameters of type Envelope Constructor Description Key(Envelope itemEnv)Node(Envelope env, int level) -
Uses of Envelope in com.vividsolutions.jts.index.strtree
Methods in com.vividsolutions.jts.index.strtree with parameters of type Envelope Modifier and Type Method Description voidSTRtree. insert(Envelope itemEnv, java.lang.Object item)Inserts an item having the given bounds into the tree.java.lang.ObjectSTRtree. nearestNeighbour(Envelope env, java.lang.Object item, ItemDistance itemDist)Finds the item in this tree which is nearest to the givenObject, usingItemDistanceas the distance metric.java.util.ListSTRtree. query(Envelope searchEnv)Returns items whose bounds intersect the given envelope.voidSTRtree. query(Envelope searchEnv, ItemVisitor visitor)Returns items whose bounds intersect the given envelope.booleanSTRtree. remove(Envelope itemEnv, java.lang.Object item)Removes a single item from the tree. -
Uses of Envelope in com.vividsolutions.jts.noding.snapround
Methods in com.vividsolutions.jts.noding.snapround that return Envelope Modifier and Type Method Description EnvelopeHotPixel. getSafeEnvelope()Returns a "safe" envelope that is guaranteed to contain the hot pixel. -
Uses of Envelope in com.vividsolutions.jts.operation.distance
Methods in com.vividsolutions.jts.operation.distance that return Envelope Modifier and Type Method Description EnvelopeFacetSequence. getEnvelope() -
Uses of Envelope in com.vividsolutions.jts.operation.distance3d
Methods in com.vividsolutions.jts.operation.distance3d that return Envelope Modifier and Type Method Description EnvelopeAxisPlaneCoordinateSequence. expandEnvelope(Envelope env)Methods in com.vividsolutions.jts.operation.distance3d with parameters of type Envelope Modifier and Type Method Description EnvelopeAxisPlaneCoordinateSequence. expandEnvelope(Envelope env) -
Uses of Envelope in com.vividsolutions.jts.shape
Fields in com.vividsolutions.jts.shape declared as Envelope Modifier and Type Field Description protected EnvelopeGeometricShapeBuilder. extentMethods in com.vividsolutions.jts.shape that return Envelope Modifier and Type Method Description EnvelopeGeometricShapeBuilder. getExtent()EnvelopeGeometricShapeBuilder. getSquareExtent()Methods in com.vividsolutions.jts.shape with parameters of type Envelope Modifier and Type Method Description voidGeometricShapeBuilder. setExtent(Envelope extent) -
Uses of Envelope in com.vividsolutions.jts.shape.random
Methods in com.vividsolutions.jts.shape.random with parameters of type Envelope Modifier and Type Method Description protected CoordinateRandomPointsBuilder. createRandomCoord(Envelope env) -
Uses of Envelope in com.vividsolutions.jts.triangulate
Methods in com.vividsolutions.jts.triangulate that return Envelope Modifier and Type Method Description static EnvelopeDelaunayTriangulationBuilder. envelope(java.util.Collection coords)Computes theEnvelopeof a collection ofCoordinates.Methods in com.vividsolutions.jts.triangulate with parameters of type Envelope Modifier and Type Method Description voidVoronoiDiagramBuilder. setClipEnvelope(Envelope clipEnv)Sets the envelope to clip the diagram to. -
Uses of Envelope in com.vividsolutions.jts.triangulate.quadedge
Methods in com.vividsolutions.jts.triangulate.quadedge that return Envelope Modifier and Type Method Description EnvelopeQuadEdgeSubdivision. getEnvelope()Gets the envelope of the Subdivision (including the frame).Constructors in com.vividsolutions.jts.triangulate.quadedge with parameters of type Envelope Constructor Description QuadEdgeSubdivision(Envelope env, double tolerance)Creates a new instance of a quad-edge subdivision based on a frame triangle that encloses a supplied bounding box. -
Uses of Envelope in com.vividsolutions.jts.util
Methods in com.vividsolutions.jts.util that return Envelope Modifier and Type Method Description EnvelopeGeometricShapeFactory.Dimensions. getEnvelope()Methods in com.vividsolutions.jts.util with parameters of type Envelope Modifier and Type Method Description voidGeometricShapeFactory.Dimensions. setEnvelope(Envelope env)voidGeometricShapeFactory. setEnvelope(Envelope env) -
Uses of Envelope in com.vividsolutions.jtsexample.geom
Methods in com.vividsolutions.jtsexample.geom that return Envelope Modifier and Type Method Description EnvelopeExtendedCoordinateSequence. expandEnvelope(Envelope env)Methods in com.vividsolutions.jtsexample.geom with parameters of type Envelope Modifier and Type Method Description EnvelopeExtendedCoordinateSequence. expandEnvelope(Envelope env) -
Uses of Envelope in com.vividsolutions.jtstest.function
Fields in com.vividsolutions.jtstest.function declared as Envelope Modifier and Type Field Description static EnvelopeFunctionsUtil. DEFAULT_ENVELOPEMethods in com.vividsolutions.jtstest.function that return Envelope Modifier and Type Method Description static EnvelopeFunctionsUtil. getEnvelopeOrDefault(Geometry g) -
Uses of Envelope in com.vividsolutions.jtstest.testbuilder
Methods in com.vividsolutions.jtstest.testbuilder with parameters of type Envelope Modifier and Type Method Description voidGeometryEditPanel. zoom(Envelope zoomEnv) -
Uses of Envelope in com.vividsolutions.jtstest.testbuilder.geom
Methods in com.vividsolutions.jtstest.testbuilder.geom with parameters of type Envelope Modifier and Type Method Description static GeometryGeometryBoxDeleter. delete(Geometry geom, Envelope env)static doubleEnvelopeUtil. maxExtent(Envelope env)static doubleEnvelopeUtil. minExtent(Envelope env) -
Uses of Envelope in com.vividsolutions.jtstest.testbuilder.io.shapefile
Methods in com.vividsolutions.jtstest.testbuilder.io.shapefile that return Envelope Modifier and Type Method Description EnvelopeShapefileHeader. getBounds() -
Uses of Envelope in com.vividsolutions.jtstest.testbuilder.model
Methods in com.vividsolutions.jtstest.testbuilder.model that return Envelope Modifier and Type Method Description EnvelopeGeometryEditModel. getEnvelope()EnvelopeGeometryEditModel. getEnvelopeAll()EnvelopeGeometryEditModel. getEnvelopeResult()Methods in com.vividsolutions.jtstest.testbuilder.model with parameters of type Envelope Modifier and Type Method Description voidGeometryStretcherView. setEnvelope(Envelope maskEnv) -
Uses of Envelope in com.vividsolutions.jtstest.testbuilder.topostretch
Methods in com.vividsolutions.jtstest.testbuilder.topostretch with parameters of type Envelope Modifier and Type Method Description intTopologyStretcher. numVerticesInMask(Envelope mask)Geometry[]TopologyStretcher. stretch(double nearnessTol, double stretchDistance, Envelope mask) -
Uses of Envelope in com.vividsolutions.jtstest.testbuilder.ui
Methods in com.vividsolutions.jtstest.testbuilder.ui that return Envelope Modifier and Type Method Description EnvelopeViewport. getModelEnv()EnvelopeViewport. getViewEnv()Methods in com.vividsolutions.jtstest.testbuilder.ui with parameters of type Envelope Modifier and Type Method Description booleanViewport. intersectsInModel(Envelope env)voidViewport. zoom(Envelope zoomEnv) -
Uses of Envelope in com.vividsolutions.jtstest.testbuilder.ui.tools
Methods in com.vividsolutions.jtstest.testbuilder.ui.tools that return Envelope Modifier and Type Method Description protected EnvelopeBoxBandTool. getEnvelope()Gets the envelope of the indicated rectangle, in model coordinates.
-