Skip to content

Module read_output

This module enables the reading of a previously generated NetCDF output file, allowing IGM to operate as though these quantities were freshly computed. It is particularly useful for testing the postprocessing module in isolation.

Parameters

Default configuration file (read_output.yaml):

read_output:
  input_file: output.nc
  crop: False
  xmin: -1.0e+20
  xmax: 1.0e+20
  ymin: -1.0e+20
  ymax: 1.0e+20

Description of the parameters:

Name Description Default value Units
input_file NetCDF input data file. output.nc
crop Crop the data from NetCDF file with given top/down/left/right bounds. False
xmin X left coordinate for cropping the NetCDF data. -1e+20 m
xmax X right coordinate for cropping the NetCDF data. 1e+20 m
ymin Y bottom coordinate for cropping the NetCDF data. -1e+20 m
ymax Y top coordinate for cropping the NetCDF data. 1e+20 m

Contributors: Guillaume Jouvet.