我正在尝试使用 python 从文件中绘制数据matplotlib
。
该文件包含2
列。第一列有hour:minute:seconds
. 第二列有degree:arc minutes:arc seconds
。
因为hour:minute:seconds
我正在使用datetime.strptime('%H:%M:%S.%f')
. degree:arc minutes:arc seconds
Python 或 Matplotlib 中 是否有类似的功能?
以下是数据文件的示例:
00:06:04.8 -70:00:00.0
00:07:01.7 -66:00:00.0
00:14:17.7 -59:00:00.0
00:23:00.0 -52:00:00.0
00:23:50.3 -49:00:00.0
00:23:54.4 -29:00:00.0
00:23:59.4 -28:00:00.0
00:24:03.7 -26:00:00.0
00:24:03.8 -14:00:00.0
00:24:03.9 +25:00:00.0
00:30:30.10 +30:00:00.0