We know that we require production mapping extension and ARCINFO license to view the pseude node and dangle nodes.We have to see these nodes without these functionality through python scripting,but I do not have to use any in-built tool ,I have to make my own tool through python which can helps me viewing the nodes
-
Are you looking to do topology using arcpy? If so, you can start here.Lou– Lou2015年04月01日 14:07:38 +00:00Commented Apr 1, 2015 at 14:07
-
If you are not bound to python scripting, you could use QGIS with the "Topology Checker" plugin. If yes, ignore this comment :)EikeMike– EikeMike2015年04月01日 15:31:30 +00:00Commented Apr 1, 2015 at 15:31
-
Production Mapping is not required for geodatabase topology but a Standard (ArcEditor) or Advanced (ArcInfo) is. If you don't have acess to those levels, there are some third-party add-ons, such as ET GeoTools that are bit more cost effective and contain similar tools/function. See also gis.stackexchange.com/questions/133928 and gis.stackexchange.com/questions/17743 that have some other Basic (ArcView) methods.Chris W– Chris W2015年04月01日 23:53:53 +00:00Commented Apr 1, 2015 at 23:53
1 Answer 1
The tool arcpy.FeatureVerticesToPoints_management has an option to write dangle nodes, or ALL vertices.
Another tool you can look at is arcpy.ExportTopologyErrors_management which will export all topology errors to standalone feature classes. You'll need to create a topology and define it's rules first though.
-
Feature Vertices to Points, and therefore I assume the arcpy calling of it, also requires an Advanced/Info license which asker says they don't have.Chris W– Chris W2015年04月01日 23:57:06 +00:00Commented Apr 1, 2015 at 23:57