diff --git a/README.md b/README.md index 2d08681..58c6e8d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This package ships the Navigation and Ancillary Information Facility's low accur **This is not an official NAIF package**. It is an automatically generated mirror of the file so that it is installable via `pip`. -The current version of the file released on 2023 JUN 03 spans the following times: 2020 JAN 01 00:01:09.183 TDB - 2099 AUG 25 00:01:09.182 TDB +The current version of the file released on 2024 AUG 28 spans the following times: 2020 JAN 01 00:01:09.183 TDB - 2099 AUG 27 00:01:09.182 TDB ## Installation diff --git a/naif_eop_predict/__init__.py b/naif_eop_predict/__init__.py index 4f9bc4b..48ec8c4 100644 --- a/naif_eop_predict/__init__.py +++ b/naif_eop_predict/__init__.py @@ -1,4 +1,4 @@ from importlib.resources import files -eop_predict = files("naif_eop_predict").joinpath("earth_200101_990825_predict.bpc").as_posix() -_eop_predict_md5 = files("naif_eop_predict").joinpath("earth_200101_990825_predict.md5").as_posix() +eop_predict = files("naif_eop_predict").joinpath("earth_200101_990827_predict.bpc").as_posix() +_eop_predict_md5 = files("naif_eop_predict").joinpath("earth_200101_990827_predict.md5").as_posix() diff --git a/naif_eop_predict/fetch.py b/naif_eop_predict/fetch.py index 4eb70d3..be4b887 100644 --- a/naif_eop_predict/fetch.py +++ b/naif_eop_predict/fetch.py @@ -4,9 +4,9 @@ import requests -URL = "https://naif.jpl.nasa.gov/pub/naif/generic_kernels/pck/earth_200101_990825_predict.bpc" -FILE = os.path.join(os.path.dirname(__file__), "earth_200101_990825_predict.bpc") -MD5_FILE = os.path.join(os.path.dirname(__file__), "earth_200101_990825_predict.md5") +URL = "https://naif.jpl.nasa.gov/pub/naif/generic_kernels/pck/earth_200101_990827_predict.bpc" +FILE = os.path.join(os.path.dirname(__file__), "earth_200101_990827_predict.bpc") +MD5_FILE = os.path.join(os.path.dirname(__file__), "earth_200101_990827_predict.md5") def fetch_file(url: str, output_file: str): diff --git a/pyproject.toml b/pyproject.toml index 79e7a71..41f325f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "naif_eop_predict" -version = "2023.06.03" +version = "2024.08.28" authors = [ {name = "B612 Asteroid Institute", email = "info@b612foundation.org"}, ] @@ -22,4 +22,4 @@ tests = [ include-package-data = true [tool.setuptools.package-data] -naif_eop_predict = ["naif_eop_predict/earth_200101_990825_predict.bpc", "naif_eop_predict/earth_200101_990825_predict.md5"] +naif_eop_predict = ["naif_eop_predict/earth_200101_990827_predict.bpc", "naif_eop_predict/earth_200101_990827_predict.md5"]