You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the depths/depth indices that are read from the soil input data files are hardcoded in soil_io.py. These can be moved to a configuration file if desired so later.
See:
Let's move depths_indices = [0, 2, 4, 5, 6, 7] to prepare_soil_data and here consider it as an input argument to the function _read_soil_composition() as : _read_soil_composition(soil_data_path, lat, lon, depths_indices). We can add a ToDo to this module that the depths_indices can be read from config file.
Let's move depths = [0, 5, 30, 60, 100, 200] to prepare_soil_data and here consider it as an input argument to the function _read_hydraulic_parameters() as : _read_hydraulic_parameters(soil_data_path, lat, lon, depths). We can add a ToDo to this module that the depths can be read from config file.
Currently the depths/depth indices that are read from the soil input data files are hardcoded in
soil_io.py
. These can be moved to a configuration file if desired so later.See:
Let's move
depths_indices = [0, 2, 4, 5, 6, 7]
toprepare_soil_data
and here consider it as an input argument to the function _read_soil_composition() as : _read_soil_composition(soil_data_path, lat, lon, depths_indices). We can add a ToDo to this module that thedepths_indices
can be read from config file.Originally posted by @SarahAlidoost in #17 (comment)
Let's move
depths = [0, 5, 30, 60, 100, 200]
toprepare_soil_data
and here consider it as an input argument to the function_read_hydraulic_parameters()
as :_read_hydraulic_parameters(soil_data_path, lat, lon, depths)
. We can add aToDo
to this module that thedepths
can be read from config file.Originally posted by @SarahAlidoost in #17 (comment)
The text was updated successfully, but these errors were encountered: