Changeset 25c80a7 in ammosreader
- Timestamp:
- 05/18/23 13:09:26 (2 years ago)
- Branches:
- AmmosSource, guix
- Children:
- 338e792
- Parents:
- 14d7f7d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ammosreader/PDW.py
r14d7f7d r25c80a7 32 32 unix_time = np.datetime64('now', 'ns').astype(int) 33 33 print("Unix time", unix_time) 34 if unix_time > nanoseconds:34 if nanoseconds >= unix_time: 35 35 raise OverflowError("Timestamp invalid") 36 36 time_of_arrival = np.datetime64(nanoseconds, 'ns')
Note:
See TracChangeset
for help on using the changeset viewer.