标签: python python-2.7
我有以下转换坐标的方法:
def UTM_to_Geo(x, y): ... return [x,y]
我有一个名为locations的x和y(2d数组)数组。 我可以使用map?
locations
map
答案 0 :(得分:0)
这应该可以解决问题:
geos=list(map(lambda l: UTM_toGeo(l[0], l[1]), locations))