在做设计过程中,有时需要将度分秒格式的经纬度转为十进制的格式,转换的方法有很多种,arcgis就能很快进行转换,下面是操作教程笔记,方便自己查找使用。
以下是arcgis字段计算器的python预逻辑脚本代码:
def ss(a):
index1 = a.find(u'°')
index2 = a.find(u'′')
index3 = a.find(u'″')
degree = float(a[0:index1])
minutes = float(a[index1 + 1:index2])
seconds = float(a[index2 + 1:index3])
result = degree + minutes / 60 + seconds / 3600
return result
案例如图所示