The 'Create LRS Network From Existing Dataset' tool in ArcGIS Pro does not work when the geographic coordinate system is set for an input feature class.
上次发布: February 23, 2021ArcGIS Pro
漏洞 ID 编号
BUG-000137002
已提交
January 26, 2021
上次修改时间
June 5, 2024
适用范围
ArcGIS Pro
找到的版本
2.7
操作系统
Windows OS
操作系统版本
10.0
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
In a Python script, when a spatial reference is created by WKID (arcpy.SpatialReference(4326)), all of its properties such as XY, M tolerances, and resolutions have default values.
For M-tolerance, it is 0.001. The M units are derived based on the following parameters: XY-tolerance value, XY-tolerance units, and M-tolerance value. M-tolerance value must be converted properly as described in the documentation.
The Python script must update the default values for M-tolerance and M-resolution. This is done by adding a couple of lines of code in the beginning:
# METERSarcpy.env.MResolution = 0.00009988805323293938arcpy.env.MTolerance = 0.00099888053232939384or# MILESarcpy.env.MResolution = 0.000000062067434592500arcpy.env.MTolerance = 0.000000620674345925004