Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
__pycache__/
.vscode/
.venv/
site/
site/
build/
detide.egg-info/
4 changes: 3 additions & 1 deletion detide/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,6 @@
constituent._M3, # Short period (higher harmonics)
]

NOAA = constituent.noaa
NOAA = constituent.noaa

EXTENDED = constituent.extended
16 changes: 8 additions & 8 deletions docs/assets/plot_compare.html

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions docs/assets/plot_compare_churchill.html

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions docs/assets/plot_compare_tuktoyaktuk.html

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions docs/assets/plot_demo.html

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions docs/assets/tidal_decomposition.html

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions docs/assets/tidal_decomposition_churchill.html

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions docs/assets/tidal_decomposition_tuktoyaktuk.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ surge_hourly = resample(surge) # surgeMIP exception
| `SHORT` | 20 | Pricipal contributors; dominant semi-diurnal + diurnal + overtides |
| `FULL` | 29 | **Default**; adds L2, T2, R2, ν2, μ2, λ2, S4, M8, M3 |
| `NOAA` | 37 | Direct comparison with NOAA CO-OPS tide predictions |
| `EXTENDED` | 67 | Adds many more minor and satellite constituents to obtain a Rayleigh Criterion of 0.8 |

<iframe src="assets/plot_compare.html" width="100%" height="720" frameborder="0"></iframe>

Expand Down
64 changes: 14 additions & 50 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.13,<4.0"
dependencies = [
"pytides2 @ git+https://github.com/tomsail/pytides.git",
"pytides2 @ git+https://github.com/WPringle/pytides.git@add-tidal-constituents",
"pandas",
"pyarrow",
"hvplot",
Expand Down
Loading