We would like to obtain a listing of Network Dataset edges and their connected junctions using custom code in ArcGIS Pro. I found some example ArcObjects code in this older thread: https://community.esri.com/thread/97965. We'd like to do something similar using the ArcGIS Pro SDK. Can somebody provide some documentation on library calls, or sample code, that could show us how to do this? My searching hasn't turned up the answer yet.
Solved! Go to Solution.
This can be done with the arcpy.nax python module using the NetworkDataset class: NetworkDataset—ArcGIS Pro | Documentation
This can be done with the arcpy.nax python module using the NetworkDataset class: NetworkDataset—ArcGIS Pro | Documentation
Thanks Melinda. Does this mean there isn't a C# option? We have some custom plug-ins written in C# and the preference would be to make the calls in C#. But if that's not possible, we'll use Python.
That's correct, there is no C# option, just the python.
Thanks, we will go with Python then.