A modern, modular and extensible framework
for large scale glacier modeling
space
, shift+space
and arrow keys
to navigate between slides.
Open source = free (as in "free beer")
Free ∈ Open source
"Glacier centric" approach
Local grid and DEM
Centerlines
Flowlines and widths
Mass-balance & ice thickness
Glacier evolution
# Go - initialize glacier directories
gdirs = workflow.init_glacier_directories(rgidf)
task_list = [
tasks.define_glacier_region,
tasks.glacier_masks,
tasks.compute_centerlines,
tasks.catchment_area,
tasks.catchment_width_geom,
]
for task in task_list:
execute_entity_task(task, gdirs)
See the rgitools documentation
gdir = init_glacier_directories(['RGI60-01.10689'])[0]
from oggm.shop import its_live, dems
dems.select_dem(gdir, dem_source='COPDEM')
tasks.glacier_masks(gdir)
its_live.vel_to_gdir(gdir)
See our online tutorials