Changing host for ``deltat.*`` files

Files were hosted by a HTTP server that was shut down in favor of an anonymous FTP server.
This commit is contained in:
Bruno Bord 2020-05-05 09:20:27 +02:00
parent b3b09686a5
commit ec0cb6afc9
No known key found for this signature in database
GPG Key ID: 9499EA6788BF80A1
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## master (unreleased)
* Added ``expiration_limit`` argument for ``get_skyfield_data_path`` function. Enables to shift the expiration date limit by "n" days.
* USNO file serving host has changed. Pointing now at ``ftp://cddis.nasa.gov/products/iers/`` for ``deltat.*`` files.
## 0.1.0 (2019-10-04)

View File

@ -12,7 +12,7 @@ from termcolor import colored
init()
JPL = "ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp"
USNO = "http://maia.usno.navy.mil/ser7"
USNO = "ftp://cddis.nasa.gov/products/iers/"
IERS = "https://hpiers.obspm.fr/iers/bul/bulc"
__DATA_PATH = abspath(join(dirname(__file__), "skyfield_data", "data"))