eo-tides 0.0.20__py3-none-any.whl → 0.0.22__py3-none-any.whl
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.
- eo_tides/__init__.py +46 -0
- eo_tides/eo.py +519 -0
- eo_tides/model.py +131 -449
- eo_tides/stats.py +311 -6
- eo_tides/validation.py +3 -3
- eo_tides-0.0.22.dist-info/LICENSE +201 -0
- {eo_tides-0.0.20.dist-info → eo_tides-0.0.22.dist-info}/METADATA +48 -29
- eo_tides-0.0.22.dist-info/RECORD +11 -0
- eo_tides-0.0.20.dist-info/LICENSE +0 -21
- eo_tides-0.0.20.dist-info/RECORD +0 -10
- {eo_tides-0.0.20.dist-info → eo_tides-0.0.22.dist-info}/WHEEL +0 -0
- {eo_tides-0.0.20.dist-info → eo_tides-0.0.22.dist-info}/top_level.txt +0 -0
@@ -1,37 +1,54 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: eo-tides
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.22
|
4
4
|
Summary: Tide modelling tools for large-scale satellite earth observation analysis
|
5
5
|
Author-email: Robbi Bishop-Taylor <Robbi.BishopTaylor@ga.gov.au>
|
6
6
|
Project-URL: Homepage, https://GeoscienceAustralia.github.io/eo-tides/
|
7
7
|
Project-URL: Repository, https://github.com/GeoscienceAustralia/eo-tides
|
8
8
|
Project-URL: Documentation, https://GeoscienceAustralia.github.io/eo-tides/
|
9
|
-
Keywords:
|
10
|
-
|
9
|
+
Keywords: earth observation,tide modelling,tide modeling,satellite data,coastal analysis,oceanography,remote sensing
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
12
|
+
Classifier: Topic :: Scientific/Engineering
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: GIS
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Oceanography
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Visualization
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Image Processing
|
17
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
22
|
+
Requires-Python: <4.0,>=3.9
|
11
23
|
Description-Content-Type: text/markdown
|
12
24
|
License-File: LICENSE
|
13
|
-
Requires-Dist:
|
14
|
-
Requires-Dist:
|
15
|
-
Requires-Dist:
|
16
|
-
Requires-Dist:
|
17
|
-
Requires-Dist:
|
25
|
+
Requires-Dist: colorama >=0.4.3
|
26
|
+
Requires-Dist: geopandas >=0.10.0
|
27
|
+
Requires-Dist: matplotlib >=3.8.0
|
28
|
+
Requires-Dist: numpy >=1.26.0
|
29
|
+
Requires-Dist: odc-geo >=0.4.7
|
30
|
+
Requires-Dist: pandas >=2.2.0
|
31
|
+
Requires-Dist: pyproj >=3.6.1
|
18
32
|
Requires-Dist: pyTMD ==2.1.6
|
19
|
-
Requires-Dist: scikit-learn
|
20
|
-
Requires-Dist: scipy
|
21
|
-
Requires-Dist: shapely
|
22
|
-
Requires-Dist: tqdm
|
33
|
+
Requires-Dist: scikit-learn >=1.4.0
|
34
|
+
Requires-Dist: scipy >=1.11.2
|
35
|
+
Requires-Dist: shapely >=2.0.6
|
36
|
+
Requires-Dist: tqdm >=4.55.0
|
37
|
+
Requires-Dist: xarray >=2022.3.0
|
23
38
|
Provides-Extra: notebooks
|
24
|
-
Requires-Dist: odc-stac ; extra == 'notebooks'
|
25
|
-
Requires-Dist: pystac-client ; extra == 'notebooks'
|
26
|
-
Requires-Dist: folium ; extra == 'notebooks'
|
27
|
-
Requires-Dist:
|
39
|
+
Requires-Dist: odc-stac >=0.3.10 ; extra == 'notebooks'
|
40
|
+
Requires-Dist: pystac-client >=0.8.3 ; extra == 'notebooks'
|
41
|
+
Requires-Dist: folium >=0.16.0 ; extra == 'notebooks'
|
42
|
+
Requires-Dist: planetary-computer >=1.0.0 ; extra == 'notebooks'
|
28
43
|
|
29
|
-
# `eo-tides
|
44
|
+
# `eo-tides`: Tide modelling tools for large-scale satellite earth observation analysis
|
45
|
+
|
46
|
+
<img align="right" width="200" src="docs/assets/eo-tides-logo.gif" alt="eo-tides logo" style="margin-right: 40px;">
|
30
47
|
|
31
48
|
[](https://pypi.org/project/eo-tides/)
|
32
49
|
[](https://github.com/GeoscienceAustralia/eo-tides/actions/workflows/main.yml?query=branch%3Amain)
|
50
|
+

|
33
51
|
[](https://codecov.io/gh/GeoscienceAustralia/eo-tides)
|
34
|
-
[](https://img.shields.io/github/commit-activity/m/GeoscienceAustralia/eo-tides)
|
35
52
|
[](https://img.shields.io/github/license/GeoscienceAustralia/eo-tides)
|
36
53
|
|
37
54
|
- **Github repository**: <https://github.com/GeoscienceAustralia/eo-tides/>
|
@@ -40,18 +57,20 @@ Requires-Dist: matplotlib ; extra == 'notebooks'
|
|
40
57
|
> [!CAUTION]
|
41
58
|
> This package is a work in progress, and not currently ready for operational use.
|
42
59
|
|
43
|
-
|
60
|
+
`eo-tides` provides powerful parallelized tools for integrating satellite Earth observation data with tide modelling. 🛠️🌊🛰️
|
44
61
|
|
45
|
-
`eo-tides` combines advanced tide modelling functionality from the [`pyTMD`](https://pytmd.readthedocs.io/en/latest/) package
|
62
|
+
`eo-tides` combines advanced tide modelling functionality from the [`pyTMD`](https://pytmd.readthedocs.io/en/latest/) package with [`pandas`](https://pandas.pydata.org/docs/index.html), [`xarray`](https://docs.xarray.dev/en/stable/) and [`odc-geo`](https://odc-geo.readthedocs.io/en/latest/), providing a suite of flexible tools for efficient analysis of coastal and ocean Earth observation data – from regional, continental, to global scale.
|
46
63
|
|
47
64
|
These tools can be applied to petabytes of freely available satellite data (e.g. from [Digital Earth Australia](https://knowledge.dea.ga.gov.au/) or [Microsoft Planetary Computer](https://planetarycomputer.microsoft.com/)) loaded via Open Data Cube's [`odc-stac`](https://odc-stac.readthedocs.io/en/latest/) or [`datacube`](https://opendatacube.readthedocs.io/en/latest/) packages, supporting coastal and ocean earth observation analysis for any time period or location globally.
|
48
65
|
|
66
|
+

|
67
|
+
|
49
68
|
## Highlights
|
50
69
|
|
51
70
|
- 🌊 Model tides from multiple global ocean tide models in parallel, and return tide heights in standardised `pandas.DataFrame` format for further analysis
|
52
71
|
- 🛰️ "Tag" satellite data with tide height and stage based on the exact moment of image acquisition
|
53
|
-
- 🌐 Model tides for every individual satellite pixel, producing three-dimensional "tide height" `xarray`-format datacubes that can be
|
54
|
-
- 🎯 Combine multiple tide models into a single locally-optimised "ensemble" model informed by satellite altimetry and satellite-observed patterns of tidal inundation
|
72
|
+
- 🌐 Model tides for every individual satellite pixel, producing three-dimensional "tide height" `xarray`-format datacubes that can be integrated with satellite data
|
73
|
+
<!-- - 🎯 Combine multiple tide models into a single locally-optimised "ensemble" model informed by satellite altimetry and satellite-observed patterns of tidal inundation -->
|
55
74
|
- 📈 Calculate statistics describing local tide dynamics, as well as biases caused by interactions between tidal processes and satellite orbits
|
56
75
|
- 🛠️ Validate modelled tides using measured sea levels from coastal tide gauges (e.g. [GESLA Global Extreme Sea Level Analysis](https://gesla.org/))
|
57
76
|
|
@@ -59,18 +78,18 @@ These tools can be applied to petabytes of freely available satellite data (e.g.
|
|
59
78
|
|
60
79
|
`eo-tides` supports [all ocean tide models supported by `pyTMD`](https://pytmd.readthedocs.io/en/latest/getting_started/Getting-Started.html#model-database). These include:
|
61
80
|
|
62
|
-
- [Empirical Ocean Tide model](https://doi.org/10.5194/essd-13-3869-2021) (
|
63
|
-
- [Finite Element Solution tide models](https://doi.org/10.5194/os-2020-96) (
|
64
|
-
- [TOPEX/POSEIDON global tide models](https://www.tpxo.net/global) (
|
65
|
-
- [Global Ocean Tide models](https://doi.org/10.1002/2016RG000546) (
|
66
|
-
- [Hamburg direct data Assimilation Methods for Tides models](https://doi.org/10.1002/2013JC009766) (
|
81
|
+
- [Empirical Ocean Tide model](https://doi.org/10.5194/essd-13-3869-2021) (EOT20)
|
82
|
+
- [Finite Element Solution tide models](https://doi.org/10.5194/os-2020-96) (FES2022, FES2014, FES2012)
|
83
|
+
- [TOPEX/POSEIDON global tide models](https://www.tpxo.net/global) (TPXO10, TPXO9, TPXO8)
|
84
|
+
- [Global Ocean Tide models](https://doi.org/10.1002/2016RG000546) (GOT5.6, GOT5.5, GOT4.10, GOT4.8, GOT4.7)
|
85
|
+
- [Hamburg direct data Assimilation Methods for Tides models](https://doi.org/10.1002/2013JC009766) (HAMTIDE11)
|
67
86
|
|
68
|
-
For instructions on how to set up these models for use in `eo-tides`, refer to [Setting up tide models](
|
87
|
+
For instructions on how to set up these models for use in `eo-tides`, refer to [Setting up tide models](setup.md).
|
69
88
|
|
70
89
|
## Citing `eo-tides`
|
71
90
|
|
72
91
|
To cite `eo-tides` in your work, please use the following citation:
|
73
92
|
|
74
93
|
```
|
75
|
-
Bishop-Taylor, R., Sagar, S., Phillips, C., & Newey, V. (2024). eo-tides: Tide modelling tools for large-scale satellite earth observation analysis
|
94
|
+
Bishop-Taylor, R., Sagar, S., Phillips, C., & Newey, V. (2024). eo-tides: Tide modelling tools for large-scale satellite earth observation analysis. https://github.com/GeoscienceAustralia/eo-tides
|
76
95
|
```
|
@@ -0,0 +1,11 @@
|
|
1
|
+
eo_tides/__init__.py,sha256=TWmQNplePCcNAlua5WI_H7SShkWNk-Gd3X70EDEknSo,1557
|
2
|
+
eo_tides/eo.py,sha256=K2Ubxvp5yYxVwAOaUZDHCIV_AppRuqMiQRtArhe7YOM,22480
|
3
|
+
eo_tides/model.py,sha256=l7RmzRqr_-yrNMVwW0bisCSnxR9NFHrwWda6WvQHZKU,33129
|
4
|
+
eo_tides/stats.py,sha256=-piIpX3SmZL8DJntSLORRozyAJ1-od49GU-p56Cs_lc,13663
|
5
|
+
eo_tides/utils.py,sha256=l9VXJawQzaRBYaFMsP8VBeaN5VA3rFDdzcvF7Rk04Vc,5620
|
6
|
+
eo_tides/validation.py,sha256=yFuIjAxS9qf097_n4DHWG4AOa6n4nt1HGibUkOkJW6o,11437
|
7
|
+
eo_tides-0.0.22.dist-info/LICENSE,sha256=owxWsXViCL2J6Ks3XYhot7t4Y93nstmXAT95Zf030Cc,11350
|
8
|
+
eo_tides-0.0.22.dist-info/METADATA,sha256=Ae6NT_B98l4eZauFon-YBdb04z02JKRhzI6cxfvMBxc,6452
|
9
|
+
eo_tides-0.0.22.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
10
|
+
eo_tides-0.0.22.dist-info/top_level.txt,sha256=lXZDUUM1DlLdKWHRn8zdmtW8Rx-eQOIWVvt0b8VGiyQ,9
|
11
|
+
eo_tides-0.0.22.dist-info/RECORD,,
|
@@ -1,21 +0,0 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2024 Geoscience Australia
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
eo_tides-0.0.20.dist-info/RECORD
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
eo_tides/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
eo_tides/model.py,sha256=wo2bsWEefpTFd3KrkzZelIU4FV_noCNJjMQs2arwypk,46021
|
3
|
-
eo_tides/stats.py,sha256=Lzo46pWUhox3ZUnMLtyLzqZ9FrCNG6nJ6iS5IpqEsy8,158
|
4
|
-
eo_tides/utils.py,sha256=l9VXJawQzaRBYaFMsP8VBeaN5VA3rFDdzcvF7Rk04Vc,5620
|
5
|
-
eo_tides/validation.py,sha256=kpYGHOeK-YP11c3tHt9l5_8IvOHF1SAJP79PXA7i-Vs,11434
|
6
|
-
eo_tides-0.0.20.dist-info/LICENSE,sha256=NYULqbFuDRV6CysPbkR2WZk863YwwHeftBtnsb4cWf8,1077
|
7
|
-
eo_tides-0.0.20.dist-info/METADATA,sha256=_Ns8em48OsUfgl97Rw4hSPXPqfJV9FelTtq25qcb4ag,5335
|
8
|
-
eo_tides-0.0.20.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
9
|
-
eo_tides-0.0.20.dist-info/top_level.txt,sha256=lXZDUUM1DlLdKWHRn8zdmtW8Rx-eQOIWVvt0b8VGiyQ,9
|
10
|
-
eo_tides-0.0.20.dist-info/RECORD,,
|
File without changes
|
File without changes
|