pyTMD 2.2.3__tar.gz → 2.2.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. {pytmd-2.2.3 → pytmd-2.2.5}/.gitignore +2 -0
  2. {pytmd-2.2.3 → pytmd-2.2.5}/CITATION.cff +2 -2
  3. {pytmd-2.2.3 → pytmd-2.2.5}/PKG-INFO +1 -1
  4. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/arguments.py +375 -71
  5. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/astro.py +28 -15
  6. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/compute.py +21 -10
  7. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/compute_tide_corrections.py +1 -1
  8. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/data/doodson.json +2 -2
  9. pytmd-2.2.5/pyTMD/ellipse.py +196 -0
  10. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/io/OTIS.py +58 -15
  11. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/io/model.py +112 -39
  12. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/math.py +4 -3
  13. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/predict.py +22 -7
  14. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/solve/constants.py +38 -10
  15. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD.egg-info/PKG-INFO +1 -1
  16. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD.egg-info/SOURCES.txt +0 -1
  17. {pytmd-2.2.3 → pytmd-2.2.5}/scripts/reduce_OTIS_files.py +2 -0
  18. pytmd-2.2.5/version.txt +1 -0
  19. pytmd-2.2.3/pyTMD/ellipse.py +0 -143
  20. pytmd-2.2.3/scripts/usap_cats_tides.py +0 -137
  21. pytmd-2.2.3/version.txt +0 -1
  22. {pytmd-2.2.3 → pytmd-2.2.5}/CODE_OF_CONDUCT.rst +0 -0
  23. {pytmd-2.2.3 → pytmd-2.2.5}/CONTRIBUTORS.rst +0 -0
  24. {pytmd-2.2.3 → pytmd-2.2.5}/LICENSE +0 -0
  25. {pytmd-2.2.3 → pytmd-2.2.5}/MANIFEST.in +0 -0
  26. {pytmd-2.2.3 → pytmd-2.2.5}/README.rst +0 -0
  27. {pytmd-2.2.3 → pytmd-2.2.5}/providers/AVISO.json +0 -0
  28. {pytmd-2.2.3 → pytmd-2.2.5}/providers/ESR.json +0 -0
  29. {pytmd-2.2.3 → pytmd-2.2.5}/providers/GSFC.json +0 -0
  30. {pytmd-2.2.3 → pytmd-2.2.5}/providers/README.rst +0 -0
  31. {pytmd-2.2.3 → pytmd-2.2.5}/providers/TPXO.json +0 -0
  32. {pytmd-2.2.3 → pytmd-2.2.5}/providers/_model_to_database.py +0 -0
  33. {pytmd-2.2.3 → pytmd-2.2.5}/providers/_providers_to_database.py +0 -0
  34. {pytmd-2.2.3 → pytmd-2.2.5}/providers/_update_providers.py +0 -0
  35. {pytmd-2.2.3 → pytmd-2.2.5}/providers/providers.json +0 -0
  36. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/__init__.py +0 -0
  37. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/crs.py +0 -0
  38. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/data/ce1973_tab1.txt +0 -0
  39. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/data/ct1971_tab5.txt +0 -0
  40. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/data/d1921_tab.txt +0 -0
  41. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/data/database.json +0 -0
  42. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/data/opoleloadcoefcmcor.txt.gz +0 -0
  43. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/data/tab5.2e.txt +0 -0
  44. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/data/tab5.3a.txt +0 -0
  45. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/data/tab5.3b.txt +0 -0
  46. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/interpolate.py +0 -0
  47. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/io/ATLAS.py +0 -0
  48. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/io/FES.py +0 -0
  49. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/io/GOT.py +0 -0
  50. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/io/IERS.py +0 -0
  51. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/io/__init__.py +0 -0
  52. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/io/constituents.py +0 -0
  53. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/solve/__init__.py +0 -0
  54. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/spatial.py +0 -0
  55. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/tools.py +0 -0
  56. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/utilities.py +0 -0
  57. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD/version.py +0 -0
  58. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD.egg-info/dependency_links.txt +0 -0
  59. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD.egg-info/requires.txt +0 -0
  60. {pytmd-2.2.3 → pytmd-2.2.5}/pyTMD.egg-info/top_level.txt +0 -0
  61. {pytmd-2.2.3 → pytmd-2.2.5}/pyproject.toml +0 -0
  62. {pytmd-2.2.3 → pytmd-2.2.5}/scripts/arcticdata_tides.py +0 -0
  63. {pytmd-2.2.3 → pytmd-2.2.5}/scripts/aviso_fes_tides.py +0 -0
  64. {pytmd-2.2.3 → pytmd-2.2.5}/scripts/gsfc_got_tides.py +0 -0
  65. {pytmd-2.2.3 → pytmd-2.2.5}/scripts/verify_box_tpxo.py +0 -0
  66. {pytmd-2.2.3 → pytmd-2.2.5}/setup.cfg +0 -0
  67. {pytmd-2.2.3 → pytmd-2.2.5}/setup.py +0 -0
@@ -42,6 +42,8 @@ wheels/
42
42
  *.egg
43
43
  .pytest_cache
44
44
  pythonenv*/
45
+ venv/
46
+ *build-commands.txt
45
47
  setup-miniconda-patched-environment.yml
46
48
  # OS generated files #
47
49
  ######################
@@ -36,8 +36,8 @@ url: 'https://pytmd.readthedocs.io'
36
36
  repository: 'https://pypi.org/project/pyTMD'
37
37
  repository-artifact: 'https://anaconda.org/conda-forge/pytmd'
38
38
  doi: "10.5281/zenodo.5555395"
39
- version: "2.2.3"
40
- date-released: "2025-04-02"
39
+ version: "2.2.5"
40
+ date-released: "2025-06-23"
41
41
  keywords:
42
42
  - Ocean Tides
43
43
  - Load Tides
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyTMD
3
- Version: 2.2.3
3
+ Version: 2.2.5
4
4
  Summary: Python-based tidal prediction software for estimating ocean, load, solid Earth and pole tides
5
5
  Author: Tyler Sutterley
6
6
  Author-email: tsutterl@uw.edu