CONUS404 Access#

This section contains notebooks that demonstrate how to access and perform basic data manipulation for the CONUS404 dataset.

In the CONUS404 intake sub-catalog (see here for an explainer of our intake data catalog), you will see entries for four CONUS404 datasets: conus404-hourly, conus404-daily, conus404-monthly, and conus404-daily-diagnostic data. Each of these datasets is duplicated in three different storage locations (as the intake catalog section also describes). The conus404-hourly data is a subset of the wrfout model output and conus404-daily-diagnostic is a subset from the wrfxtrm model output, both of which are described in the official CONUS404 data release. We also have conus404-daily and conus404-monthly files, which are just resampled from the conus404-hourly data.

Please note that the values in the ACLWDNB, ACLWUPB, ACSWDNB, ACSWDNT, and ACSWUPB variables available in the zarr store differ from the original model output. These variables have been re-calculated to reflect the accumulated value since the model start, as directed in the WRF manual. An attribute has been added to each of these variables in the zarr store to denote the accumulation period for the variable.

We currently have five notebooks to help demonstrate how to work with these datasets in a python workflow:

  • Explore CONUS404 Dataset: opens the CONUS404 dataset, loads and plots the entire spatial domain of a specified variable at a specfic time step, and loads and plots a time series of a variable at a specified coordinate pair.

  • CONUS404 Temporal Aggregation: calculates a daily average of the CONUS404 hourly data.

  • CONUS404 Spatial Aggregation: calculates the area-weighted mean of the CONUS404 data for all HUC12s in the Delaware River Basin.

  • CONUS404 Point Selection: samples the CONUS404 data at a selection of gage locations using their lat/lon point coordinates.

  • CONUS404 Regridding (Curvilinear => Rectilinear): regrids a subset of the CONUS404 dataset from a curvilinear grid to a rectilinear grid and saves the output to a netcdf file. The package used in this demo is not compatible with Windows. We hope to improve upon this methodology, and will likely update the package/technique used in the future.

These methods are likely applicable to many of the other key HyTEST datasets that can be opened with xarray.

Note: If you need help setting up a computing environment where you can run these notebooks, you should review the Computing Environments section of the documentation.