
# Digital Earth Australia Intertidal
[](https://pypi.org/project/dea-intertidal/)
[](https://doi.org/10.1016/j.ecss.2019.03.006)
[](https://opensource.org/licenses/Apache-2.0)
[](https://codecov.io/gh/GeoscienceAustralia/dea-intertidal)
[](https://github.com/GeoscienceAustralia/dea-intertidal/actions/workflows/dea-intertidal-image.yml)
### Remote sensing tools for high-resolution mapping of the intertidal zone ππ°οΈ
**DEA Intertidal** combines satellite Earth observation data with advanced tide modelling to produce high-resolution maps of intertidal elevation, extents and exposure. These mapping datasets support applications from coastal hazard assessment to sediment dynamics, habitat mapping, and migratory species research.
In Australia, the package underpins the [DEA Intertidal product suite](https://knowledge.dea.ga.gov.au/data/product/dea-intertidal/), which provides continental-scale 10 m datasets of Australia's exposed intertidal zone from 2016 onwards.
**Key functionality:**
* π°οΈ **Global applicability** β integrate open satellite data with global tidal models
* β°οΈ **Elevation modelling** β pixel-based 3D intertidal elevation with quantified uncertainty
* β±οΈ **Exposure analysis** β spatio-temporal patterns of inundation and exposure
* πΊοΈ **Extents classification** β categorical mapping of land, intertidal, inland waters, and ocean
* π **Tidal metrics** β per-pixel tidal ranges, offsets, and satellite sampling biases
---
## βοΈ Installation
You can install `dea-intertidal` from PyPI with `pip` (https://pypi.org/project/dea-intertidal/).
By default `dea-intertidal` will be installed with minimal dependencies which excludes `datacube`:
```console
pip install dea-intertidal
```
To install with additional `datacube` dependencies:
```console
pip install dea-intertidal[datacube]
```
Functions can then be imported in Python:
```python
from intertidal.elevation import elevation
```
## π Getting started
We recommend running the [**Getting started with DEA Intertidal**](notebooks/Getting_started_with_DEA_Intertidal.ipynb) Jupyter Notebook for an example of how to run a simple DEA Intertidal analysis.
This notebook loads data from Microsoft Planetary Computer using using Spatio-Temporal Asset Catalogue (STAC) metadata, and is suitable for any coastal location globally.
## π Repository structure
The DEA Intertidal Github repository contains the following important sections:
* [`intertidal`](intertidal/): The DEA Intertidal Python package, containing modules required for loading data, tide modelling, intertidal elevation, and exposure calculations
* [`notebooks`](notebooks): Jupyter Notebooks providing workflows for generating key DEA Intertidal outputs
* [`data`](data): Contains required `raw` input data files and output `interim` and `processed` outputs
* [`metadata`](metadata): Open Data Cube (ODC) metadata required for indexing DEA Intertidal into an ODC datacube
* [`tests`](tests): Unit and integration tests, including automatically generated validation test results
## π οΈ Contact
For assistance with any of the Python code or Jupyter Notebooks in this repository, please post a [Github issue](https://github.com/GeoscienceAustralia/dea-intertidal/issues). For questions or more information about DEA Intertidal, email earth.observation@ga.gov.au.
## π Citation
```
Bishop-Taylor, R., Phillips, C., Newey, V., Sagar, S. (2024). Digital Earth Australia Intertidal. Geoscience Australia, Canberra. https://dx.doi.org/10.26186/149403
Bishop-Taylor, R., Sagar, S., Lymburner, L., Beaman, R.L., 2019. Between the tides: modelling the elevation of Australia's exposed intertidal zone at continental scale. Estuarine, Coastal and Shelf Science. https://doi.org/10.1016/j.ecss.2019.03.006
```
Raw data
{
"_id": null,
"home_page": null,
"name": "dea-intertidal",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.10",
"maintainer_email": null,
"keywords": "coastal, coastal analysis, earth observation, exposure, intertidal, oceanography, remote sensing, satellite data, tide modelling",
"author": "Robbi Bishop-Taylor, Claire Phillips, Vanessa Newey, Stephen Sagar",
"author_email": "Robbi.BishopTaylor@ga.gov.au",
"download_url": "https://files.pythonhosted.org/packages/0d/bf/42df20955fd618413bce7a05bb140ccd0ea8942e735e39635dbf787c2a6a/dea_intertidal-2.4.0.tar.gz",
"platform": null,
"description": "\n\n# Digital Earth Australia Intertidal\n\n[](https://pypi.org/project/dea-intertidal/)\n[](https://doi.org/10.1016/j.ecss.2019.03.006)\n[](https://opensource.org/licenses/Apache-2.0)\n[](https://codecov.io/gh/GeoscienceAustralia/dea-intertidal)\n[](https://github.com/GeoscienceAustralia/dea-intertidal/actions/workflows/dea-intertidal-image.yml)\n\n### Remote sensing tools for high-resolution mapping of the intertidal zone \ud83c\udf0a\ud83d\udef0\ufe0f \n\n**DEA Intertidal** combines satellite Earth observation data with advanced tide modelling to produce high-resolution maps of intertidal elevation, extents and exposure. These mapping datasets support applications from coastal hazard assessment to sediment dynamics, habitat mapping, and migratory species research.\n\nIn Australia, the package underpins the [DEA Intertidal product suite](https://knowledge.dea.ga.gov.au/data/product/dea-intertidal/), which provides continental-scale 10 m datasets of Australia's exposed intertidal zone from 2016 onwards.\n\n**Key functionality:**\n\n* \ud83d\udef0\ufe0f **Global applicability** \u2013 integrate open satellite data with global tidal models\n* \u26f0\ufe0f **Elevation modelling** \u2013 pixel-based 3D intertidal elevation with quantified uncertainty\n* \u23f1\ufe0f **Exposure analysis** \u2013 spatio-temporal patterns of inundation and exposure\n* \ud83d\uddfa\ufe0f **Extents classification** \u2013 categorical mapping of land, intertidal, inland waters, and ocean\n* \ud83c\udf0a **Tidal metrics** \u2013 per-pixel tidal ranges, offsets, and satellite sampling biases\n \n---\n\n## \u2699\ufe0f Installation\n\nYou can install `dea-intertidal` from PyPI with `pip` (https://pypi.org/project/dea-intertidal/). \nBy default `dea-intertidal` will be installed with minimal dependencies which excludes `datacube`:\n\n```console\npip install dea-intertidal\n```\n\nTo install with additional `datacube` dependencies:\n\n```console\npip install dea-intertidal[datacube]\n```\n\nFunctions can then be imported in Python:\n\n```python\nfrom intertidal.elevation import elevation\n```\n\n## \ud83d\ude80 Getting started\n\nWe recommend running the [**Getting started with DEA Intertidal**](notebooks/Getting_started_with_DEA_Intertidal.ipynb) Jupyter Notebook for an example of how to run a simple DEA Intertidal analysis.\n\nThis notebook loads data from Microsoft Planetary Computer using using Spatio-Temporal Asset Catalogue (STAC) metadata, and is suitable for any coastal location globally.\n\n## \ud83d\udcc1 Repository structure\n\nThe DEA Intertidal Github repository contains the following important sections:\n* [`intertidal`](intertidal/): The DEA Intertidal Python package, containing modules required for loading data, tide modelling, intertidal elevation, and exposure calculations\n* [`notebooks`](notebooks): Jupyter Notebooks providing workflows for generating key DEA Intertidal outputs\n* [`data`](data): Contains required `raw` input data files and output `interim` and `processed` outputs\n* [`metadata`](metadata): Open Data Cube (ODC) metadata required for indexing DEA Intertidal into an ODC datacube\n* [`tests`](tests): Unit and integration tests, including automatically generated validation test results\n\n## \ud83d\udee0\ufe0f Contact\nFor assistance with any of the Python code or Jupyter Notebooks in this repository, please post a [Github issue](https://github.com/GeoscienceAustralia/dea-intertidal/issues). For questions or more information about DEA Intertidal, email earth.observation@ga.gov.au.\n\n## \ud83d\udcdd Citation \n```\nBishop-Taylor, R., Phillips, C., Newey, V., Sagar, S. (2024). Digital Earth Australia Intertidal. Geoscience Australia, Canberra. https://dx.doi.org/10.26186/149403\n\nBishop-Taylor, R., Sagar, S., Lymburner, L., Beaman, R.L., 2019. Between the tides: modelling the elevation of Australia's exposed intertidal zone at continental scale. Estuarine, Coastal and Shelf Science. https://doi.org/10.1016/j.ecss.2019.03.006\n```\n",
"bugtrack_url": null,
"license": null,
"summary": "Remote sensing tools for high-resolution mapping of the intertidal zone",
"version": "2.4.0",
"project_urls": {
"Homepage": "https://github.com/GeoscienceAustralia/eo-tides",
"Repository": "https://github.com/GeoscienceAustralia/eo-tides"
},
"split_keywords": [
"coastal",
" coastal analysis",
" earth observation",
" exposure",
" intertidal",
" oceanography",
" remote sensing",
" satellite data",
" tide modelling"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "ebe0059eedc7ddad6efa21a39b82be42f2ee9793602110d9ad951d44c0befe0e",
"md5": "1a8893565ab12647c1022d699da05722",
"sha256": "cc211bbf25f67c55572a03ed046dc78ca00f09c4814d0fec786d1dc98b6b0a0c"
},
"downloads": -1,
"filename": "dea_intertidal-2.4.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1a8893565ab12647c1022d699da05722",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.10",
"size": 59920,
"upload_time": "2025-10-22T04:41:34",
"upload_time_iso_8601": "2025-10-22T04:41:34.961116Z",
"url": "https://files.pythonhosted.org/packages/eb/e0/059eedc7ddad6efa21a39b82be42f2ee9793602110d9ad951d44c0befe0e/dea_intertidal-2.4.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0dbf42df20955fd618413bce7a05bb140ccd0ea8942e735e39635dbf787c2a6a",
"md5": "b50594d6ea78575fd1e320c4611f93c6",
"sha256": "baa779fcb25ed188ed1272d2cae37bd8e0f4cc539e4d471b1b91d82f47027032"
},
"downloads": -1,
"filename": "dea_intertidal-2.4.0.tar.gz",
"has_sig": false,
"md5_digest": "b50594d6ea78575fd1e320c4611f93c6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.10",
"size": 7012088,
"upload_time": "2025-10-22T04:41:36",
"upload_time_iso_8601": "2025-10-22T04:41:36.654114Z",
"url": "https://files.pythonhosted.org/packages/0d/bf/42df20955fd618413bce7a05bb140ccd0ea8942e735e39635dbf787c2a6a/dea_intertidal-2.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-22 04:41:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "GeoscienceAustralia",
"github_project": "eo-tides",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "dea-intertidal"
}