ra& dec从hh转换:mm:ss到度

时间:2016-10-06 13:02:11

标签: python awk

我有一个包含ra&的文件dec in hh:mm:ss格式。 假设文件名是" coord.txt"它的内容是:

  

06 40 34.8 10 04 22     06 41 11.6 10 02 24     06 40 50.9 10 01 43

06 40 34.8是ra,10 04 22是dec 如何使用python或任何其他程序将其转换为度数。

2 个答案:

答案 0 :(得分:0)

s = "06 40 34.8 10 04 22 06 41 11.6 10 02 24 06 40 50.9 10 01 43"
# or s = f.readline()
d = [float(i) for i in s.split()] 
# d = [6.0, 40.0, 34.8, 10.0, 4.0, 22.0, 6.0, 41.0, 11.6, 10.0, 2.0, 24.0, 6.0, 40.0, 50.9, 10.0, 1.0, 43.0]

d2 = [d[i:i+3] for i in range(0, len(d), 3)] 
# d2 = [[6.0, 40.0, 34.8], [10.0, 4.0, 22.0], [6.0, 41.0, 11.6], [10.0, 2.0, 24.0], [6.0, 40.0, 50.9], [10.0, 1.0, 43.0]]

d3 = [(s/3600 + m/60 + h) * 15 for h,m,s in d2]

d4 = [d3[i:i+2] for i in range(0, len(d3), 2)]

print d4
# [[100.145, 151.09166666666667], [100.29833333333333, 150.6], [100.21208333333334, 150.42916666666667]]

答案 1 :(得分:0)

awk

中实施@ M.Danilchenko的逻辑
$ awk '{for(i=1;i<NF;i+=3) a[++c]=($i*15+($(i+1)+$(i+2)/60)/4);
        for(i=1;i<c;i+=2) printf "(%.3f,%.3f) ", a[i],a[i+1]; 
        print ""}' file

(100.145,151.092) (100.298,150.600) (100.212,150.429)

,其中

$ cat file
06 40 34.8 10 04 22 06 41 11.6 10 02 24 06 40 50.9 10 01 43