A data package for the Skyfield astronomy library, providing essential ephemeris files (e.g., de421.bsp) and Earth orientation data (finals2000A.all) that automatically expire and can be refreshed. Current version 7.0.0 requires Python >=2.6, !=3.0-3.7; supports Python 3.11, 3.12. Releases are irregular, driven by data file updates.
pip install skyfield-dataVerified import paths — ran on the pinned version, not inferred.
This snippet imports Skyfield's loader and the data path from skyfield-data, then loads the included de421.bsp file.
Ensure your Skyfield timescale initialization does not rely on deltat files; upgrade skyfield-data to 3.0.0+ and let Skyfield use the IERS data automatically.
Remove any manual loading of deltat files; upgrade to skyfield>=1.31 and skyfield-data>=2.0.0.
Call get_skyfield_data_path() with expire=True to force a refresh, or catch the warning and re-download using the included download script.
Use load_data('de430.bsp') after downloading the file manually, or point the loader to a custom directory.Run 'pip install skyfield-data' and use 'from skyfield_data import get_skyfield_data_path'
Run the download script: 'python -m skyfield_data.download' or pass expire=True to get_skyfield_data_path()