mirror of
https://github.com/davidhoness/sstv_decoder.git
synced 2025-12-06 04:12:01 +01:00
Use UTC for .raw file time stamp
This commit is contained in:
parent
223af64178
commit
c192cc169c
|
|
@ -87,7 +87,7 @@ while running:
|
|||
alt = math.degrees(iss.tle.alt)
|
||||
|
||||
if alt > 0: # iss is flying over our location
|
||||
fn = datetime.datetime.now().strftime(FILE_FMT)
|
||||
fn = datetime.datetime.utcnow().strftime(FILE_FMT)
|
||||
f = open(fn, "wb")
|
||||
proc = subprocess.Popen(rtl_cmd, stdout=f)
|
||||
while alt > 0:
|
||||
|
|
|
|||
Loading…
Reference in a new issue