Python - 将UTM坐标数组转换为Geo

时间:2017-09-28 12:47:19

标签: python python-2.7

我有以下转换坐标的方法:

def UTM_to_Geo(x, y):
...
return [x,y]

我有一个名为locations的x和y(2d数组)数组。 我可以使用map

调用数组中每个项目的方法

1 个答案:

答案 0 :(得分:0)

这应该可以解决问题:

geos=list(map(lambda l: UTM_toGeo(l[0], l[1]), locations))