Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
---
|
| 4 |
+
# CREST forcing (parquet)
|
| 5 |
+
EF5/CREST hourly forcing for CONUS, 2016-present, packed as **one tar per variable/year**.
|
| 6 |
+
|
| 7 |
+
| dir | variable | source | cadence |
|
| 8 |
+
|-----|----------|--------|---------|
|
| 9 |
+
| `mrms/` | precipitation | MRMS QPE (corrected) | hourly |
|
| 10 |
+
| `temp/` | 2 m temperature | NLDAS-2 FORA | hourly |
|
| 11 |
+
| `pet/` | potential ET | FEWS NET daily PET | daily |
|
| 12 |
+
|
| 13 |
+
Each `*.tar` expands to individual `.pqf` (Apache Arrow parquet) grids readable by the
|
| 14 |
+
EF5 v4.5 native parquet reader. Used by the Space `vincewin/CREST_AI`.
|
| 15 |
+
|
| 16 |
+
Download + extract one year, e.g.:
|
| 17 |
+
```python
|
| 18 |
+
from huggingface_hub import hf_hub_download
|
| 19 |
+
import tarfile
|
| 20 |
+
p = hf_hub_download("vincewin/CREST_data", "mrms/mrms_2023.tar", repo_type="dataset")
|
| 21 |
+
tarfile.open(p).extractall("forcing/mrms")
|
| 22 |
+
```
|