I'm currently creating a Network Dataset and building it using Python's arcpy functionality. There's no issue with creating the Network Dataset, but an error occurs during the build process.
Using the code above, I created a test.gdb file and created a feature class with the same coordinate system as the road.shp file
Then, I successfully created the Network Dataset using a Template.xml file. However, the arcpy.na.BuildNetwork function doesn't seem to be working properly. What could be the issue?
WARNING: Unable to load code page translation table c:\program files\arcgis\pro\\locale\codepage\949.txt.
WARNING: Unable to load code page translation table c:\program files\arcgis\pro\\locale\codepage\949.txt.
Code page conversion is off for writing data into files.
Code page conversion is off for writing data into files.
WARNING: Unable to load code page translation table c:\program files\arcgis\pro\\locale\codepage\949.txt.
WARNING: Unable to load code page translation table c:\program files\arcgis\pro\\locale\codepage\949.txt.
Code page conversion is off for reading data from files.
Code page conversion is off for reading data from files.
arcpy.na.BuildNetwork(network)
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\na.py", line 5607, in BuildNetwork
raise e
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\na.py", line 5603, in BuildNetwork
gp.BuildNetwork_na(*gp_fixargs((in_network_dataset, force_full_build), True))
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\geoprocessing\_base.py", line 532, in <lambda>
return lambda *args: val(*gp_fixargs(args, True))
This is the whole error massage
Please help me