Giter Site home page Giter Site logo

munterfi / glacier-flow-model Goto Github PK

View Code? Open in Web Editor NEW
17.0 6.0 9.0 10.36 MB

Modeling glaciers on a digital elevation model (DEM) based on mass balance and a modified D8 flow algorithm applied to ice.

Home Page: https://doi.org/10.5281/zenodo.6418201

License: MIT License

Python 96.39% Shell 3.61%
modeling geographical-information-system geospatial glacier digital-elevation-model glaciers-flow mass-balance gradient

glacier-flow-model's Introduction

https://github.com/munterfi/glacier-flow-model

Glacier flow model

Documentation Status https://codecov.io/gh/munterfi/glacier-flow-model/branch/master/graph/badge.svg?token=2Kh9EboLXx

Modeling glaciers on a digital elevation model (DEM) based on mass balance and a modified D8 flow algorithm applied to ice.

The modeling is based on a linear relationship between altitude and mass balance, the so-called mass balance gradient. For alpine glaciers this gradient is about 0.006 m/m. Continental glaciers tend to be at 0.003 and maritime glaciers at 0.01 m/m. The alpine gradient is set by default in the model. To model the glaciers, annual steps are calculated. First the mass balance (accumulation and ablation) for the area is added to the glacier layer and in a second step the glacier flow is simulated by using a modified D8 technique (submodule fracd8). Since the prupose of the D8 flow direction algorithm is modeling surface water flows over terrain, the D8 algorithm was modified to be able to consider the fraction of ice that is flowing out of each cell based on the glaciers velocity. In order to avoid pure convergence of the flow, the surface of the glaciers is slightly smoothed. The simulation stops when the observed difference in mass balance for a smoothed curve (default MODEL_TREND_SIZE=100) is less than a given tolerance (default MODEL_TOLERANCE=0.0001).

Getting started

The glacier-flow-model package depends on GDAL, which needs to be installed on the system.

Get the stable release of the package from pypi:

pip install glacier-flow-model

Example data

The package includes an example DEM from swisstopo. It covers a smaller extent around the Aletsch glacial arena in Switzerland with a raster cell resolution of 200m.

from glacier_flow_model import PkgDataAccess
dem = PkgDataAccess.load_dem()

The original DEM can be downloaded here.

Usage

To set up a glacier flow model, a path to a DEM in the GeoTiff file format has to passed to the model class constructor. By default the mass balance parameters for alpine glaciers in the year 2000 are set. Keep the input file size small, otherwise the model may be slowed down remarkably:

import logging
from glacier_flow_model import GlacierFlowModel, PkgDataAccess

LOG_FORMAT = "[%(asctime)s %(levelname)s] %(message)s (%(name)s)"
logging.basicConfig(format=LOG_FORMAT, level=logging.INFO)

gfm = GlacierFlowModel(PkgDataAccess.locate_dem())

After initialization, the model needs to accumulate the initial ice mass until it reaches a steady state, call the reach_steady_state method to do so:

gfm.reach_steady_state()

https://github.com/munterfi/glacier-flow-model

When the model is in a steady state, a temperature change of the climate can be simulated. Simply use the simulate method with a positive or negative temperature change in degrees. The model changes the temperature gradually and simulates years until it reaches a steady state again.

Heating 4.5°C after initial steady state:

gfm.simulate(4.5)

https://github.com/munterfi/glacier-flow-model

Cooling -3°C after initial steady state:

gfm.simulate(-3)

https://github.com/munterfi/glacier-flow-model

Export the results of the model into .csv and .tif files:

gfm.export()

The GeoTiff contains the following bands, averaged over the last 10 simulation years (default MODEL_RECORD_SIZE=10):

  1. Glacier thickness [m].
  2. Velocity at medium height [m/a].
  3. Mass balance [m].

Check out the video of the scenario simulation in the Aletsch glacial arena in Switzerland

Limitations

The model has some limitations that need to be considered:

  • The flow velocity of the ice per year is limited by the resolution of the grid cells. Therefore, a too high resolution should not be chosen for the simulation.
  • The modeling of ice flow is done with D8, a technique for modeling surface flow in hydrology. Water behaves fundamentally different from ice, which is neglected by the model (e.g. influence of crevasses).
  • The flow velocity only considers internal ice deformation (creep). Basal sliding, and soft bed deformation are ignored.
  • No distinction is made between snow and ice. The density of the snow or ice mass is also neglected in the vertical column.

License

This project is licensed under the MIT License - see the LICENSE file for details

glacier-flow-model's People

Contributors

dependabot[bot] avatar munterfi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

glacier-flow-model's Issues

Implement plot saving function

Implement a plot saving function in GlacierFlowModel.py and link it to the GUI (GFM.py), where the folder path selection and a radio button already exists.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.