GEOS  3.13.0dev
Public Member Functions | List of all members
geos::noding::Noder Class Referenceabstract

Computes all intersections between segments in a set of SegmentString. More...

#include <Noder.h>

Inheritance diagram for geos::noding::Noder:
geos::noding::BoundaryChainNoder geos::noding::IteratedNoder geos::noding::ScaledNoder geos::noding::SegmentExtractingNoder geos::noding::SinglePassNoder geos::noding::ValidatingNoder geos::noding::snap::SnappingNoder geos::noding::snapround::MCIndexSnapRounder geos::noding::snapround::SnapRoundingNoder

Public Member Functions

virtual void computeNodes (std::vector< SegmentString * > *segStrings)=0
 Computes the noding for a collection of SegmentStrings. More...
 
virtual std::vector< SegmentString * > * getNodedSubstrings () const =0
 Returns a collection of fully noded SegmentStrings. The SegmentStrings have the same context as their parent. More...
 

Detailed Description

Computes all intersections between segments in a set of SegmentString.

Intersections found are represented as SegmentNodes and added to the SegmentStrings in which they occur. As a final step in the noding a new set of segment strings split at the nodes may be returned.

Last port: noding/Noder.java rev. 1.8 (JTS-1.7)

TODO: this was really an interface, we should avoid making it a Base class

Member Function Documentation

◆ computeNodes()

virtual void geos::noding::Noder::computeNodes ( std::vector< SegmentString * > *  segStrings)
pure virtual

Computes the noding for a collection of SegmentStrings.

Some Noders may add all these nodes to the input SegmentStrings; others may only add some or none at all.

Parameters
segStringsa collection of SegmentStrings to node The caller remains responsible for releasing the memory associated with the container and its elements.

Implemented in geos::noding::SinglePassNoder, geos::noding::ValidatingNoder, geos::noding::snapround::MCIndexSnapRounder, geos::noding::SegmentExtractingNoder, geos::noding::snapround::SnapRoundingNoder, geos::noding::snap::SnappingNoder, geos::noding::BoundaryChainNoder, geos::noding::ScaledNoder, geos::noding::SimpleNoder, geos::noding::MCIndexNoder, and geos::noding::IteratedNoder.

◆ getNodedSubstrings()

virtual std::vector<SegmentString*>* geos::noding::Noder::getNodedSubstrings ( ) const
pure virtual

Returns a collection of fully noded SegmentStrings. The SegmentStrings have the same context as their parent.

Returns
a newly allocated std::vector of newly allocated SegmentStrings (copies of input, if needs be). Caller is responsible to delete container and elements.

Implemented in geos::noding::SinglePassNoder, geos::noding::ValidatingNoder, geos::noding::snapround::SnapRoundingNoder, geos::noding::snapround::MCIndexSnapRounder, geos::noding::snap::SnappingNoder, geos::noding::SimpleNoder, geos::noding::SegmentExtractingNoder, geos::noding::ScaledNoder, geos::noding::MCIndexNoder, geos::noding::IteratedNoder, and geos::noding::BoundaryChainNoder.


The documentation for this class was generated from the following file: