Add HRRR idx-only smoke-test download option
Browse files- data_downloader/README.md +13 -0
data_downloader/README.md
CHANGED
|
@@ -88,6 +88,19 @@ The HRRR downloader retrieves native HRRR files; county, sub-county, or any
|
|
| 88 |
other custom spatial granularity should be produced later by the serving or
|
| 89 |
preprocessing layer using user-provided boundaries.
|
| 90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
## Implemented Direct Downloads
|
| 92 |
|
| 93 |
These sources are implemented as direct public downloads:
|
|
|
|
| 88 |
other custom spatial granularity should be produced later by the serving or
|
| 89 |
preprocessing layer using user-provided boundaries.
|
| 90 |
|
| 91 |
+
For a small real-download smoke test, download only the HRRR index sidecar:
|
| 92 |
+
|
| 93 |
+
```bash
|
| 94 |
+
python3 data_downloader/hrrr_downloader.py \
|
| 95 |
+
--start-date 2024-06-01 \
|
| 96 |
+
--end-date 2024-06-01 \
|
| 97 |
+
--hours 00 \
|
| 98 |
+
--forecast-hours 00 \
|
| 99 |
+
--idx-only \
|
| 100 |
+
--max-files 1 \
|
| 101 |
+
--output-root ./downloads_hrrr_idx_test
|
| 102 |
+
```
|
| 103 |
+
|
| 104 |
## Implemented Direct Downloads
|
| 105 |
|
| 106 |
These sources are implemented as direct public downloads:
|