0

pyproj.Geod用来计算地理距离,我想用物体定义的地球直径进行另一个计算。

当没有__getitem__属性并且对象不可索引时,有没有办法从中提取值?

调用对象:

import pyproj
g = pyproj.Geod(ellps='WGS84') # Use WGS84 ellipsoid

尝试通过参数名称调用它:

print g['a'] # the diameter parameter
TypeError: 'Geod' object has no attribute '__getitem__'

测试索引:

print g[0] 
TypeError: 'Geod' object does not support indexing

更新:调用print dir(g)

print dir(g)
['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_fwd', '_inv', '_npts', 'a', 'b', 'es', 'f', 'fwd', 'initstring', 'inv', 'npts', 'sphere']
4

1 回答 1

1

您在寻找getattr内置功能吗?

于 2013-03-19T11:19:04.710 回答