Ingest gridded products such as ice velocity into OGGM#

After running our OGGM experiments we often want to compare the model output to other gridded observations or maybe we want to use additional data sets that are not currently in the OGGM shop to calibrate parameters in the model (e.g. Glen A creep parameter, sliding parameter or the calving constant of proportionality). If you are looking on ways or ideas on how to do this, you are in the right tutorial!

In OGGM, a local map projection is defined for each glacier entity in the RGI inventory following the methods described in Maussion and others (2019). The model uses a Transverse Mercator projection centred on the glacier. A lot of data sets, especially those from Polar regions can have a different projections and if we are not careful, we would be making mistakes when we compare them with our model output or when we use such data sets to constrain our model experiments.

New in OGGM 1.6! We now offer preprocess directories where the data is available already. Visit OGGM as an accelerator for modelling and machine learning for more info.

First lets import the modules we need:

import xarray as xr
import numpy as np
import matplotlib.pyplot as plt
import salem
from oggm import cfg, utils, workflow, tasks, graphics
cfg.initialize(logging_level='WARNING')
2024-04-25 13:26:28: oggm.cfg: Reading default parameters from the OGGM `params.cfg` configuration file.
2024-04-25 13:26:28: oggm.cfg: Multiprocessing switched OFF according to the parameter file.
2024-04-25 13:26:28: oggm.cfg: Multiprocessing: using all available processors (N=4)
cfg.PATHS['working_dir'] = utils.gettempdir(dirname='OGGM-shop-on-Flowlines', reset=True)

Lets define the glaciers for the run#

rgi_ids = ['RGI60-14.06794']  # Baltoro
# The RGI version to use
# Size of the map around the glacier.
prepro_border = 80
# Degree of processing level. This is OGGM specific and for the shop 1 is the one you want
from_prepro_level = 3
# URL of the preprocessed gdirs
# we use elevation bands flowlines here
base_url = 'https://cluster.klima.uni-bremen.de/~oggm/gdirs/oggm_v1.6/L3-L5_files/2023.3/elev_bands/W5E5'
gdirs = workflow.init_glacier_directories(rgi_ids,
                                          from_prepro_level=from_prepro_level,
                                          prepro_base_url=base_url,
                                          prepro_border=prepro_border)
2024-04-25 13:26:30: oggm.workflow: init_glacier_directories from prepro level 3 on 1 glaciers.
2024-04-25 13:26:30: oggm.workflow: Execute entity tasks [gdir_from_prepro] on 1 glaciers
gdir = gdirs[0]
graphics.plot_googlemap(gdir, figsize=(8, 7))
../../_images/e0d8d95ef0a26b9af5cdfcea7bcbb72fa51727e3132c2aa6e00ab17512830ab7.png

The gridded_data file in the glacier directory#

A lot of the data that the model use and produce for a glacier is stored under the glaciers directories in a NetCDF file called gridded_data:

fpath = gdir.get_filepath('gridded_data')
fpath
'/tmp/OGGM/OGGM-shop-on-Flowlines/per_glacier/RGI60-14/RGI60-14.06/RGI60-14.06794/gridded_data.nc'
with xr.open_dataset(fpath) as ds:
    ds = ds.load()
ds
<xarray.Dataset> Size: 2MB
Dimensions:          (x: 479, y: 346)
Coordinates:
  * x                (x) float32 2kB -4.764e+04 -4.744e+04 ... 4.796e+04
  * y                (y) float32 1kB 3.992e+06 3.992e+06 ... 3.923e+06 3.923e+06
Data variables:
    topo             (y, x) float32 663kB 5.128e+03 4.999e+03 ... 5.3e+03
    topo_smoothed    (y, x) float32 663kB 5.113e+03 5.019e+03 ... 5.296e+03
    topo_valid_mask  (y, x) int8 166kB 1 1 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 1
    glacier_mask     (y, x) int8 166kB 0 0 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0
    glacier_ext      (y, x) int8 166kB 0 0 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0
Attributes:
    author:         OGGM
    author_info:    Open Global Glacier Model
    pyproj_srs:     +proj=tmerc +lat_0=0 +lon_0=76.4047 +k=0.9996 +x_0=0 +y_0...
    max_h_dem:      8437.0
    min_h_dem:      2996.0
    max_h_glacier:  8437.0
    min_h_glacier:  3397.0
