Class ConnectedElementLocationFilter
A ConnectedElementPointFilter extracts a single point
from each connected element in a Geometry
(e.g. a polygon, linestring or point)
and returns them in a list. The elements of the list are
GeometryLocations.
Empty geometries do not provide a location item.
Inheritance
ConnectedElementLocationFilter
Assembly: NetTopologySuite.dll
Syntax
public class ConnectedElementLocationFilter : IGeometryFilter
Methods
|
Improve this Doc
View Source
Filter(Geometry)
Declaration
public void Filter(Geometry geom)
Parameters
|
Improve this Doc
View Source
GetLocations(Geometry)
Returns a list containing a point from each Polygon, LineString, and Point
found inside the specified point. Thus, if the specified point is
not a GeometryCollection, an empty list will be returned. The elements of the list
are GeometryLocations.
Declaration
public static IList<GeometryLocation> GetLocations(Geometry geom)
Parameters
Returns
Implements