59 whitebox
Uncomment the following line to install geemap if needed.
In [ ]:
# !pip install geemap
In [ ]:
import subprocess
try:
import whiteboxgui
except ImportError:
print('Installing whiteboxgui ...')
subprocess.check_call(["python", '-m', 'pip', 'install', 'whiteboxgui'])
In [ ]:
import geemap
import whiteboxgui
In [ ]:
Map = geemap.Map()
Map
In [ ]:
whiteboxgui.show()
In [ ]:
whiteboxgui.show(tree=True)
Last update: 2021-02-25