NetTopologySuite
|
Nodes a set of ISegmentStrings completely. The set of ISegmentStrings is fully noded; i.e. noding is repeated until no further intersections are detected. More...
Public Member Functions | |
IteratedNoder (IPrecisionModel pm) | |
Initializes a new instance of the IteratedNoder class. More... | |
IList< ISegmentString > | GetNodedSubstrings () |
Returns a IList of fully noded ISegmentStrings. The ISegmentStrings have the same context as their parent. More... | |
void | ComputeNodes (IList< ISegmentString > segStrings) |
Fully nodes a list of ISegmentStrings, i.e. peforms noding iteratively until no intersections are found between segments. Maintains labelling of edges correctly through the noding. More... | |
Public Attributes | |
const int | MaxIterations = 5 |
Properties | |
int | MaximumIterations [get, set] |
Gets/Sets the maximum number of noding iterations performed before the noding is aborted. Experience suggests that this should rarely need to be changed from the default. The default is MaxIterations. More... | |
Nodes a set of ISegmentStrings completely. The set of ISegmentStrings is fully noded; i.e. noding is repeated until no further intersections are detected.
Iterated noding using a PrecisionModels.Floating precision model is not guaranteed to converge, due to roundoff error. This problem is detected and an exception is thrown. Clients can choose to rerun the noding using a lower precision model.
NetTopologySuite.Noding.IteratedNoder.IteratedNoder | ( | IPrecisionModel | pm | ) |
Initializes a new instance of the IteratedNoder class.
pm |
void NetTopologySuite.Noding.IteratedNoder.ComputeNodes | ( | IList< ISegmentString > | segStrings | ) |
Fully nodes a list of ISegmentStrings, i.e. peforms noding iteratively until no intersections are found between segments. Maintains labelling of edges correctly through the noding.
segStrings | A collection of SegmentStrings to be noded. |
TopologyException | If the iterated noding fails to converge. |
Implements NetTopologySuite.Noding.INoder.
IList<ISegmentString> NetTopologySuite.Noding.IteratedNoder.GetNodedSubstrings | ( | ) |
Returns a IList of fully noded ISegmentStrings. The ISegmentStrings have the same context as their parent.
Implements NetTopologySuite.Noding.INoder.
const int NetTopologySuite.Noding.IteratedNoder.MaxIterations = 5 |
|
getset |
Gets/Sets the maximum number of noding iterations performed before the noding is aborted. Experience suggests that this should rarely need to be changed from the default. The default is MaxIterations.