Enhance precision in sdate display

master
nirenjan 2013-02-19 15:00:03 -08:00
parent 1ffb0a9abe
commit c64326cd06
1 changed files with 1 additions and 1 deletions

2
sdate
View File

@ -12,5 +12,5 @@ t = time.time()
jd = (t / 86400.0 + 40587.5) jd = (t / 86400.0 + 40587.5)
# Use the idea that 10 Julian days is equal to 1 stardate # Use the idea that 10 Julian days is equal to 1 stardate
print "%05.1f" % jd print "%05.2f" % jd