Closed bourque closed 7 years ago
Currently the database only stores up to the first decimal of MJD values (e.g. 52425.3), which is not useful at all.
52425.3
This issue was easily solved by using sqlalchemy.types.Float(precision=32) instead of sqlalchemy.Float().
sqlalchemy.types.Float(precision=32)
sqlalchemy.Float()
Currently the database only stores up to the first decimal of MJD values (e.g.
52425.3
), which is not useful at all.