cmap=salem.get_cmap('topo')
ds.topo.plot(figsize=(7, 4), cmap=cmap);
../../_images/ee901a700770a7150513d89d6b539f65727f2075098db7f9210b998e4347979f.png
ds.glacier_mask.plot();
../../_images/f96b9cb535faffb57e89cebc964e5e0127217468be3f46d1d1d5296c58997e84.png

Merging the gridded_data files of multiple glacier directories#

It is also possible to merge the gridded_data files of multiple glacier directories. Let’s try it with two glaciers:

rgi_ids_for_merge = ['RGI60-14.06794',  # Baltoro
                     'RGI60-14.07524',  # Siachen
                    ]
gdirs_for_merge = workflow.init_glacier_directories(rgi_ids_for_merge,
                                                    from_prepro_level=from_prepro_level,
                                                    prepro_base_url=base_url,
                                                    prepro_border=prepro_border)
2024-04-25 13:26:41: oggm.workflow: init_glacier_directories from prepro level 3 on 2 glaciers.
2024-04-25 13:26:41: oggm.workflow: Execute entity tasks [gdir_from_prepro] on 2 glaciers
ds_merged = workflow.merge_gridded_data(
    gdirs_for_merge,
    output_folder=None,  # by default the final file is saved at cfg.PATHS['working_dir']
    output_filename='gridded_data_merged',  # the default file is saved as gridded_data_merged.nc
    included_variables='all',  # you also can provide a list of variables here
    add_topography=False,  # here we can add topography for the new extend
    reset=False,  # set to True if you want to overwrite an already existing file (for playing around)
)
2024-04-25 13:26:56: oggm.workflow: Applying global task merge_gridded_data on 2 glaciers
2024-04-25 13:26:56: oggm.workflow: Execute entity tasks [reproject_gridded_data_variable_to_grid] on 2 glaciers
2024-04-25 13:26:56: oggm.workflow: Execute entity tasks [reproject_gridded_data_variable_to_grid] on 2 glaciers
ds_merged
<xarray.Dataset> Size: 3MB
Dimensions:       (x: 744, y: 582)
Coordinates:
  * x             (x) float32 3kB -4.774e+04 -4.754e+04 ... 1.007e+05 1.009e+05
  * y             (y) float32 2kB 3.992e+06 3.992e+06 ... 3.876e+06 3.876e+06
Data variables:
    glacier_mask  (y, x) float32 2MB 0.0 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0 0.0
    glacier_ext   (y, x) float32 2MB 0.0 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0 0.0
Attributes:
    author:                 OGGM
    author_info:            Open Global Glacier Model
    pyproj_srs:             +proj=tmerc +lat_0=0 +lon_0=76.4047 +k=0.9996 +x_...
    nr_of_merged_glaciers:  2
    rgi_ids:                ['RGI60-14.06794', 'RGI60-14.07524']
ds_merged.glacier_mask.plot()
<matplotlib.collections.QuadMesh at 0x7fbaf484a510>
../../_images/7f60df3ef48f720be0b31e26cf973d5d28253467af0700c3b2b8324d67ad5f73.png

As you can see, topography is not included because this process requires some time. The reason is that topography is not simply reprojected from the existing gridded_data; instead, it is redownloaded from the source and processed for the new ‘merged extent’. You can include topography by setting add_topography=True or specifying the DEM source add_topography='dem_source'.

There are additional options available, such as use_glacier_mask or preserve_totals (for preserving the total volume when merging distributed thickness data). For a more comprehensive explanation of these options, refer to the Docstring (by uncommenting the line below).

# for more available options uncomment the following line
# workflow.merge_gridded_data?

Add data from OGGM-Shop: bed topography data#

Additionally to the data produced by the model, the OGGM-Shop counts with routines that will automatically download and reproject other useful data sets into the glacier projection (For more information also check out this notebook). This data will be stored under the file described above.

OGGM can now download data from the Farinotti et al., (2019) consensus estimate and reproject it to the glacier directories map:

from oggm.shop import bedtopo
workflow.execute_entity_task(bedtopo.add_consensus_thickness, gdirs);
2024-04-25 13:26:57: oggm.workflow: Execute entity tasks [add_consensus_thickness] on 1 glaciers
with xr.open_dataset(gdir.get_filepath('gridded_data')) as ds:
    ds = ds.load()

