Skip to content

Commit

Permalink
Update notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt committed Sep 29, 2024
1 parent 0560073 commit 6b19f6b
Show file tree
Hide file tree
Showing 5 changed files with 450 additions and 219 deletions.
229 changes: 12 additions & 217 deletions docs/notebooks/Model_tides.ipynb

Large diffs are not rendered by default.

400 changes: 400 additions & 0 deletions docs/notebooks/Satellite_data.ipynb

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions docs/notebooks/Tide_statistics.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Calculating tide statistics and satellite biases\n",
"\n",
"## Using `tide_stats`"
]
}
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
2 changes: 1 addition & 1 deletion eo_tides/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def _load_gesla_dataset(site, path, na_value):
path,
skiprows=41,
names=["date", "time", "sea_level", "qc_flag", "use_flag"],
sep="\s+",
sep=r"\s+", # sep="\s+",
parse_dates=[[0, 1]],
index_col=0,
na_values=na_value,
Expand Down
4 changes: 3 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ nav:
- Home: index.md
- Installation: install.md
- Setting up tide models: setup.md
- Usage examples:
- Usage:
- notebooks/Model_tides.ipynb
- notebooks/Satellite_data.ipynb
- notebooks/Tide_statistics.ipynb
- Package:
- API reference: api.md
- Reference:
Expand Down

0 comments on commit 6b19f6b

Please sign in to comment.