Uses of Interface
org.locationtech.jts.noding.Noder
-
Packages that use Noder Package Description org.locationtech.jts.noding Classes to compute nodings for arrangements of line segments and line segment sequences.org.locationtech.jts.noding.snap org.locationtech.jts.noding.snapround Contains classes to implement the Snap Rounding algorithm for noding linestrings.org.locationtech.jts.operation.overlayng Contains classes that perform vector overlay to compute boolean set-theoretic spatial functions. -
-
Uses of Noder in org.locationtech.jts.noding
Classes in org.locationtech.jts.noding that implement Noder Modifier and Type Class Description class
BoundaryChainNoder
A noder which extracts chains of boundary segments asSegmentString
s from a polygonal coverage.class
BoundarySegmentNoder
A noder which extracts boundary line segments asSegmentString
s.class
IteratedNoder
Nodes a set ofNodedSegmentString
s completely.class
MCIndexNoder
class
ScaledNoder
Wraps aNoder
and transforms its input into the integer domain.class
SegmentExtractingNoder
A noder which extracts all line segments asSegmentString
s.class
SimpleNoder
Nodes a set ofSegmentString
s by performing a brute-force comparison of every segment to every other one.class
SinglePassNoder
Base class forNoder
s which make a single pass to find intersections.class
ValidatingNoder
A wrapper forNoder
s which validates the output arrangement is correctly noded.Constructors in org.locationtech.jts.noding with parameters of type Noder Constructor Description ScaledNoder(Noder noder, double scaleFactor)
ScaledNoder(Noder noder, double scaleFactor, double offsetX, double offsetY)
ValidatingNoder(Noder noder)
Creates a noding validator wrapping the given Noder -
Uses of Noder in org.locationtech.jts.noding.snap
Classes in org.locationtech.jts.noding.snap that implement Noder Modifier and Type Class Description class
SnappingNoder
Nodes a set of segment strings snapping vertices and intersection points together if they lie within the given snap tolerance distance. -
Uses of Noder in org.locationtech.jts.noding.snapround
Classes in org.locationtech.jts.noding.snapround that implement Noder Modifier and Type Class Description class
MCIndexSnapRounder
Deprecated.Not robust.class
SnapRoundingNoder
Uses Snap Rounding to compute a rounded, fully noded arrangement from a set ofSegmentString
s, in a performant way, and avoiding unnecessary noding. -
Uses of Noder in org.locationtech.jts.operation.overlayng
Methods in org.locationtech.jts.operation.overlayng with parameters of type Noder Modifier and Type Method Description static Geometry
OverlayNG. overlay(Geometry geom0, Geometry geom1, int opCode, PrecisionModel pm, Noder noder)
Computes an overlay operation on the given geometry operands, using a suppliedNoder
.static Geometry
OverlayNG. overlay(Geometry geom0, Geometry geom1, int opCode, Noder noder)
Computes an overlay operation on the given geometry operands, using a suppliedNoder
.
-