the cell below might take a while… be patient

# plot the salem map background, make countries in grey
smap = ds.salem.get_map(countries=False)
smap.set_shapefile(gdir.read_shapefile('outlines'))
smap.set_topography(ds.topo.data);
f, ax = plt.subplots(figsize=(9, 9))
smap.set_data(ds.consensus_ice_thickness)
smap.set_cmap('Blues')
smap.plot(ax=ax)
smap.append_colorbar(ax=ax, label='ice thickness (m)');
../../_images/5f41fd812ae4eeaffb738a687b65758bfdd55e41c678f113c44f9ebf5db61b98.png

OGGM-Shop: velocities#

We download data from Millan 2022 (see the shop).

If you want more velocity products, feel free to open a new topic on the OGGM issue tracker!

this will download severals large datasets depending on your connection, it might take some time

# attention downloads data!!!
from oggm.shop import millan22
workflow.execute_entity_task(millan22.velocity_to_gdir, gdirs);
2024-04-25 13:27:09: oggm.workflow: Execute entity tasks [velocity_to_gdir] on 1 glaciers

By applying the entity task velocity to gdir OGGM downloads and reprojects the ITS_live files to a given glacier map.

The velocity components (vx, vy) are added to the gridded_data nc file.

Now we can read in all the gridded data that comes with OGGM, including the velocity components.

with xr.open_dataset(gdir.get_filepath('gridded_data')) as ds:
    ds = ds.load()
ds
<xarray.Dataset> Size: 4MB
Dimensions:                  (x: 479, y: 346)
Coordinates:
  * x                        (x) float32 2kB -4.764e+04 -4.744e+04 ... 4.796e+04
  * y                        (y) float32 1kB 3.992e+06 3.992e+06 ... 3.923e+06
Data variables:
    topo                     (y, x) float32 663kB 5.128e+03 ... 5.3e+03
    topo_smoothed            (y, x) float32 663kB 5.113e+03 ... 5.296e+03
    topo_valid_mask          (y, x) int8 166kB 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1
    glacier_mask             (y, x) int8 166kB 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0
    glacier_ext              (y, x) int8 166kB 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0
    consensus_ice_thickness  (y, x) float32 663kB nan nan nan ... nan nan nan
    millan_v                 (y, x) float32 663kB 0.009646 0.0 ... 46.07 61.48
    millan_vx                (y, x) float32 663kB nan nan ... -17.15 -28.61
    millan_vy                (y, x) float32 663kB nan nan 8.707 ... 42.76 54.42
Attributes:
    author:         OGGM
    author_info:    Open Global Glacier Model
    pyproj_srs:     +proj=tmerc +lat_0=0 +lon_0=76.4047 +k=0.9996 +x_0=0 +y_0...
    max_h_dem:      8437.0
    min_h_dem:      2996.0
    max_h_glacier:  8437.0
    min_h_glacier:  3397.0
# plot the salem map background, make countries in grey
smap = ds.salem.get_map(countries=False)
smap.set_shapefile(gdir.read_shapefile('outlines'))
smap.set_topography(ds.topo.data);
ds
<xarray.Dataset> Size: 4MB
Dimensions:                  (x: 479, y: 346)
Coordinates:
  * x                        (x) float32 2kB -4.764e+04 -4.744e+04 ... 4.796e+04
  * y                        (y) float32 1kB 3.992e+06 3.992e+06 ... 3.923e+06
Data variables:
    topo                     (y, x) float32 663kB 5.128e+03 ... 5.3e+03
    topo_smoothed            (y, x) float32 663kB 5.113e+03 ... 5.296e+03
    topo_valid_mask          (y, x) int8 166kB 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1
    glacier_mask             (y, x) int8 166kB 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0
    glacier_ext              (y, x) int8 166kB 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0
    consensus_ice_thickness  (y, x) float32 663kB nan nan nan ... nan nan nan
    millan_v                 (y, x) float32 663kB 0.009646 0.0 ... 46.07 61.48
    millan_vx                (y, x) float32 663kB nan nan ... -17.15 -28.61
    millan_vy                (y, x) float32 663kB nan nan 8.707 ... 42.76 54.42
