Other data sources#
If you want to run your own workflow from A to Z, or if you would like to know which data are used in OGGM before being available in the pre-processed directories, read further for some more details!
Glacier outlines and intersects#
Glacier outlines are obtained from the Randolph Glacier Inventory (RGI). We recommend to download them right away by opening a python interpreter and type:
from oggm import cfg, utils
cfg.initialize()
utils.get_rgi_intersects_dir()
utils.get_rgi_dir()
The RGI folders should now contain the glacier outlines in the shapefile format, a format widely used in GIS applications. These files can be read by several software (e.g. qgis), and OGGM can read them too.
The “RGI Intersects” shapefiles contain the locations of the ice divides (intersections between neighboring glaciers). OGGM can make use of them to determine which bed shape should be used (rectangular or parabolic). See the rgi tools documentation for more information about the intersects.
The following table summarizes the RGI attributes used by OGGM. It can be useful to refer to this list if you use your own glacier outlines with OGGM.
RGI attribute |
Equivalent OGGM variable |
Comments |
|---|---|---|
RGIId |
|
|
GLIMSId |
|
not used |
CenLon |
|
|
CenLat |
|
|
O1Region |
|
not used |
O2Region |
|
not used |
Name |
|
used for graphics only |
BgnDate |
|
|
Form |
|
|
TermType |
|
|
Status |
|
|
Area |
|
|
Zmin |
|
recomputed by OGGM |
Zmax |
|
recomputed by OGGM |
Zmed |
|
recomputed by OGGM |
Slope |
|
recomputed by OGGM |
Aspect |
|
recomputed by OGGM |
Lmax |
|
recomputed by OGGM |
Connect |
not included |
|
Surging |
not included |
|
Linkages |
not included |
|
EndDate |
not included |
For Greenland and Antarctica peripheral glaciers, OGGM does not take into account the
connectivity level between the Glaciers and the Ice sheets.
We recommend to the users to think about this before they
run the task: workflow.init_glacier_directories.
Comments
Topography data#
When creating a Glacier directories, a suitable topographical data source is chosen automatically, depending on the glacier’s location. OGGM supports a large number of datasets (almost all of the freely available ones, we hope). They are listed on the RGI-TOPO website.
The current default is to use COPDEM90 and COPDEM30. In practice, COPDEM is sufficient for all but about 300 of the world’s glaciers. The we use some other datasets available in RGITOPO.
These data are downloaded only when needed (i.e. during an OGGM run)
and they are stored in the dl_cache_dir
directory. The gridded topography is then reprojected and resampled to the local
glacier map. The local grid is defined on a Transverse Mercator projection centered over
the glacier, and has a spatial resolution depending on the glacier size. The
default in OGGM is to use the following rule:
where \(\Delta x\) is the grid spatial resolution (in m), \(S\) the glacier area (in km\(^{2}\)) and \(d_1\), \(d_2\) some parameters (set to 14 and 10, respectively). If the chosen spatial resolution is larger than 200 m (\(S \ge\) 185 km\(^{2}\)) we clip it to this value.
Important: when using these data sources for your OGGM runs, please refer
to the original data provider of the data! OGGM adds a dem_source.txt
file in each glacier directory specifying how to cite these data. We
reproduce this information
here.
Warning
A number of glaciers will still suffer from poor topographic information. Either the errors are large or obvious (in which case the model won’t run), or they are left unnoticed. The importance of reliable topographic data for global glacier modelling cannot be emphasized enough.
Note
In this blogpost we talk about which requirements a DEM must fulfill to be helpful to OGGM. And we also explain why and how we preprocess some DEMs before we make them available to the OGGM workflow.