我正在尝试迭代使用 numpy.linspace 生成的值数组:

slX = numpy.linspace(obsvX, flightX, numSPts)
slY = np.linspace(obsvY, flightY, numSPts)

for index,point in slX:
    yPoint = slY[index]
    arcpy.AddMessage(yPoint)

这段代码在我的办公室计算机上运行良好,但今天早上我在家中的另一台计算机上工作时出现了以下错误:

File "C:\temp\gssm_arcpy.1.0.3.py", line 147, in AnalyzeSightLine
  for index,point in slX:
TypeError: 'numpy.float64' object is not iterable

slX只是一个浮点数组,脚本在打印内容时没有问题——只是,显然是在迭代它们。

答案

numpy.linspace()给你一个一维 NumPy 数组。

>>> my_array = numpy.linspace(1, 10, 10)
>>> my_array
array([  1.,   2.,   3.,   4.,   5.,   6.,   7.,   8.,   9.,  10.])

所以:

for index,point in my_array

无法工作。

>>> two_d = numpy.array([[1, 2], [4, 5]])
>>> two_d
array([[1, 2], [4, 5]])

现在你可以这样做:

>>> for x, y in two_d:
    print(x, y)

1 2
4 5

来自: stackoverflow.com