Attributes:
    author:         OGGM
    author_info:    Open Global Glacier Model
    pyproj_srs:     +proj=tmerc +lat_0=0 +lon_0=76.4047 +k=0.9996 +x_0=0 +y_0...
    max_h_dem:      8437.0
    min_h_dem:      2996.0
    max_h_glacier:  8437.0
    min_h_glacier:  3397.0
# get the velocity data
u = ds.millan_vx.where(ds.glacier_mask)
v = ds.millan_vy.where(ds.glacier_mask)
ws = (u**2 + v**2)**0.5

The .where(ds.glacier_mask) command will remove the data outside of the glacier outline.

# get the axes ready
f, ax = plt.subplots(figsize=(12, 12))

# Quiver only every 3rd grid point
us = u[1::5, 1::5]
vs = v[1::5, 1::5]

smap.set_data(ws)
smap.set_cmap('Blues')
smap.plot(ax=ax)
smap.append_colorbar(ax=ax, label = 'ice velocity (m yr$^{-1}$)')

# transform their coordinates to the map reference system and plot the arrows
xx, yy = smap.grid.transform(us.x.values, us.y.values, crs=gdir.grid.proj)
xx, yy = np.meshgrid(xx, yy)
qu = ax.quiver(xx, yy, us.values, vs.values)
qk = ax.quiverkey(qu, 0.82, 0.97, 200, '200 m yr$^{-1}$',
                   labelpos='E', coordinates='axes')
../../_images/955987555fe73097d2436210b70448eb9aea199d53c2d07bc80a5257245494a1.png

Bin the data in gridded_data into OGGM elevation bands#

Now that we have added new data to the gridded_data file, we can bin the data sets into the same elevation bands as OGGM by recomputing the elevation bands flowlines:

tasks.elevation_band_flowline(gdir,
                              bin_variables=['consensus_ice_thickness', 
                                             'millan_vx',
                                             'millan_vy'],
                              preserve_totals=[True, False, False]  # I"m actually not sure if preserving totals is meaningful with velocities - likely not
                              # NOTE: we could bin variables according to max() as well!
                              )

This created a csv in the glacier directory folder with the data binned to it:

import pandas as pd
df = pd.read_csv(gdir.get_filepath('elevation_band_flowline'), index_col=0)
df
area mean_elevation slope consensus_ice_thickness millan_vx millan_vy bin_elevation dx width
dis_along_flowline
60.171680 40000.0 8345.0800 0.244307 18.147762 4.305162 -1.510011 8355.0 120.343360 332.382274
140.402843 80000.0 8235.2370 0.642076 13.891147 2.600823 1.027054 8235.0 40.118965 1994.069381
173.939060 40000.0 8197.4900 0.838839 21.082249 10.003611 -6.313942 8205.0 26.953470 1484.038963
202.715851 40000.0 8150.4624 0.775496 25.654436 8.991845 3.440062 8145.0 30.600113 1307.184719
236.362152 40000.0 8075.4395 0.685384 14.702221 NaN NaN 8085.0 36.692490 1090.141345
... ... ... ... ... ... ... ... ... ...
42309.174751 760000.0 3525.2795 0.104130 139.481160 -4.504803 -6.100419 3525.0 287.058320 2647.545636
42584.145088 400000.0 3495.2273 0.113628 101.916240 -3.805607 -2.713950 3495.0 262.882350 1521.593187
42815.229424 200000.0 3472.7896 0.149415 98.673035 -0.934793 -5.369528 3465.0 199.286320 1003.581200
43010.617332 200000.0 3441.4329 0.155403 59.133278 -3.215284 -4.582561 3435.0 191.489500 1044.443679
43225.271721 120000.0 3407.1775 0.125483 32.996784 1.515356 -5.287875 3405.0 237.819270 504.584837

157 rows × 9 columns

df['obs_velocity'] = (df['millan_vx']**2 + df['millan_vy']**2)**0.5
df['bed_h'] = df['mean_elevation'] - df['consensus_ice_thickness']
df[['mean_elevation', 'bed_h', 'obs_velocity']].plot(figsize=(10, 4), secondary_y='obs_velocity');
../../_images/c2750250922be84102e7d6b580254a6c374c84324aab3b327aa69ecbe9663c78.png

