File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -72,11 +72,11 @@ def __init__(self, filePath):
72
72
print (f"Time Resolution: { self .secPerPx } sec/px" )
73
73
print (f"Frequency Resolution: { self .hzPerPx } Hz/px" )
74
74
75
- # recording start time
76
- dt = datetime .datetime (
77
- int (filebytes [74 ])+ 2000 , int (filebytes [75 ]), int (filebytes [76 ]),
78
- int (filebytes [77 ]), int (filebytes [78 ]), int (filebytes [79 ]))
79
- print (f"Recording start (UTC): { dt } " )
75
+ # recording start time - no longer used
76
+ # dt = datetime.datetime(
77
+ # int(filebytes[74])+2000, int(filebytes[75]), int(filebytes[76]),
78
+ # int(filebytes[77]), int(filebytes[78]), int(filebytes[79]))
79
+ # print(f"Recording start (UTC): {dt}")
80
80
81
81
# data storage
82
82
self .firstDataByte = struct .unpack ("<l" , filebytes [80 :84 ])[0 ]
You can’t perform that action at this time.
0 commit comments