USGS Streamflow and USBR reservoir inflow data usage

Both allowed data sources streamflow and reservoir inflow has a remark that solutions should not be attempting to model the adjustments for calculating naturalized flow, as these are impacted by water management operations that may in general be influenced by forecasts.
Can we use these data sources as additional inputs together with other data sources to the forecast model? Or we can’t use it as the model’s input at all?

I also would like to know how to download the USBR inflow. If we have to write it by ourselves, how to include that piece into the submission code.

Hi @RomanChernenko, @motoki,

Both of these data sources are available to use as features in your modeling. To give some possible ideas of how one may incorporate them:

  • The observed streamflow at some particular location in a forecast site’s drainage basin might be correlated with inputs into that basin surface water. For example, maybe there is a streamgage upstream of any human impairments.
  • The observed streamflow at some particular location might be a proxy for a forecast site’s naturalized flow, in a case where the monthly naturalized flow isn’t available.

The remark about modeling the adjustments for calculating naturalized flow is to help direct your modeling efforts productively in alignment with the goals of the challenge. The way that naturalized flow (the target variable) is determined is that the observed streamflow at the forecast site is adjusted (added to or subtracted from) with upstream observed measurements associated with human impairments (e.g., diversions or discharges). One possible way to approach modeling naturalized flow is to forecast the observed streamflow at the forecast site and also to forecast the upstream adjustments and then calculate a derived naturalized flow forecast from all of those. This is discouraged because it involves modeling operational actions (the adjustments) that would be influenced by forecasts in practice. Instead, the goal is to model the natural inputs of water into the drainage basin system.

Let me know if you have further questions.

1 Like

Many thanks for your reply.

I haven’t understood. USBR inflow is the same as USBR flow?

In the configuration file, I only see

  • name: usgs_streamflow

There is no usbr_streamflow.

Hi @motoki,

We currently are not rehosting any USBR data that will be mounted to the code execution runtime. Instead, the USBR reservoir inflow data source is approved for direct API access. You may query the USBR RISE API during the code execution run. This is all documented here.

Thanks for your replies.

Could we assume that all the libraries in the file data_download/requirements.txt are available in the runtime env?

Hi @motoki,

Please do not make any assumptions about what packages are available in the runtime environment. You can see all exact packages and versions that are installed in the runtime/conda-lock-gpu.yml lock file. You can also pull the runtime Docker image, which you can use to test your submission locally, or open up a shell to inspect the environment yourself. Instructions for this are in the README.

To address your question specifically, data_download/requirements.txt is not an input to specifying the runtime environment, so you should not assume that libraries in that file will be available.

Hello,

We have updated the code in the git repos. Could you verify and merge the 2 PRs ? Oh you could simply adapt the files and ignore my PRs.