The problem with this file is that it does not have a regular spacing. The numerical model needs regular spacing, which is why OGGM does this:

# This takes the csv file and prepares new 'inversion_flowlines.pkl' and created a new csv file with regular spacing
tasks.fixed_dx_elevation_band_flowline(gdir,
                                       bin_variables=['consensus_ice_thickness',
                                                      'millan_vx', 
                                                      'millan_vy'],
                                       preserve_totals=[True, False, False]
                                      )
df_regular = pd.read_csv(gdir.get_filepath('elevation_band_flowline', filesuffix='_fixed_dx'), index_col=0)
df_regular
widths_m area_m2 consensus_ice_thickness millan_vx millan_vy
0.0 1350.505109 5.402020e+05 24.853092 9.087332 2.519514
400.0 1557.523130 6.230093e+05 12.058650 -2.843040 1.025657
800.0 7529.727763 3.011891e+06 32.532274 4.897372 -1.923190
1200.0 15905.879873 6.362352e+06 29.213367 11.318087 -3.521698
1600.0 35987.372282 1.439495e+07 42.631259 0.019635 -0.396444
... ... ... ... ... ...
41200.0 2128.664211 8.514657e+05 188.035968 -7.261543 -24.703882
41600.0 1795.850103 7.183400e+05 163.141960 -9.733849 -13.058354
42000.0 2386.585691 9.546343e+05 148.052477 -5.063217 -7.519389
42400.0 1515.943567 6.063774e+05 100.202613 -3.608638 -2.896151
42800.0 1063.187354 4.252749e+05 60.383299 -3.091363 -4.625325

108 rows × 5 columns

The other variables have disappeared for saving space, but I think it would be nicer to have them here as well. We can grab them from the inversion flowlines (this could be better handled in OGGM):

fl = gdir.read_pickle('inversion_flowlines')[0]
df_regular['mean_elevation'] = fl.surface_h
df_regular['obs_velocity'] = (df_regular['millan_vx']**2 + df_regular['millan_vy']**2)**0.5
df_regular['consensus_bed_h'] = df_regular['mean_elevation'] - df_regular['consensus_ice_thickness']
df_regular[['mean_elevation', 'consensus_bed_h', 'obs_velocity']].plot(figsize=(10, 4),
                                                                       secondary_y='obs_velocity');
../../_images/333cee7160ac4fbe32d4c03f1642b99cb21dbddd6f839c7ec8ff15531a41e918.png

OK so more or less the same but this time on a regular grid. Note that these now have the same length as the OGGM inversion flowlines, i.e. one can do stuff such as comparing what OGGM has done for the inversion:

inv = gdir.read_pickle('inversion_output')[0]
df_regular['OGGM_bed'] = df_regular['mean_elevation'] - inv['thick']
df_regular[['mean_elevation', 'consensus_bed_h', 'OGGM_bed']].plot();
../../_images/8f620dbf3960185df9dcb86f52ccd56557a43599b22d3032614dd89c61eddda5.png

Compare velocities: at inversion#

OGGM already inverted the ice thickness based on some optimisation such as matching the regional totals. Which parameters did we use?

d = gdir.get_diagnostics()
d
{'dem_source': 'NASADEM',
 'flowline_type': 'elevation_band',
 'apparent_mb_from_any_mb_residual': 56.10000000000032,
 'inversion_glen_a': 6.42968271645714e-24,
 'inversion_fs': 0}
# OK set them so that we are consistent
cfg.PARAMS['inversion_glen_a'] = d['inversion_glen_a']
cfg.PARAMS['inversion_fs'] = d['inversion_fs']
2024-04-25 13:29:36: oggm.cfg: PARAMS['inversion_glen_a'] changed from `2.4e-24` to `6.42968271645714e-24`.
# Since we overwrote the inversion flowlines we have to do stuff again
tasks.mb_calibration_from_geodetic_mb(gdir,
                                      informed_threestep=True,
                                      overwrite_gdir=True)
