The Multiple Ring Buffer tool generates unexpected output when more than two distances are specified and the dissolve option is set to “ALL” (ArcView and ArcEditor license level only).
上次发布: August 25, 2014ArcGIS for Desktop
漏洞 ID 编号
NIM068265
已提交
May 17, 2011
上次修改时间
June 5, 2024
适用范围
ArcGIS for Desktop
找到的版本
10.0
修正版本
ArcGISruntime 1.0
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
解决办法
Modifying the codeblock in line 157 of <a href="http://MultiRingBuffer.py" target="_blank">MultiRingBuffer.py</a> corrected the behavior. This was confirmed, but extensive testing was not done.Replace:codeblock = '''def pullDistance(distL, *fids):return min([i for i, j in zip(distL, fids) if j != -1])'''With:codeblock = '''def pullDistance(distL, *fids):return min([i for i, j in zip(distL, fids) if j == 1])'''