diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..4b6cb5da --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +*.nc4.gz filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text diff --git a/.prettierignore b/.prettierignore index 0dbe12f1..05d464b3 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,6 +1,9 @@ tmp/ .github/ +# Ignore the data_samples +data_samples/ + # FIXME: Maybe we should lint/format the k8s files? kubernetes/ diff --git a/README.md b/README.md index a8881d0f..6253c66c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Unified Graphics -An experimental visualization system for 3D-RTMA & RRFS model output. +An experimental visualization system for 3D-RTMA & RRFS model output. This project ended Sept 2024. + +An example of the input data and internal application data can be found in the `data_samples` directory. ## Get in Touch diff --git a/data_samples/README.md b/data_samples/README.md new file mode 100644 index 00000000..69bdecdc --- /dev/null +++ b/data_samples/README.md @@ -0,0 +1,106 @@ +# Data Sample + +## Input Data + +The input data directory mimics the structure of our input S3 bucket. The application was designed to consume NetCDF file output from [Gridpoint Statistical Interpoliation (GSI) diagnostic files](https://web.archive.org/web/20240521023824/https://dtcenter.org/sites/default/files/community-code/gsi/docs/users-guide/html_v3.7/gsi_ch3.html#gsi-analysis-result-files-in-run-directory). + +## App Data + +This directory contains outlines of the Zarr data structure, a dump from our SQL database, and the outlines of the Parquet data structure. + +- `app_data/s3_diag_zarr_inventory.*.txt` - a few files showing the bucket layout of the Zarr array in S3. One focus is on the general group structure, the other file is focused on data for a particular day. The full array was to big to preserve and it was difficult to extract a subset. +- `app_data/*.sql` - the SQL DB dump +- `app_data/HRRR_RTMA_.../...` - the parquet store with sample data + +## Parquet Data Structure + +We attempted to use Parquet tables to get around some limitations we were finding with Zarr arrays. The jury is still out if a tabular or array form is better for accessing the data. There's a chance our Zarr array was just too large (we only had one for all data) and we could have benefitted by creating numerous Zarr arrays with consolidated metadata. + +```python +>>> import pyarrow.parquet as pq +>>> import pandas as pd +>>> parquet_table = pq.read_table('RTMA_HRRR_WCOSS_CONUS_REALTIME/t/loop=anl/0004ee89f24c4f4784f76d1384e23588-0.parquet') +>>> df = parquet_table.to_pandas() +>>> print(df) +nobs observation forecast_unadjusted forecast_adjusted obs_minus_forecast_unadjusted obs_minus_forecast_adjusted latitude longitude is_used initialization_time +0 226.350006 225.855835 225.855835 0.494174 0.494174 32.733002 -125.932999 False 2024-03-07 09:00:00 +1 225.949997 226.027313 226.027313 -0.077320 -0.077320 32.910000 -125.223007 False 2024-03-07 09:00:00 +2 226.149994 225.890976 225.890976 0.259025 0.259025 32.813000 -125.639999 False 2024-03-07 09:00:00 +3 226.350006 225.801147 225.801147 0.548863 0.548863 32.715000 -126.057999 False 2024-03-07 09:00:00 +4 226.550003 226.019058 226.019058 0.530942 0.530942 32.615002 -126.477005 False 2024-03-07 09:00:00 +... ... ... ... ... ... ... ... ... ... +73958 273.750000 273.555115 273.586578 0.194870 0.163422 46.250832 -63.334167 True 2024-03-07 09:00:00 +73959 273.750000 273.594238 273.586578 0.155760 0.163422 46.250832 -63.334167 True 2024-03-07 09:00:00 +73960 272.549988 273.157928 273.146973 -0.607946 -0.596997 46.299500 -63.176331 True 2024-03-07 09:00:00 +73961 273.149994 273.147095 273.147003 0.002895 0.003003 46.299500 -63.176331 True 2024-03-07 09:00:00 +73962 273.149994 273.060333 273.147003 0.089654 0.003003 46.299500 -63.176331 True 2024-03-07 09:00:00 + +[73963 rows x 9 columns] +>>> parquet_table = pq.read_table('RTMA_HRRR_WCOSS_CONUS_REALTIME/t/loop=anl/0019cd0014f94635aad5b82c4c4b7cb4-0.parquet') +>>> df = parquet_table.to_pandas() +>>> print(df) +nobs observation forecast_unadjusted forecast_adjusted obs_minus_forecast_unadjusted obs_minus_forecast_adjusted latitude longitude is_used initialization_time +0 226.449997 226.298874 226.298874 0.151119 0.151119 31.202000 -123.207993 True 2023-11-13 20:00:00 +1 226.149994 226.220901 226.220901 -0.070908 -0.070908 31.150000 -123.460999 True 2023-11-13 20:00:00 +2 225.949997 226.098465 226.098465 -0.148462 -0.148462 31.118999 -123.718002 False 2023-11-13 20:00:00 +3 225.949997 226.062836 226.062836 -0.112842 -0.112842 31.118000 -123.742004 True 2023-11-13 20:00:00 +4 226.149994 225.935959 225.935959 0.214042 0.214042 31.098000 -124.001999 True 2023-11-13 20:00:00 +... ... ... ... ... ... ... ... ... ... +92779 275.350006 275.182159 275.144073 0.167840 0.205931 46.250832 -63.334167 True 2023-11-13 20:00:00 +92780 275.350006 275.256195 275.408539 0.093802 -0.058537 46.299500 -63.176331 False 2023-11-13 20:00:00 +92781 275.350006 275.271393 275.408539 0.078619 -0.058537 46.299500 -63.176331 False 2023-11-13 20:00:00 +92782 275.350006 275.271393 275.408539 0.078619 -0.058537 46.299500 -63.176331 True 2023-11-13 20:00:00 +92783 274.850006 275.256195 275.408539 -0.406198 -0.558537 46.299500 -63.176331 True 2023-11-13 20:00:00 +>>> parquet_table = pq.read_table('RTMA_HRRR_WCOSS_CONUS_REALTIME/t/loop=ges/001760e535744f958328694b4b0a68b3-0.parquet') +>>> pd = parquet_table.to_pandas() +>>> print(pd) +nobs observation forecast_unadjusted forecast_adjusted obs_minus_forecast_unadjusted obs_minus_forecast_adjusted latitude longitude is_used initialization_time +0 221.149994 220.868866 220.868866 0.281134 0.281134 35.980000 -125.253006 False 2024-04-23 14:00:00 +1 220.149994 220.890320 220.890320 -0.740329 -0.740329 36.037998 -125.147003 False 2024-04-23 14:00:00 +2 282.850006 282.224060 282.342255 0.625944 0.507754 46.143330 -131.089996 False 2024-04-23 14:00:00 +3 282.950012 282.224060 282.342255 0.725944 0.607754 46.143330 -131.089996 False 2024-04-23 14:00:00 +4 282.950012 282.224060 282.342255 0.725944 0.607754 46.143330 -131.089996 False 2024-04-23 14:00:00 +... ... ... ... ... ... ... ... ... ... +96622 278.750000 278.530273 279.071014 0.219722 -0.321001 46.250832 -63.334167 False 2024-04-23 14:00:00 +96623 279.250000 278.215424 278.905365 1.034572 0.344643 46.299500 -63.176331 False 2024-04-23 14:00:00 +96624 279.250000 278.215424 278.905365 1.034572 0.344643 46.299500 -63.176331 False 2024-04-23 14:00:00 +96625 279.250000 278.197266 278.905365 1.052734 0.344643 46.299500 -63.176331 False 2024-04-23 14:00:00 +96626 279.250000 278.215424 278.905365 1.034572 0.344643 46.299500 -63.176331 False 2024-04-23 14:00:00 + +[96627 rows x 9 columns] +``` + +## Zarr Data Structure + +To give an idea of the shape of the data in a Zarr array: + +```python +>>> import xarray +>>> import zarr +>>> ds = xarray.open_dataset("s3://osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2024-09-18T00:00/anl/", engine="zarr") +>>> print(ds) + Size: 3MB +Dimensions: (nobs: 116004) +Coordinates: + is_used (nobs) bool 116kB ... + latitude (nobs) float32 464kB ... + longitude (nobs) float32 464kB ... +Dimensions without coordinates: nobs +Data variables: + forecast_adjusted (nobs) float32 464kB ... + forecast_unadjusted (nobs) float32 464kB ... + obs_minus_forecast_adjusted (nobs) float32 464kB ... + obs_minus_forecast_unadjusted (nobs) float32 464kB ... + observation (nobs) float32 464kB ... +Attributes: + background: HRRR + domain: CONUS + frequency: REALTIME + initialization_time: 2024-09-18T00:00 + loop: anl + model: RTMA + name: t + system: WCOSS +``` + +The "first guess" (ges) file has a similar structure. diff --git a/data_samples/app_data/RTMA_HRRR_WCOSS_CONUS_REALTIME/t/loop=anl/0019cd0014f94635aad5b82c4c4b7cb4-0.parquet b/data_samples/app_data/RTMA_HRRR_WCOSS_CONUS_REALTIME/t/loop=anl/0019cd0014f94635aad5b82c4c4b7cb4-0.parquet new file mode 100644 index 00000000..6ad22d87 --- /dev/null +++ b/data_samples/app_data/RTMA_HRRR_WCOSS_CONUS_REALTIME/t/loop=anl/0019cd0014f94635aad5b82c4c4b7cb4-0.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ddcd2a2a839c4bd207f7a672bf72390ea3933db8a56f2fba48f235ab4c6f02f +size 2934559 diff --git a/data_samples/app_data/RTMA_HRRR_WCOSS_CONUS_REALTIME/t/loop=ges/001760e535744f958328694b4b0a68b3-0.parquet b/data_samples/app_data/RTMA_HRRR_WCOSS_CONUS_REALTIME/t/loop=ges/001760e535744f958328694b4b0a68b3-0.parquet new file mode 100644 index 00000000..d36f92e5 --- /dev/null +++ b/data_samples/app_data/RTMA_HRRR_WCOSS_CONUS_REALTIME/t/loop=ges/001760e535744f958328694b4b0a68b3-0.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfe84afd7270b99c5739e5853214f56602ac8f502c39fd2a42ccf29aa1a9bbe +size 3128616 diff --git a/data_samples/app_data/rtma-vis.sql b/data_samples/app_data/rtma-vis.sql new file mode 100644 index 00000000..09549424 Binary files /dev/null and b/data_samples/app_data/rtma-vis.sql differ diff --git a/data_samples/app_data/s3_diag_zarr_inventory.2023-04-24T15:00.full.txt b/data_samples/app_data/s3_diag_zarr_inventory.2023-04-24T15:00.full.txt new file mode 100644 index 00000000..cae3fb24 --- /dev/null +++ b/data_samples/app_data/s3_diag_zarr_inventory.2023-04-24T15:00.full.txt @@ -0,0 +1,112 @@ +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/.zmetadata +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00 +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/.zattrs +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/is_used +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/latitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/longitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/obs_minus_forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/obs_minus_forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/anl/observation +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/.zattrs +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/is_used +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/latitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/longitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/obs_minus_forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/obs_minus_forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps/2023-04-24T15:00/ges/observation +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00 +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/.zattrs +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/is_used +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/latitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/longitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/obs_minus_forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/obs_minus_forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/anl/observation +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/.zattrs +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/is_used +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/latitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/longitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/obs_minus_forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/obs_minus_forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q/2023-04-24T15:00/ges/observation +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00 +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/.zattrs +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/is_used +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/latitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/longitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/obs_minus_forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/obs_minus_forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/anl/observation +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/.zattrs +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/is_used +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/latitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/longitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/obs_minus_forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/obs_minus_forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t/2023-04-24T15:00/ges/observation +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00 +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/.zattrs +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/component +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/is_used +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/latitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/longitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/obs_minus_forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/obs_minus_forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/anl/observation +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/.zattrs +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/.zgroup +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/component +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/is_used +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/latitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/longitude +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/obs_minus_forecast_adjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/obs_minus_forecast_unadjusted +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv/2023-04-24T15:00/ges/observation + diff --git a/data_samples/app_data/s3_diag_zarr_inventory.overview.txt b/data_samples/app_data/s3_diag_zarr_inventory.overview.txt new file mode 100644 index 00000000..157d16e7 --- /dev/null +++ b/data_samples/app_data/s3_diag_zarr_inventory.overview.txt @@ -0,0 +1,16 @@ +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/ps +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/q +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/t +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/HRRR/REALTIME/uv +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/RRFS +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/RRFS/REALTIME +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/RRFS/REALTIME/ps +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/RRFS/REALTIME/q +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/RRFS/REALTIME/t +osti-modeling-dev-rtma-vis-prod/diagnostics.zarr/RTMA/WCOSS/CONUS/RRFS/REALTIME/uv diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170000.HRRR.nc4.gz new file mode 100644 index 00000000..168ada0e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:661b463f9c5e372533986739adc145599c69336de3d9a969375c6c47ccc2d43b +size 2673433 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170100.HRRR.nc4.gz new file mode 100644 index 00000000..332ec3b4 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f85e792a57b22279cf54304a18beacfb10561e6b33da6e493254a9cb3cc29c3 +size 2536149 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170200.HRRR.nc4.gz new file mode 100644 index 00000000..4f9617c6 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010fb8e8005523926f202baa47194d834c62f6aa82a8a471deaf1304bba1c130 +size 2616814 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170300.HRRR.nc4.gz new file mode 100644 index 00000000..41f1c833 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64df5ff737db88d8a17e6c7ad696afc0e0de7169668afffb57b0165e4bd03df8 +size 2327676 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170400.HRRR.nc4.gz new file mode 100644 index 00000000..edab043a --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa1bed196bca62194b9e84a5f84371ae6f159b8d88fb6a95677fb41eb85ec22 +size 2536545 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170500.HRRR.nc4.gz new file mode 100644 index 00000000..2f84bd74 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d04a5e7fee83c453060072a1bd4f9cc6cedaab4317f738d32ecef83512e6d5b +size 2518473 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170600.HRRR.nc4.gz new file mode 100644 index 00000000..130016d6 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131dff21aad3d26a5024e889aad1fbbd7bc1815cf2d47cfc816b572408a993dc +size 2637317 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170700.HRRR.nc4.gz new file mode 100644 index 00000000..a6f14399 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e98ae333ec0839dcff9dd8752002776c370f4942832f681328a64f0b7cc76a +size 2564960 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170800.HRRR.nc4.gz new file mode 100644 index 00000000..d620ed7a --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b03c3a614fa3069550c8693e3a3ca2b7a0aafa715a48d37f8e18dd31b5efc3 +size 2361517 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170900.HRRR.nc4.gz new file mode 100644 index 00000000..e9349235 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409170900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c53b97089554a24276899cdcc3af74e6dd6f179e93ccac8cd85d3045e00285 +size 2590043 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171000.HRRR.nc4.gz new file mode 100644 index 00000000..30505032 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88fe0708f9bcf7376b6c3ad27632b175ec3219675304ba785f3dcff8984a95a8 +size 2599032 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171100.HRRR.nc4.gz new file mode 100644 index 00000000..e631d349 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537045c5112869259af895986f655aacbf69feb59ff6298f27847c4a1e3088a4 +size 2593685 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171200.HRRR.nc4.gz new file mode 100644 index 00000000..07f7a8e1 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b74e0ab6c651bab2903542c9728d6a65ef973a310da5c36d56dcd2e1b855906 +size 2644219 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171300.HRRR.nc4.gz new file mode 100644 index 00000000..26a643eb --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0512b51d80701226a6fad2cf582e531b282ff4e5c9b0300b9987c3f292d95a71 +size 2595166 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171400.HRRR.nc4.gz new file mode 100644 index 00000000..67685156 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c33967b9f5b49e7a4f6b81c95f7cdbf02c1471c1c2da4bc2ed78a25a98991d6 +size 2657441 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171500.HRRR.nc4.gz new file mode 100644 index 00000000..4cdc2547 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06509b41d63ab19d6f66b229cdd6027acdbd0f7479df6822b7a00f846550d2d +size 2648424 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171600.HRRR.nc4.gz new file mode 100644 index 00000000..35d82fa1 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d1d3ff93ebe6f33d6e27ff2ef755dbc024596fda09db75ed78f3042d93d9dad +size 2654941 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171700.HRRR.nc4.gz new file mode 100644 index 00000000..8e8f8109 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83baf20b3c56451b0966337662bdbaa396932e395630648400e472bee572378a +size 2500236 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171800.HRRR.nc4.gz new file mode 100644 index 00000000..75e92862 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6c056756f33ed83a92b862c4429fda8e394aa014e5fc97d9afba2bb7ea294b +size 2678959 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171900.HRRR.nc4.gz new file mode 100644 index 00000000..6554b325 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409171900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21df451ff73f7ff51212a4028cee30fda1ff844288f74c3f92f04006ee70aaaf +size 2666508 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172000.HRRR.nc4.gz new file mode 100644 index 00000000..bdd09e66 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:912117cf0d4bc3ad2465aa03945629066f84b36b6ed56dd907eea16796b1cc0b +size 1796834 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172100.HRRR.nc4.gz new file mode 100644 index 00000000..c357c76f --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db897820f36b2a8bedd14d7d6f6081f4f4faf25465139cee798921502c539b8 +size 1798649 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172200.HRRR.nc4.gz new file mode 100644 index 00000000..a0b7ba3c --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc8d9bbc712af44602da0190d7fbe20533aa748213891fb90b199f13640088f +size 1808335 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172300.HRRR.nc4.gz new file mode 100644 index 00000000..2071e27d --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_anl.202409172300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ddbc8eabc25a921e4a6e42397815daf9ead0cfb6bca9df0cfbf12f78cccd327 +size 1812722 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170000.HRRR.nc4.gz new file mode 100644 index 00000000..2d299da0 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9986822f8f6eee33ffef1a6d2c4adee8bb8501042f64444f0ee6a1c5d76bb01c +size 2670074 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170100.HRRR.nc4.gz new file mode 100644 index 00000000..358a1ff4 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd9174a9128321f96771f1bf13aebc14911a467a7630e4898243e69f76932af +size 2532136 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170200.HRRR.nc4.gz new file mode 100644 index 00000000..e3a05c57 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d123117d4692f4cba8285eadecbdd7ca9462170dc82b35aa90e591483ca938e +size 2613482 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170300.HRRR.nc4.gz new file mode 100644 index 00000000..9e24b1b1 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6952497304915af8948e9689f59744d092d3f3a709c31eed9d83d2a24688a70b +size 2324683 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170400.HRRR.nc4.gz new file mode 100644 index 00000000..0f0bd087 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afcd0afadb2602eba0965df74c0f96efea617de6ba6f7551f3a7f895393dbfc1 +size 2531977 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170500.HRRR.nc4.gz new file mode 100644 index 00000000..2bd15b0a --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74fd8f7728a2c7205422996df1604c950023eb02c9c824f962ef828d16a1d6e0 +size 2515776 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170600.HRRR.nc4.gz new file mode 100644 index 00000000..54df3f74 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f51295d80aa92c39b7732cac077f498153695b4491bf926a8a30b3d64779ae9 +size 2633547 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170700.HRRR.nc4.gz new file mode 100644 index 00000000..700f3528 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d0398b8c83ff3ec56aef907fb00534d8a44d66f4aa978f8a87c1659022b513 +size 2562345 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170800.HRRR.nc4.gz new file mode 100644 index 00000000..7c389b4a --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c4d1fd99c436cc7c494c91996d31df7457c0afa930cd6bc59ec8bb6bbafec9 +size 2358787 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170900.HRRR.nc4.gz new file mode 100644 index 00000000..546b874d --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409170900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7235c6615dcdf751adcdd5ef34a904db6103edb58f708a1408d346504c9f4b7f +size 2587517 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171000.HRRR.nc4.gz new file mode 100644 index 00000000..3c4cf7c4 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f40348e2aa842c4b0f146e5008fbe8afb3a647b824c91d78976411b7b82106 +size 2596709 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171100.HRRR.nc4.gz new file mode 100644 index 00000000..54b82391 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eaf17bd1ed228811a14f50d4591ba8eeb118b684d2b63a64c6cb7ef8382eaf8 +size 2591166 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171200.HRRR.nc4.gz new file mode 100644 index 00000000..36562561 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e8108f91a89fc16636217b7447e314846c3c8e6dba99dfdb78ae5b18db6373 +size 2640830 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171300.HRRR.nc4.gz new file mode 100644 index 00000000..f1620121 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4587f0146608a694895cb0f2d2a194cc0469823e6a4490a2c7c4e8440c04c4c1 +size 2592552 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171400.HRRR.nc4.gz new file mode 100644 index 00000000..59ff725e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f80ba816387d0be0c04b5cd07a772ba7cb02b8a7bf39139d3c23f007887e918 +size 2653902 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171500.HRRR.nc4.gz new file mode 100644 index 00000000..2e942433 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cfb42f096fe87a9c2afbd2083b98b31e77a59295f807598fcdb4bf7c44097d6 +size 2645539 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171600.HRRR.nc4.gz new file mode 100644 index 00000000..358f44ec --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0179cd4675cccf9010f096583128a3572541badefa8226abd77684fbb445272 +size 2650302 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171700.HRRR.nc4.gz new file mode 100644 index 00000000..8be19c5e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cbde98fad878157a8f9ca5cc0c872ca0d575319cd77f25d8aac21e7b4558945 +size 2497791 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171800.HRRR.nc4.gz new file mode 100644 index 00000000..cc81377f --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e203819f82ace201159a665477433d9ce24b5009181d63d35e8167b3e1dcb41 +size 2674733 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171900.HRRR.nc4.gz new file mode 100644 index 00000000..b8ef8191 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409171900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca619f4f5219b197a922ebe43e6eac578000e4347b8dbfeea15d95f005a5511 +size 2662147 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172000.HRRR.nc4.gz new file mode 100644 index 00000000..16290c14 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa51fd68ec0554332d8bef51a6ff83ce8e239535619279a85759d1e7f44ae39 +size 1795596 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172100.HRRR.nc4.gz new file mode 100644 index 00000000..efd52ea8 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98b73dd25746a71bb8bdcde1a5d9cbc4581cf65a87f634a36b328ea0b4d6a9e +size 1797002 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172200.HRRR.nc4.gz new file mode 100644 index 00000000..98af74dd --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5017af658803440be82b350dbb9830c45c587b94032330207cd4eaaf03026bfa +size 1806335 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172300.HRRR.nc4.gz new file mode 100644 index 00000000..dff83141 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_ps_ges.202409172300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936f0c897c3c93325ce0dd789fd68749d1c3f3853ba6496bc8c67fe96a89a902 +size 1810984 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170000.HRRR.nc4.gz new file mode 100644 index 00000000..1ef07725 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9e4b83c81dde6ecd6f7e0f14114207d3224de4bdce20a00931644f2b6b0ef7 +size 3942403 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170100.HRRR.nc4.gz new file mode 100644 index 00000000..d2a47994 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f906aa2ff9d76acfc7f3177fc6735404a573b6a5564df0f7b97a700794c1b1 +size 3362309 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170200.HRRR.nc4.gz new file mode 100644 index 00000000..249a751c --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21fdce8ec5acd13536a1f6c2114cad5655bfa0a9398c61d08617446cc5607aea +size 3215139 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170300.HRRR.nc4.gz new file mode 100644 index 00000000..f367b201 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45cc303ae74e9bee7d81cc3e72d1912dac74595c630e43167f97edad5e3d3be6 +size 2861544 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170400.HRRR.nc4.gz new file mode 100644 index 00000000..0d0cd6c6 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9d76db5a9e8231987e214d0b7d1a1bc46e7114114ecb49ddaa4df77104fd4b +size 3114993 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170500.HRRR.nc4.gz new file mode 100644 index 00000000..4b8e40df --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99678dbe88bc7d948c93b9878a251dcdc6fce52c19faa85aa3481ed240446033 +size 3043565 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170600.HRRR.nc4.gz new file mode 100644 index 00000000..ec2e42b1 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94efac65459b078b13e25d3834e46d02506f6100af57a0b13a9a403071c1b3ad +size 3114137 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170700.HRRR.nc4.gz new file mode 100644 index 00000000..ad863441 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30682a76eeddd42accefab210152fb5c94c08e658c87ec655ffdee0a2ba356da +size 3014010 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170800.HRRR.nc4.gz new file mode 100644 index 00000000..f81aef75 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cec57449b4eefabb20061950aa241b9af3ac58a9a181cd4694475b35f1e99e4 +size 2742999 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170900.HRRR.nc4.gz new file mode 100644 index 00000000..988db0bc --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409170900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb0bc0c63c6aef84d5b9cf658f0997b4d34e6339fbc740541aa90dab57df9a3 +size 3041160 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171000.HRRR.nc4.gz new file mode 100644 index 00000000..b2503574 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b92903fa52cf06f0828dc84568a02b4c521377c89e60fc07a37b712b20077f +size 3051485 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171100.HRRR.nc4.gz new file mode 100644 index 00000000..59979cf7 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b7042420a069b8b6f50355aee22fdda57bc3e4e45b50c291fc24e1ca4fe8051 +size 3006755 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171200.HRRR.nc4.gz new file mode 100644 index 00000000..68c7d3d9 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eaaee367d8c351a89b50d6c8ecb9fec582cb360dee038a40adff91fe13d33a4 +size 3744229 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171300.HRRR.nc4.gz new file mode 100644 index 00000000..a51119f2 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e30582ff441dc7d3a7fdaf1833725bacd015a03a5d054e741515b84afbb94926 +size 3364612 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171400.HRRR.nc4.gz new file mode 100644 index 00000000..f181a17f --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1656037bf144b2e428e7ebdd40f1e495caa9d579a941a5336f666099bca326 +size 3175913 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171500.HRRR.nc4.gz new file mode 100644 index 00000000..51eddbff --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a896c48dac23958da561aaed1ff6d9ea5601ca4257e9ac5b8f4a77067c9d0d76 +size 3216446 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171600.HRRR.nc4.gz new file mode 100644 index 00000000..7a120583 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e314435c7b1c33d4347cc31e2473e558b8b025d9b0bff0abd090903f18d6b742 +size 3260330 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171700.HRRR.nc4.gz new file mode 100644 index 00000000..2344a0ac --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e805ac08a7164370431ac6c0824adcc2e766874d31e181999ceb4d3a8d76c1a +size 3039116 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171800.HRRR.nc4.gz new file mode 100644 index 00000000..67f2f437 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0256f8e9e6033b4c0a3e7975e26c10d96423a2d3ca27cc44f03317013aa5e8 +size 3281466 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171900.HRRR.nc4.gz new file mode 100644 index 00000000..18761319 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409171900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac847536e3975180cef7e72c5ea883bb1e7278845edef3f617b4a13a4add16d6 +size 3294218 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172000.HRRR.nc4.gz new file mode 100644 index 00000000..d8d6e054 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b190902f58fb77859afc3b701694e7e686d0e5aa9dc76aa152c96763c49d8166 +size 2195119 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172100.HRRR.nc4.gz new file mode 100644 index 00000000..91810da2 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00684268451d6d0e5e567d04c87141ea2d3d696125bb405b70b07225e359fa2 +size 2174841 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172200.HRRR.nc4.gz new file mode 100644 index 00000000..8e2a145b --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:887333e561198a3a16cecbf18a56f3284bead33d89007b22520fac19ad07412f +size 2213765 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172300.HRRR.nc4.gz new file mode 100644 index 00000000..240edd1b --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_anl.202409172300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4ee8df986c761082ff69a84f833f7b8164bc7b93d05d41cc36d916811cbc7e +size 2211905 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170000.HRRR.nc4.gz new file mode 100644 index 00000000..70f5b0dc --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28987eae3a47d12c591b4facacfe646cf68c157b12ad6a48474095aa87828d06 +size 3976768 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170100.HRRR.nc4.gz new file mode 100644 index 00000000..de90dc1d --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:755a7fcb5b0262c14e1445d58c5ebf5650e9c0488bb1c470af6764a221585f9f +size 3372517 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170200.HRRR.nc4.gz new file mode 100644 index 00000000..51431e77 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39f1f4519c6d76642d29c8824ea18635b8d79059bcdddeb91918a43543d4222 +size 3216108 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170300.HRRR.nc4.gz new file mode 100644 index 00000000..678ec4d9 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c6c17ca841d5e8f2bf4db52b6d1c35f2a167a5830b96ef4f841948bfd07a9d +size 2859836 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170400.HRRR.nc4.gz new file mode 100644 index 00000000..ef80f02c --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9858c61d0d9bed846fa37e0a1717d595752599f4f5806741a4511fe61b64f2eb +size 3112442 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170500.HRRR.nc4.gz new file mode 100644 index 00000000..6892eb40 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48cbb0c4e308c6b9b8e2e5ab4398f0be578b9cc21c389ea2dbd2b6ec99276353 +size 3040421 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170600.HRRR.nc4.gz new file mode 100644 index 00000000..e86d3722 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124e6a48a9cd3558549368b47b33bb18adfb4a69fe4520531ac3085029026140 +size 3109732 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170700.HRRR.nc4.gz new file mode 100644 index 00000000..01a93713 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3561dfc9119c52bf70418254607ba35b717ef259ee311437bf10d3fd5253ee +size 3010127 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170800.HRRR.nc4.gz new file mode 100644 index 00000000..52084382 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22e76dfc90c5840eba7cd7c54f6224679f320e6f48ccd4eb6a3c1abfe167f5c8 +size 2739632 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170900.HRRR.nc4.gz new file mode 100644 index 00000000..cc58cc94 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409170900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad97ef25435778d65408461309ef78112abb4d2fe63c7845257fb5259a47a6c +size 3037578 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171000.HRRR.nc4.gz new file mode 100644 index 00000000..323e20f4 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7574e6a7318cdace262003ec747015d3f84458561ae9d327e6f18068c620da38 +size 3048189 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171100.HRRR.nc4.gz new file mode 100644 index 00000000..436b8004 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d4492d735ee1dc3919b430c25e21e9e0b7b50b94ced6f5197ae5868cfa73de +size 3005258 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171200.HRRR.nc4.gz new file mode 100644 index 00000000..392f3183 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7d56468b583598af3d6fa87df5dd7098fd7a62d4e4ff76a96931a9fac0df5b +size 3739712 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171300.HRRR.nc4.gz new file mode 100644 index 00000000..e8953053 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c424a9d8d3f1f0ba50e8b0d80036f3c0f3aed01f3dcffc717d7bf8dbcb3ad8d7 +size 3359079 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171400.HRRR.nc4.gz new file mode 100644 index 00000000..5a5acfcb --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00ee1eb19e009694fc4a6e19b86792a44988940782722c02eafe746b1ddbc16 +size 3171343 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171500.HRRR.nc4.gz new file mode 100644 index 00000000..a790ae1e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711709a0e7fa17dc918d7abec5f3d383f4f5d6a24c8d5f95a7bca40a201bf914 +size 3215329 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171600.HRRR.nc4.gz new file mode 100644 index 00000000..0f0e0bf9 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2bbae51da1ab3736bdd0b8df872acf3edbf9bda8bbd0080ff7eefe8e5a96d8 +size 3284238 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171700.HRRR.nc4.gz new file mode 100644 index 00000000..4e0ebdc9 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8c6b8355ea3ff01bf0aac6c7b40e4c4b7264bd0996f6c7feb31de73d98b33f +size 3084034 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171800.HRRR.nc4.gz new file mode 100644 index 00000000..be69344f --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282a392095e8b0d01605a1470cdff20d8e780ac0808a60e55c3ca3212e2166e1 +size 3351042 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171900.HRRR.nc4.gz new file mode 100644 index 00000000..0f724a9e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409171900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20896b34312ddccaed8f3e40afebfa8928e07a4747f17e134d6e34b8ce77424b +size 3366344 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172000.HRRR.nc4.gz new file mode 100644 index 00000000..fc478dcd --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9650194c92daf155d08bcf734e449a21c8399d3fd8e43c825214eb46294eed0b +size 2280705 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172100.HRRR.nc4.gz new file mode 100644 index 00000000..03c6fa21 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafb8d5cb21edf2faabbd36014fa0af831c8fa9c10958bf5b7d1dc4f499a5f30 +size 2258059 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172200.HRRR.nc4.gz new file mode 100644 index 00000000..e82254da --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a578beaba0bb5e7cbdb7df97ea799f3086a45c2c198825cf51e1bae610ea9af4 +size 2284895 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172300.HRRR.nc4.gz new file mode 100644 index 00000000..61b1f5c2 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_q_ges.202409172300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e8273ac70bb11d0b9e16619d996f53059f96f9b6dcfac5a04bd8dd798e9435 +size 2266261 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170000.HRRR.nc4.gz new file mode 100644 index 00000000..f8efb9b0 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f65dc32a7b6bf86702232fa6ccc54b4e10c8f03a848c0acb0fc35d9fb1f4cb6c +size 4121538 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170100.HRRR.nc4.gz new file mode 100644 index 00000000..df265cf3 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db74e695048ead0a8052f5ccd6e1d8ab9551a03f61c6ef68553a1d7603811867 +size 3700554 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170200.HRRR.nc4.gz new file mode 100644 index 00000000..1858be5e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc9c5b7bc51b1a0d820f8c6ca4ea96f6e364955a5b9dade2376f6b2290eb60e5 +size 3465559 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170300.HRRR.nc4.gz new file mode 100644 index 00000000..8516619f --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c05519fb7bf6f5a587f490fffbb2c8889f610a6e76cbb426e9a308a57cfcc4 +size 3207092 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170400.HRRR.nc4.gz new file mode 100644 index 00000000..bc763d9e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1205f7f54be44db249e8e6d247bf607d53999b5b3d933182f9fa7edab8dae49 +size 3122864 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170500.HRRR.nc4.gz new file mode 100644 index 00000000..735cfecc --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20899954963a5e53e94653ee5ef184df7d735f13bef9b42913c834c9643c9b99 +size 2796335 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170600.HRRR.nc4.gz new file mode 100644 index 00000000..8a488cec --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb1ee7ca7b31757ab4b2f04623ed8e51ca2077636add2bb3b4d9d3ad7018fc00 +size 2675969 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170700.HRRR.nc4.gz new file mode 100644 index 00000000..b8b8fca3 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6f1287c0e5f6f498063f5561b32c7d3bf047e2801fb7abbaf31a188bc554a23 +size 2506954 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170800.HRRR.nc4.gz new file mode 100644 index 00000000..b9b81191 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a922b0cdfc24dc291dcce11588620103995df2345bfe9bdbf39f5f84e464008 +size 2349849 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170900.HRRR.nc4.gz new file mode 100644 index 00000000..7cba89e5 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409170900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072bd32a0a0b10ff7c991d7ff301d9e6ba8b157dc09471f8507f59480777cfbe +size 2603909 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171000.HRRR.nc4.gz new file mode 100644 index 00000000..f84a8168 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b73e5feb447728208044a4359962398371b565adb57ff878b1b23511943ddf5 +size 2638928 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171100.HRRR.nc4.gz new file mode 100644 index 00000000..6bb28db5 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5c4b4062ee8bac60d4fd2130858be6818109d43fe91ac895f7780ae2ec4f63d +size 2746131 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171200.HRRR.nc4.gz new file mode 100644 index 00000000..233a4036 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd3d98a340353f593dd5373b625846689581fe3bf8a7e02d407e30711c6def5f +size 3584150 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171300.HRRR.nc4.gz new file mode 100644 index 00000000..b9d43d20 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e8ad47465e2e834ddabf582d71cf376bae3f976a2c66165430dc498788bc43 +size 3442610 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171400.HRRR.nc4.gz new file mode 100644 index 00000000..b85ba6bb --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73362dd49862279e71a9a7d4ae3df3e93a88bb80aa2014aad4068defd96570f5 +size 3554891 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171500.HRRR.nc4.gz new file mode 100644 index 00000000..c085087d --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258d1d0703d191c14afe9071b21e810b2441da66f001b57f9971b47159d83ae2 +size 3550914 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171600.HRRR.nc4.gz new file mode 100644 index 00000000..2e356732 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f2ddac34048e34c3660a5e9eacc43c35c36fe3d4eb3cfb048f0f47facea8b8 +size 3653775 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171700.HRRR.nc4.gz new file mode 100644 index 00000000..4eebb9ba --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3d336669783e9751bbe3fb8f7138516be309bdeba265439503a1ae36c338b8 +size 3448193 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171800.HRRR.nc4.gz new file mode 100644 index 00000000..8827a7c2 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bdedfedf37d8a66c7b75d23b0ed99e762b501733976230afffcbad25a0ab208 +size 3591470 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171900.HRRR.nc4.gz new file mode 100644 index 00000000..109a46d9 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409171900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8d9e5a424bbd6322737858ae42023a5e54fd4f4bc0c84cfbca8c2fb1bb1a10c +size 3620336 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172000.HRRR.nc4.gz new file mode 100644 index 00000000..3d430f23 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d613a5d1ab9e4e79f3ca45a167efe8340d3e1a996916d2076ed4587b028021c6 +size 2751009 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172100.HRRR.nc4.gz new file mode 100644 index 00000000..41d493d9 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556a3b24aabc1314aa2543a5b433972ff71a196e39421eed25283ff7aec5a597 +size 2744188 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172200.HRRR.nc4.gz new file mode 100644 index 00000000..f5790e40 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03808fdcb272bf8106a4bb071da9a74cc8cd313ae6c6fad27125db023758369 +size 2772888 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172300.HRRR.nc4.gz new file mode 100644 index 00000000..be59f8f1 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_anl.202409172300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7069d10eb87848929121aa7bcc570faa160cc20ec58858cbba4111952760ba07 +size 2815037 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170000.HRRR.nc4.gz new file mode 100644 index 00000000..da26d134 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0fdc5ec0c3fff6dab8b7a54ff8e5881e86b35f4dcbf38d329429b1897d075a +size 4151282 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170100.HRRR.nc4.gz new file mode 100644 index 00000000..0b560ee8 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe0a6df19022700aafaf0bfb52f328c9a3093c3a4eec76763d6fa8b1a411dad +size 3712702 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170200.HRRR.nc4.gz new file mode 100644 index 00000000..f6610cbf --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513522d03c444bc5c5a02ad4f1b59346cb285786be2bc7f99cfbfb611e333529 +size 3468276 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170300.HRRR.nc4.gz new file mode 100644 index 00000000..69a88cc7 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcdbbce40c3d2fe7ca08e5d70e00c1d88caabec222b32213926a76d3ea133c1b +size 3207016 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170400.HRRR.nc4.gz new file mode 100644 index 00000000..886cb8c6 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6442cac8ff0a72b1519d621908d915f0479a11ffe20252ba860ca39d3d6accbf +size 3122672 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170500.HRRR.nc4.gz new file mode 100644 index 00000000..32f0c16e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a324802a71b3b8314d826a6ca30f390d20aa58153815cc916dffd68794036e7 +size 2795766 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170600.HRRR.nc4.gz new file mode 100644 index 00000000..0fbf5fd9 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca6991a56b64972d5894e745c01523aeb84db963a70635e8d8dbaf51929f144 +size 2676076 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170700.HRRR.nc4.gz new file mode 100644 index 00000000..0776a9fb --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a21e5c42427803338f078b920d261d3ea123e532e56dcc91a2d772bdc18c308 +size 2506203 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170800.HRRR.nc4.gz new file mode 100644 index 00000000..ad0c0d72 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ed324266e2a14dac6844471374d24405c7ff63df3f55dea413ef02c10c145f +size 2350680 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170900.HRRR.nc4.gz new file mode 100644 index 00000000..be318af5 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409170900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f328f16d0588a51cb03a9e7996cd00eb7752c9f0218c81c4b5fd6057d0b57ee +size 2606689 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171000.HRRR.nc4.gz new file mode 100644 index 00000000..2cdfcfd4 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef748dc9b683492d9d84b96f982b5237494ac00dca3966dc92ad50e46d425069 +size 2640243 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171100.HRRR.nc4.gz new file mode 100644 index 00000000..ba4ef1d0 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df52bd6dca47656a24c0e2c1afd34908f6bd7632cef3f4df947051e5e92d660 +size 2748245 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171200.HRRR.nc4.gz new file mode 100644 index 00000000..a0e8e189 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99eb7baeb525e43996c9ea428da1e0da0025b37200b0e76f807f7c6caccd0dd +size 3582734 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171300.HRRR.nc4.gz new file mode 100644 index 00000000..5b971645 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2bfea48e6e6e16c8737c8ea35ecbde00ac3a11c373c6b1fbe99af7a20af2de +size 3441309 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171400.HRRR.nc4.gz new file mode 100644 index 00000000..6f375568 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e93447bce3371318bcc2bcd2c468229211ee36fac212d00879a36ec3cae350 +size 3551378 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171500.HRRR.nc4.gz new file mode 100644 index 00000000..4d22883f --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e205ad5bc83f77f026882097a5f27004f2a31f929486d8a2cd808bb6c6f8f6cb +size 3552779 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171600.HRRR.nc4.gz new file mode 100644 index 00000000..3bb36d8e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d448336ed313739e036a716bc798dafe46a39456bdd6f7b4ba776bcd3a8fcd2f +size 3674131 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171700.HRRR.nc4.gz new file mode 100644 index 00000000..126e1e74 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9133619ce7ba095ca7e6a120279b3590f5521dbaabb7ca85bdf7bd4b9a0137b +size 3484267 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171800.HRRR.nc4.gz new file mode 100644 index 00000000..21a60df7 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298a11de0a178846e61e24eccdc6bb010a767133098f9ccd0ce39f4d4f5c7f4c +size 3644471 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171900.HRRR.nc4.gz new file mode 100644 index 00000000..dd48265f --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409171900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36fbeabc6c90f989d31a3548be833bedf98df28a2cd04dd090d624a605e83b57 +size 3674252 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172000.HRRR.nc4.gz new file mode 100644 index 00000000..04431b62 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fc4fc1c6cb1b16047a860f0203540fb396df1daf173e9e9feaf79c83eb389c5 +size 2811327 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172100.HRRR.nc4.gz new file mode 100644 index 00000000..8eae24f1 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2a71c6ff6b7b18e55ae1935429153f60a278693e71ca9726e9351e18e609df +size 2802325 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172200.HRRR.nc4.gz new file mode 100644 index 00000000..57024765 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920c593afb9162b99528d087daba96abaff895861df3c5538e53d9471442ff7b +size 2827650 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172300.HRRR.nc4.gz new file mode 100644 index 00000000..a3b2b896 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_t_ges.202409172300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026f9a97c40d0704eb85efc0aa476398566f1e4ea8659ffdd2e669fcade577f2 +size 2856021 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170000.HRRR.nc4.gz new file mode 100644 index 00000000..ee58eafc --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16540e8e662f35b626462e18e393b512336bc1827cffcbd382e2dbcdf177b727 +size 6397574 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170100.HRRR.nc4.gz new file mode 100644 index 00000000..42691d8d --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcadf6a1c4bf677dd1b63fee8d37c3b1427fd3b8168c52d16380979a62fdc483 +size 5729180 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170200.HRRR.nc4.gz new file mode 100644 index 00000000..0bb3a5c2 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da821f909b1bf6a84bb295ef783cea7ead54b54706afe13fbda2223aa710dae9 +size 5176675 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170300.HRRR.nc4.gz new file mode 100644 index 00000000..f90f10df --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:382e7921e343c0840304ecbca0327bf56cf92162003c8e41ec56ecfb001de0d5 +size 4474931 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170400.HRRR.nc4.gz new file mode 100644 index 00000000..2b6fc37c --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:107ba4ffdf263b8d6d819691b671ab8480cf2ceeda88da5ea5517e5a8d468b06 +size 4441580 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170500.HRRR.nc4.gz new file mode 100644 index 00000000..c18b50bf --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a56773d094e93edf488bab3d6ad0b228632b46a1e1cb247a323148537ee1a0 +size 4092959 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170600.HRRR.nc4.gz new file mode 100644 index 00000000..882c2081 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6ec763916c537f92bd83462aa4258aa703945d7f5af841d6056737ef421ab8 +size 3971443 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170700.HRRR.nc4.gz new file mode 100644 index 00000000..fb2bd109 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e3da0852df949a414195388af6c59017173351a5c83df5e84fbc6dde23454ba +size 3818279 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170800.HRRR.nc4.gz new file mode 100644 index 00000000..5f4cb7d4 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73988eb41fe1ddad800622ee5756f824b3389b603501733332839290d366c49c +size 3565275 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170900.HRRR.nc4.gz new file mode 100644 index 00000000..8bcaafed --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409170900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c100a7ce0a8409dc7b80533c0282965e25c839d92bb1ce41186cde03b792b61b +size 3899183 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171000.HRRR.nc4.gz new file mode 100644 index 00000000..fb70943c --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1041a5fa63a548dae671675cba341aa9b23975172c130b6fe55c61f756c9e1 +size 3916181 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171100.HRRR.nc4.gz new file mode 100644 index 00000000..3d72a145 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d83ee04674e45bc4280538d9aae5fa678bbff4f1ef0a69eb0e58edeb5d980bb +size 4007001 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171200.HRRR.nc4.gz new file mode 100644 index 00000000..e5622533 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09897579eda9cbc034945be3619115b1804e20610b4d407b955fb6a0d04b6cae +size 5074678 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171300.HRRR.nc4.gz new file mode 100644 index 00000000..b706817e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f8c2a8d0993de6d867a19e50bba8dbc73a65b9991d9349c70b9dcb64826c55 +size 4929337 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171400.HRRR.nc4.gz new file mode 100644 index 00000000..8d9c0039 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23e599dd22ad5070fed8b79cd2ca32cb496a08bfe064c86481ac5ebcd96a8d7e +size 4959476 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171500.HRRR.nc4.gz new file mode 100644 index 00000000..cec141cf --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1a3f1ece77b476bad39a7aaf1150dc2f3314317ab8d072afd95900f7fe7767 +size 5023410 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171600.HRRR.nc4.gz new file mode 100644 index 00000000..c537d0bb --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e000254a4243b60eca2806fa55d20b902898952e6424fecdac404657b6625fd +size 5651162 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171700.HRRR.nc4.gz new file mode 100644 index 00000000..d9f15005 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9662d4cfce0213d03547693670385d1b4adc17cff4efd268907f4351e5d4451 +size 5425476 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171800.HRRR.nc4.gz new file mode 100644 index 00000000..e60ee77d --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28b8eeadff1e4aaab8e0c934ee819e36ae93cf4cb2e65bb5663287199c943d2 +size 5839683 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171900.HRRR.nc4.gz new file mode 100644 index 00000000..4fda3129 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409171900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9444bf7da222089dc9a30761266aab492081e5194830e29e4efd966f536064b8 +size 5874933 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172000.HRRR.nc4.gz new file mode 100644 index 00000000..4cfc480a --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b9090d33c64c6213517d9711abc8371604451743dd0989b90febb1cc281004a +size 4611210 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172100.HRRR.nc4.gz new file mode 100644 index 00000000..6821ce5b --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cc0221c4f5b305503fbbdae37db23e8a56a275db375ea0be03179ebf0b4cf4 +size 4585215 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172200.HRRR.nc4.gz new file mode 100644 index 00000000..246a5ac7 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d83eb4d339e76a282c1231b437576ac905a676df24e40894236ce9a9f97ab5b +size 4586842 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172300.HRRR.nc4.gz new file mode 100644 index 00000000..8f57b28d --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_anl.202409172300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5dbdd037f365409156a570a8aac003b950f18f81f8fb2882969bb59c8102f79 +size 4546848 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170000.HRRR.nc4.gz new file mode 100644 index 00000000..a20dd044 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9520616227d327803ff745ac7f38ed34a1cb5779d2c860f55daea6874b4fd7 +size 6378433 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170100.HRRR.nc4.gz new file mode 100644 index 00000000..ce1d5e4f --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06999295b571f6c00b862cb50c2b55abc2420dcd39aa7646936a7c52d1172bff +size 5714464 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170200.HRRR.nc4.gz new file mode 100644 index 00000000..46bc6a79 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631b2bf10bba5733ae7a5d5ee188d25cb414160242738842dc87896dac30ab99 +size 5166405 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170300.HRRR.nc4.gz new file mode 100644 index 00000000..cc2f735e --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeb21c3f7b426fdb5ee848bd245d1fc738be25e09ce43a78f59a04624c2aa031 +size 4464564 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170400.HRRR.nc4.gz new file mode 100644 index 00000000..8e5b8f9a --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d19a4c481937b004c5935e19628c0442fa08cb8c27b24456f2f4bc6ee5c15e8d +size 4431449 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170500.HRRR.nc4.gz new file mode 100644 index 00000000..30c6c614 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d928a80d2d730964d18142c326a0a0fd73894e8a9ef5bf612619de644c883bb2 +size 4083308 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170600.HRRR.nc4.gz new file mode 100644 index 00000000..15791497 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed24eac646471e672c65e7fe805133ce616cca8f52c2daca9238229b23e74362 +size 3960466 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170700.HRRR.nc4.gz new file mode 100644 index 00000000..63322820 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b8468ea739baccc2ffaa3525f77493dc9abaca1d355fc33b6854c1f2619178 +size 3809878 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170800.HRRR.nc4.gz new file mode 100644 index 00000000..4bd94c8b --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40915b860af077819ffd18ae3b3a46f954c9095b7dae92b1f515bf25eeea0c85 +size 3553708 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170900.HRRR.nc4.gz new file mode 100644 index 00000000..2d9920e4 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409170900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a167784929b8d09f65b72789357e2a7333395ed458be27f985bcc4e02d94cdb +size 3888593 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171000.HRRR.nc4.gz new file mode 100644 index 00000000..48fded38 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06937e45f63f25b8bc78b0670ae3e5c7f8a5463651077b278cb6740a31d8fd9e +size 3906774 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171100.HRRR.nc4.gz new file mode 100644 index 00000000..84952346 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a4ab83f3c6d4d2fe41348bb5cfb7fe5a42fe92c42fafa60bb5e2518d31383c +size 3996753 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171200.HRRR.nc4.gz new file mode 100644 index 00000000..433bd86b --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36c08c0770c6d5a575e79f89ba06c6dc86ed38527b48d58a4766abe7f113def +size 5056011 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171300.HRRR.nc4.gz new file mode 100644 index 00000000..52ef52b6 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d13d02f4b891f5e4b992d6864e4bf884653c783721b81430443d89bc45ae953 +size 4918353 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171400.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171400.HRRR.nc4.gz new file mode 100644 index 00000000..387a32b2 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171400.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf35da59050f19cec91bc38ff404f8e5cbe0e318af31dee201295f9f3f84d5c +size 4950106 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171500.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171500.HRRR.nc4.gz new file mode 100644 index 00000000..65454ee2 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171500.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a62cfd8168973025bdd5dd8285974bc86f1d0f14aaffad8f22d369c1e3bd51de +size 5013603 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171600.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171600.HRRR.nc4.gz new file mode 100644 index 00000000..e9770586 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171600.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aecdad4f03d448d5273f5b72d02f93607c0687475c08f1ac6d7942154df97da5 +size 5642067 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171700.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171700.HRRR.nc4.gz new file mode 100644 index 00000000..20fa65bf --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171700.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67cddcde39a04245db3aa1c89516effd0c1d272e2e11d5d8d24731ea1dedcd23 +size 5418218 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171800.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171800.HRRR.nc4.gz new file mode 100644 index 00000000..8a499b16 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171800.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf1cd901cedfe1dc51726d3d7a851600832c154e7a13af360ca6f179d6731c4 +size 5832372 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171900.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171900.HRRR.nc4.gz new file mode 100644 index 00000000..1eccbf77 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409171900.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfccace7e7cb0a6c387590db5412e2da33232385003f0f08c78f33d6a5fee6f6 +size 5867165 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172000.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172000.HRRR.nc4.gz new file mode 100644 index 00000000..9217df0a --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172000.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c65b8959e52eb37cf7b4fe788c47025a795faa90c568fd3a9c1d18480cac5d +size 4602661 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172100.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172100.HRRR.nc4.gz new file mode 100644 index 00000000..256ed859 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172100.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56436d049b29ed9f531372bd298bb47ae6b8c5ad9ba0331c712e9a3ed067e60 +size 4576471 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172200.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172200.HRRR.nc4.gz new file mode 100644 index 00000000..1d920ef3 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172200.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db8f3e7eb4911214e360b2d4c1bdc24acb11fcf7e82cd6aa59cbdf6f471035f +size 4577510 diff --git a/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172300.HRRR.nc4.gz b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172300.HRRR.nc4.gz new file mode 100644 index 00000000..13a76917 --- /dev/null +++ b/data_samples/input_data/RTMA/WCOSS/CONUS/REALTIME/diag_uv_ges.202409172300.HRRR.nc4.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a98a89bed5b58d2aeb7eb09f05681d88ab202d97639bef763000f8b6e434fc +size 4537339