tasks.apparent_mb_from_any_mb(gdir)
tasks.prepare_for_inversion(gdir)
tasks.mass_conservation_inversion(gdir)
tasks.compute_inversion_velocities(gdir)
inv = gdir.read_pickle('inversion_output')[0]
df_regular['OGGM_inversion_velocity'] = inv['u_surface']
df_regular[['obs_velocity', 'OGGM_inversion_velocity']].plot();
../../_images/532d1d9ae7985015c60ed6d428649f47ca001a1ad5a0e0142a507b1a78387d6a.png

The velocities are higher, because:

  • OGGM is at equilibrium

  • the comparison between the bulk velocities of OGGM and the gridded observed ones is not straightforward.

Velocities during the run#

TODO: here we could use velocities from the spinup run!!

Inversion velocities are for a glacier at equilibrium - this is not always meaningful. Lets do a run and store the velocities with time:

cfg.PARAMS['store_fl_diagnostics'] = True
2024-04-25 13:29:38: oggm.cfg: PARAMS['store_fl_diagnostics'] changed from `False` to `True`.
tasks.run_from_climate_data(gdir);
with xr.open_dataset(gdir.get_filepath('model_diagnostics')) as ds_diag:
    ds_diag = ds_diag.load()
ds_diag.volume_m3.plot();
../../_images/f2a9666c8b45a9ac366b7fdcf45b46b92e6be79f083ecbb64914d32cfcdf9b1f.png
with xr.open_dataset(gdir.get_filepath('fl_diagnostics'), group='fl_0') as ds_fl:
    ds_fl = ds_fl.load()
ds_fl
<xarray.Dataset> Size: 251kB
Dimensions:              (dis_along_flowline: 179, time: 19)
Coordinates:
  * dis_along_flowline   (dis_along_flowline) float64 1kB 0.0 400.0 ... 7.12e+04
  * time                 (time) float64 152B 2.002e+03 2.003e+03 ... 2.02e+03
Data variables: (12/13)
    point_lons           (dis_along_flowline) float64 1kB 75.88 75.88 ... 76.67
    point_lats           (dis_along_flowline) float64 1kB 36.07 36.07 ... 36.07
    bed_h                (dis_along_flowline) float64 1kB 8.131e+03 ... 3.007...
    volume_m3            (time, dis_along_flowline) float64 27kB 1.28e+07 ......
    volume_bsl_m3        (time, dis_along_flowline) float64 27kB 0.0 0.0 ... 0.0
    volume_bwl_m3        (time, dis_along_flowline) float64 27kB 0.0 0.0 ... 0.0
    ...                   ...
    thickness_m          (time, dis_along_flowline) float64 27kB 24.12 ... 0.0
    ice_velocity_myr     (time, dis_along_flowline) float64 27kB nan nan ... 0.0
    calving_bucket_m3    (time) float64 152B 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
    flux_divergence_myr  (time, dis_along_flowline) float64 27kB nan nan ... 0.0
    climatic_mb_myr      (time, dis_along_flowline) float64 27kB nan nan ... 0.0
    dhdt_myr             (time, dis_along_flowline) float64 27kB nan nan ... 0.0
Attributes:
    class:                MixedBedFlowline
    map_dx:               200.0
    dx:                   2.0
    description:          OGGM model output
    oggm_version:         1.6.2.dev35+g7489be1
    calendar:             365-day no leap
    creation_date:        2024-04-25 13:29:38
    water_level:          0
    glen_a:               6.42968271645714e-24
    fs:                   0
    mb_model_class:       MultipleFlowlineMassBalance
    mb_model_hemisphere:  nh
ds_fl.sel(time=[2003, 2010, 2020]).ice_velocity_myr.plot(hue='time');
../../_images/09e7732de677688f6e2a9661b928b7665f16a82b66c98b8dc240abc62825fca4.png
# The OGGM model flowlines also have the downstream lines
df_regular['OGGM_velocity_run_begin'] = ds_fl.sel(time=2003).ice_velocity_myr.data[:len(df_regular)]
df_regular['OGGM_velocity_run_end'] = ds_fl.sel(time=2020).ice_velocity_myr.data[:len(df_regular)]
df_regular[['obs_velocity', 'OGGM_inversion_velocity',
            'OGGM_velocity_run_begin', 'OGGM_velocity_run_end']].plot();
../../_images/42fd93f720a77a045a3365739ac58bccd095f8a6b5286d5add0b08e4a61a34f9.png

What’s next?#