Releases: GeoscienceAustralia/dea-notebooks
0.2.4
What's Changed
Updates to ML notebooks/scripts, load_ard, and phenology
- Update Polygon_drill.ipynb by @CEKrause in #897
- DEA Land Cover notebook suite by @bellemae in #898
- Update animation notebook to use MP4s by @robbibt in #903
- Add Fractional Cover reprocessing notebook and results by @BexDunn in #905
- Add DEA training to repo by @BexDunn in #906
- Update README.rst by @BexDunn in #907
- Ah, add my conf paper by @BexDunn in #908
- Remove spatial cross validation from Scalable ML by @cbur24 in #909
- Update phenology notebook and script by @cbur24 in #910
- Add morphological filtering to
load_ard
by @cbur24 in #912 - Conference contribution GeoPython by @sebfoe in #914
Full Changelog: 0.2.3...0.2.4
0.2.3
0.2.2
What's Changed
- Add new func for plotting fmask data with automatic colours by @robbibt in #886
- Update to document new Coastlines paper and use recently added Dask and Geopandas functionality by @robbibt in #887
- Updated courses and training by @Bethany-M in #889
- Add coastlines paper to repo usage by @robbibt in #890
- Add new interactive DEA Coastlines app and move all widgets to
dea_tools.app
submodule by @robbibt in #892
New Contributors
- @Bethany-M made their first contribution in #889
Full Changelog: 0.2.1...0.2.2
0.2.1
What's Changed
- Notebook for exporting high quality satellite images from an interactive map by @robbibt in #870
- Add new functionality to Image export notebook and functions by @robbibt in #873
- Fix image export for Sentinel-2 NRT by @robbibt in #876
- Add first set of basic Testbook tests to DEA Notebooks by @robbibt in #872
- Add option for returning dask client by @cbur24 in #882
- Remove in-text references to Scripts by @robbibt in #883
- Fix broken
tidal_tag
function indea_tools.coastal
by @robbibt in #884
Full Changelog: 0.2.0...0.2.1
0.2.0
Changes
- Updated all notebooks for compatibility with the recently updated Python 3.8 DEA Sandbox environment.
- Updated the DEA Notebooks repository to remove the
Scripts
directory, and load functions from thedea-tools
Python module instead (located in theTools
directory of the repository). If you previously imported functions fromScripts
using the following syntax:
import sys
sys.path.insert(1, '../Scripts')
from dea_datahandling import load_ard
Please replace this with:
import sys
sys.path.insert(1, '../Tools')
from dea_tools.datahandling import load_ard
Alternatively, dea-tools
can now be installed directly from PyPI using:
pip install dea-tools
from dea_tools.datahandling import load_ard
Note: If you previously accessed the DEA Sandbox environment, the
Scripts
folder will not be removed automatically. We recommend deleting it yourself by opening a terminal, then typingrm -r Scripts
:
0.1.1
Release of dea-tools
onto PyPI: https://pypi.org/project/dea-tools/
This allows functions and algorithms from dea-tools
to be installed easily using:
pip install dea-tools
0.1.0a1
0.1.0
Pre dea-tools archive
1 December 2020 update: To make it easier to import DEA functions on the NCI, Sandbox as well as external repositories or platforms like DEAfrica, we are planning to build the modules and functions currently located in /Scripts
into a pip-installable Python package (#538, #705). This release tags the last version of the develop
branch prior to merging in these changes.
DEA-notebooks refresh
9 January 2020 update: This repository was recently upgraded to a new directory structure and set of improved and easier to use Jupyter notebooks and scripts. To access an archive of the previous version of the repository, visit the master_archive branch. Please note that notebooks and code in the master_archive
branch are no longer maintained or supported.