Uses of Class
org.locationtech.jts.geom.PrecisionModel
-
Packages that use PrecisionModel Package Description org.locationtech.jts.algorithm Contains classes and interfaces implementing fundamental computational geometry algorithms.org.locationtech.jts.geom Contains theGeometryinterface hierarchy and supporting classes.org.locationtech.jts.io Contains the interfaces for converting JTS objects to and from other formats.org.locationtech.jts.noding Classes to compute nodings for arrangements of line segments and line segment sequences.org.locationtech.jts.noding.snapround Contains classes to implement the Snap Rounding algorithm for noding linestrings.org.locationtech.jts.operation.buffer Provides classes for computing buffers of geometriesorg.locationtech.jts.precision Provides classes for analyzing and manipulating the precision of Geometries.org.locationtech.jtslab.snapround -
-
Uses of PrecisionModel in org.locationtech.jts.algorithm
Methods in org.locationtech.jts.algorithm with parameters of type PrecisionModel Modifier and Type Method Description voidLineIntersector. setMakePrecise(PrecisionModel precisionModel)Deprecated.usesetPrecisionModelinsteadvoidLineIntersector. setPrecisionModel(PrecisionModel precisionModel)Force computed intersection to be rounded to a given precision model. -
Uses of PrecisionModel in org.locationtech.jts.geom
Methods in org.locationtech.jts.geom that return PrecisionModel Modifier and Type Method Description PrecisionModelGeometry. getPrecisionModel()Returns thePrecisionModelused by theGeometry.PrecisionModelGeometryFactory. getPrecisionModel()Returns the PrecisionModel that Geometries created by this factory will be associated with.static PrecisionModelPrecisionModel. mostPrecise(PrecisionModel pm1, PrecisionModel pm2)Determines which of twoPrecisionModels is the most precise (allows the greatest number of significant digits).Methods in org.locationtech.jts.geom with parameters of type PrecisionModel Modifier and Type Method Description static PrecisionModelPrecisionModel. mostPrecise(PrecisionModel pm1, PrecisionModel pm2)Determines which of twoPrecisionModels is the most precise (allows the greatest number of significant digits).Constructors in org.locationtech.jts.geom with parameters of type PrecisionModel Constructor Description GeometryCollection(Geometry[] geometries, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory insteadGeometryFactory(PrecisionModel precisionModel)Constructs a GeometryFactory that generates Geometries having the givenPrecisionModeland the default CoordinateSequence implementation.GeometryFactory(PrecisionModel precisionModel, int SRID)Constructs a GeometryFactory that generates Geometries having the givenPrecisionModeland spatial-reference ID, and the default CoordinateSequence implementation.GeometryFactory(PrecisionModel precisionModel, int SRID, CoordinateSequenceFactory coordinateSequenceFactory)Constructs a GeometryFactory that generates Geometries having the given PrecisionModel, spatial-reference ID, and CoordinateSequence implementation.LinearRing(Coordinate[] points, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory insteadLineString(Coordinate[] points, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory insteadMultiLineString(LineString[] lineStrings, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory insteadMultiPoint(Point[] points, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory insteadMultiPolygon(Polygon[] polygons, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory insteadPoint(Coordinate coordinate, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory insteadPolygon(LinearRing shell, LinearRing[] holes, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory insteadPolygon(LinearRing shell, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory insteadPrecisionModel(PrecisionModel pm)Copy constructor to create a newPrecisionModelfrom an existing one. -
Uses of PrecisionModel in org.locationtech.jts.io
Methods in org.locationtech.jts.io with parameters of type PrecisionModel Modifier and Type Method Description voidWKTWriter. setPrecisionModel(PrecisionModel precisionModel)Sets aPrecisionModelthat should be used on the ordinates written. -
Uses of PrecisionModel in org.locationtech.jts.noding
Constructors in org.locationtech.jts.noding with parameters of type PrecisionModel Constructor Description IteratedNoder(PrecisionModel pm) -
Uses of PrecisionModel in org.locationtech.jts.noding.snapround
Constructors in org.locationtech.jts.noding.snapround with parameters of type PrecisionModel Constructor Description GeometryNoder(PrecisionModel pm)Creates a new noder which snap-rounds to a grid specified by the givenPrecisionModel.MCIndexSnapRounder(PrecisionModel pm)SimpleSnapRounder(PrecisionModel pm) -
Uses of PrecisionModel in org.locationtech.jts.operation.buffer
Constructors in org.locationtech.jts.operation.buffer with parameters of type PrecisionModel Constructor Description OffsetCurveBuilder(PrecisionModel precisionModel, BufferParameters bufParams) -
Uses of PrecisionModel in org.locationtech.jts.precision
Methods in org.locationtech.jts.precision with parameters of type PrecisionModel Modifier and Type Method Description static GeometryGeometryPrecisionReducer. reduce(Geometry g, PrecisionModel precModel)Convenience method for doing precision reduction on a single geometry, with collapses removed and keeping the geometry precision model the same, and preserving polygonal topology.static GeometrySimpleGeometryPrecisionReducer. reduce(Geometry g, PrecisionModel precModel)Deprecated.Convenience method for doing precision reduction on a single geometry, with collapses removed and keeping the geometry precision model the same.static GeometryGeometryPrecisionReducer. reducePointwise(Geometry g, PrecisionModel precModel)Convenience method for doing pointwise precision reduction on a single geometry, with collapses removed and keeping the geometry precision model the same, but NOT preserving valid polygonal topology.Constructors in org.locationtech.jts.precision with parameters of type PrecisionModel Constructor Description CoordinatePrecisionReducerFilter(PrecisionModel precModel)Creates a new precision reducer filter.GeometryPrecisionReducer(PrecisionModel pm)PrecisionReducerCoordinateOperation(PrecisionModel targetPM, boolean removeCollapsed)SimpleGeometryPrecisionReducer(PrecisionModel pm)Deprecated. -
Uses of PrecisionModel in org.locationtech.jtslab.snapround
Constructors in org.locationtech.jtslab.snapround with parameters of type PrecisionModel Constructor Description GeometrySnapRounder(PrecisionModel pm)Creates a new snap-rounder which snap-rounds to a grid specified by the givenPrecisionModel.
-