oggm
oggm copied to clipboard
Open Global Glacier Model
#993 was necessary because #983 changed stuff which was not tested properly. More precisely: Right now we do not test the `define_glacier_region` in a operational realistic way. All tests are...
https://cluster.klima.uni-bremen.de/~github/asv_logs/92053.txt cc @TimoRoth
see https://github.com/OGGM/oggm/pull/986
In #945 I xfailed a test because I'm not sure how to update all 4 (!) baseline images we need now for the tests to pass. @TimoRoth when you have...
After some back and forth with @drounce , I think that the current API (passing `fl_id` and `fls` could be replaced by a cleaner `flowline`. I have to think about...
since `flowline.section = new_section` works, it is natural to want to try something like: `flowline.section[88] = 0` and expect it to work. The command above will silently do nothing. Is...
This task creates a bunch of temporary temp files and then merges them together. Relatively frequently (1 in 10 maybe?) the run freezes at this step and I have to...
In _workflow.py, in the method climate_statistics(), the slope is defined as an arctan of the height difference and length change. `@entity_task(log)` `def climate_statistics(gdir, add_climate_period=1995):` - `slope = np.append(slope, np.arctan(-np.gradient(hgt, dx)))`...
Currently, we: - smooth the topography according to a window size in meters ([251 m](https://github.com/OGGM/oggm/blob/fb24b2ab2658a7967234c3ae4349e68abbe29cb1/oggm/params.cfg#L103)). The choice of meters as unit was motivated by the fact that we want to...
I just realise that if I want to use a reference t_star list in the calving module. I wont be able to pass that to the [find_inversion_calving()](https://github.com/OGGM/oggm/blob/1dc07f57cf8f7d7708585a6f7ab972890924892e/oggm/core/inversion.py#L974) function. I need...