How to get the coordinate(s) of intersection of two polylines in ArcGIS Pro SDK?
In ArcObjects I can use ITopologicalOperator5 interface to create the points(intersect member). Is there anything like that in ArcGIS pro SDK?
Solved! Go to Solution.
Below can find intersection points(Found it in ProSnippets Geometry)
Geometry g = GeometryEngine.Instance.Intersection(line1, line2, GeometryDimension.esriGeometry0Dimension);
Multipoint resultMultipoint = g as Multipoint;
Below can find intersection points(Found it in ProSnippets Geometry)
Geometry g = GeometryEngine.Instance.Intersection(line1, line2, GeometryDimension.esriGeometry0Dimension);
Multipoint resultMultipoint = g as Multipoint;
Hello. I have a question similar to the original one : is there a way with the ArcGIS Pro SDK to find if a polyline is self-intersecting, and get the self-intersection points ?