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
: