Tagged Questions
3
votes
2answers
178 views
How to find self-intersecting polylines using ArcObjects?
If I have a polyline, how do I figure out whether it is self-intersecting? I tried to use ITopologicalOperator.IsSimple Property, but it always returns true.
Are there any ways of doing these kind ...
6
votes
1answer
195 views
Algorithm to fill the gaps adjacent to parcels
I would like to find a way to fill the gaps between the road and its surrounding parcels, like described in picture below:
I have different parcels like A and B , i want to fill the gaps by adding ...
3
votes
1answer
806 views
Intersect two polylines using ArcObjects
I have two polylines and would like to find the intersection(s) using ArcObjects / VB.NET.
I'm using the following code:
Dim topoOp As ITopologicalOperator = TryCast(pTestPoly2, ...
2
votes
2answers
433 views
Topological relationship between two polygon feature layers
I have two polygon feature layers: one representing land parcels and one representing roads. Some land parcels (polygons) coincide with a part of a road (another polygon feature). How can I check ...
1
vote
0answers
232 views
topology rules for structuring topology data to get line feature as topoparent in topology graph
i Created topology graph of a polygon feature and i copied geometry of topology edges into line feature class,and topology nodes into point feature class
i created topology layer containing ...
5
votes
1answer
655 views
How to create adjacency matrix of topology graph of arc map for shortest path?
I have created a topology graph of a polygon feature and I want to find the individual FIDS of the lines of the polygon. I want to construct an adjacency matrix to create the shortest path. How can I ...
3
votes
2answers
269 views
Getting line FID from polygon ITopologyGraph
I want to export polygon Arc list to txt file for that
I created topologygraph for personal geodatabase feature class (polygon)
using ITopologyGraph::build.
I got polygon FIDs but I am not getting ...
