-
Notifications
You must be signed in to change notification settings - Fork 14
Description
I've been accessing CONUS404 data via Tallgrass based on the hytest documentation, but have found that not all variables listed in the CONUS404 data release (322 variables, per wrfout_datadictionary.csv) or the publication (https://journals.ametsoc.org/view/journals/bams/104/8/BAMS-D-21-0326.1.xml) are available through this method.
For example, I would like to use the variable MLLCL (Mixed-layer lifting condensation level (LCL)) but it's not among the 153 data variables available when I access CONUS404 using the hytest specified method shown below. How might I find the any of the missing 170 data variables that are listed in the data release and publication but not available through the USGS HPC data access pathway?
`hytest_cat = intake.open_catalog("https://raw.githubusercontent.com/hytest-org/hytest/main/dataset_catalog/hytest_intake_catalog.yml")
cat = hytest_cat['conus404-catalog']
dataset = 'conus404-daily-osn' # have also checked conus404-hourly-osn, conus404-XXX-onprem doesn't appear to work
ds = cat[dataset].to_dask()
ds # to show view of dataset and explore variables`