v5.0.0
New geodezyx version 5.0 !
v5.0.0, 2025-08-28
Breaking changes:
-
(Much) faster import. The main
geodezyxdoesn't import all modules per default anymore. Thus, favor the following import methods:from geodezyx import <module>import geodezyx.<module>
-
We recommend
gzyx_<module>as import alias, e.g.:from geodezyx import files_rw as gzyx_files_rwimport geodezyx.files_rw as gzyx_files_rw
-
Two exceptions: widely-used
convandutilssubmodules remain loaded by the maingeodezyxmodule.
Thus,import geodezyxwill only loadconvandutilsmodules. -
NB:
from geodezyx import *still load all modules. But its use is highly discouraged (very slow). -
PEP8 compliance:
convmodule functions are now PEP8 compliant, e.g. upper case function names are now lower case. Other modules are now PEP-8 compliant.- exemples:
dt2MJD>dt2_mjd,MJD2dt>mjd2_dt
- exemples:
-
A lot of minor improvements and bug corrections
-
add
gnss_edumodule, for GNSS processing for educational purposes -
update GINS runner, for SPOTGINS/singugins project
Full Changelog: v5.0.0-post3...v5.0.0-post4