Exported Files¶
HOLMES exports results in CSV and JSON formats from calibration, simulation, and projection pages.
Calibration Exports¶
Parameters (JSON)¶
Filename: <catchment>_<model>_params.json
Contains the calibration configuration and optimized parameters.
{
"catchment": "Au Saumon",
"hydroModel": "gr4j",
"snowModel": "cemaneige",
"objective": "nse",
"start": "1980-01-01",
"end": "1990-12-31",
"hydroParams": {
"X1": 350.2,
"X2": -0.5,
"X3": 90.1,
"X4": 1.5
}
}
Results (JSON)¶
Filename: <catchment>_<model>_calibration_results.json
Contains the optimization history with parameters and objective values at each iteration.
{
"parameters": [
{"X1": 300.0, "X2": 0.0, "X3": 50.0, "X4": 1.0},
{"X1": 350.2, "X2": -0.5, "X3": 90.1, "X4": 1.5}
],
"nse": [0.65, 0.82]
}
Timeseries (CSV)¶
Filename: <catchment>_<model>_calibration_data.csv
Daily observed and simulated streamflow.
Simulation Exports¶
Results (JSON)¶
Filename: <catchment>_simulation_results.json
Contains configuration and performance metrics for all simulations.
{
"calibrationConfig": [
{
"name": "simulation_1",
"catchment": "Au Saumon",
"hydroModel": "gr4j",
"params": [350.2, -0.5, 90.1, 1.5]
}
],
"config": {
"start": "1991-01-01",
"end": "2000-12-31"
},
"results": {
"nse": [0.78],
"kge": [0.81]
}
}
Timeseries (CSV)¶
Filename: <catchment>_simulation_data.csv
Daily streamflow with columns for each simulation and observations.
Projection Exports¶
Timeseries (CSV)¶
Filename: <catchment>_projection_data.csv
Daily simulated streamflow for the selected projection scenario.
date,streamflow,model,horizon,scenario
2050-01-01,0.32,CSI,2050,RCP45
2050-01-02,0.35,CSI,2050,RCP45
Results (CSV)¶
Filename: <catchment>_projection_results.csv
Summary metrics for each ensemble member.