The arcpy.Describe has an attribute isBuildable, but not the buid status.
Solved! Go to Solution.
In ArcGIS Pro (starting with 2.4), you can access a network dataset's build status from standalone python using the NetworkDataset class's isBuilt property. There's another property to get the network's build timestamp.
through arcpy it is mostly about getting properties
then that leaves you with the code snippets for the network analyst tool in arctoolbox...
if a function has been implemented as a tool, then the code snippet will help. If it doesn't exist as a tool or through arcpy, it isn't available yet
Thank you!
By the way, is it available to create a network dataset automatically using python? I found that lots of Network Dataset properties are Read Only.
That is by design. You would have to examine the arcpy and tool model for Pro to see if that offers any further options.
Dear Leo Deng,
were you able to solve this issue - to find if network dataset was built or not with arcpy?
Working on the same, and cannot find a way, how to do it.
Thank you.
Regards,
Vladimir
In ArcGIS Pro (starting with 2.4), you can access a network dataset's build status from standalone python using the NetworkDataset class's isBuilt property. There's another property to get the network's build timestamp.