Published December 23, 2021 | Version v1

OpenForecast results in 2020-2021

Authors/Creators

  • 1. State Hydrological Institute, 199004 Saint Petersburg, Russia

Description

OpenForecast is the first national-scale operational runoff forecasting system in Russia. The presented data supports a research article on a long-term assessment of OpenForecast performance in 2020-2021.

File listing:

  • calibration_vs_hindcast.npy -- Python dictionary that provides results of efficiency assessment for calibration and evaluation (hindcast) periods in terms of NSE and KGE metrics for individual hydrological models (GR4JNSE, GR4JKGE, HBVNSE, HBVKGE).
  • hindcast_vs_forecast.npy -- Python dictionary that provides results of efficiency assessment for hindcast, pre-operational hindcast, and forecast periods in terms of NSE and KGE metrics for individual hydrological models (GR4JNSE, GR4JKGE, HBVNSE, HBVKGE), as well as their ensemble mean (ENS).

  • meteo_forecast.npy -- Python dictionary that reports correlation coefficients between ICON and ERA5 reanalysis for air temperature and precipitation forecasts.

  • users.csv -- daily numbers of OpenForecast users.

Sample code for data access:

import numpy as np
import pandas as pd

calibration_hindcast = np.load("calibration_vs_hindcast.npy", allow_pickle=True).item()

hindcast_forecast = np.load("hindcast_vs_forecast.npy", allow_pickle=True).item()

meteo_forecasts = np.load("meteo_forecast.npy", allow_pickle=True).item()

users = pd.read_csv("users.csv", index_col=0, parse_dates=True, dayfirst=True)

% pandas dataframe for the GR4J_KGE model efficiency in terms of NSE for calibration and hindcast periods
calibration_hindcast["GR4J_KGE"]["NSE"]

% pandas dataframe for the ensemble mean efficiency in terms of NSE for hindcast and forecast periods
hindcast_forecast["ENS"]["NSE"]

% pandas dataframe for correlation coefficients between ICON and ERA5 for precipitation forecasts
meteo_forecasts["P"]["Correlation"]

% available keys of Python dictionaries could be checked as follows
calibration_hindcast.keys()

 

Files

users.csv

Files (474.8 kB)

Name Size Download all
md5:754b5e42adc2becce783af0d905bdd08
104.0 kB Download
md5:d0cd21a4e296d4aac8bf9626bf9516ab
328.1 kB Download
md5:70f71311660342438e2bad57db4801f8
33.7 kB Download
md5:930fe7145fe16da3cd5db104dc0d48a1
9.0 kB Preview Download