Skip to content

0.2.0

Compare
Choose a tag to compare
@robbibt robbibt released this 10 Sep 05:34
· 519 commits to develop since this release

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 the dea-tools Python module instead (located in the Tools directory of the repository). If you previously imported functions from Scripts 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 typing rm -r Scripts:

image