Datasets:
Add dataset README
Browse files
README.md
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
annotations_creators:
|
| 3 |
+
- expert-generated
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
license:
|
| 7 |
+
- cc-by-4.0
|
| 8 |
+
task_categories:
|
| 9 |
+
- tabular-regression
|
| 10 |
+
- image-to-image
|
| 11 |
+
tags:
|
| 12 |
+
- agriculture
|
| 13 |
+
- remote-sensing
|
| 14 |
+
- crop-modeling
|
| 15 |
+
- deep-learning
|
| 16 |
+
- maize
|
| 17 |
+
- yield-prediction
|
| 18 |
+
- US-Corn-Belt
|
| 19 |
+
- agroecosystem
|
| 20 |
+
- MODIS
|
| 21 |
+
- AgERA5
|
| 22 |
+
- CORDEX
|
| 23 |
+
pretty_name: US Corn Belt Maize Yield Dataset and Deep Learning Framework (2012–2020)
|
| 24 |
+
size_categories:
|
| 25 |
+
- n>1T
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
# US Corn Belt Maize Yield Dataset and Deep Learning Framework (2012–2020)
|
| 29 |
+
|
| 30 |
+
This repository contains the dataset and deep-learning scripts associated with the study:
|
| 31 |
+
|
| 32 |
+
> Jeong, S., Ko, J., Shin, T., Ban, J.-O., Wie, J., Yeom, J.-M. **Integrating deep learning and satellite imagery for spatiotemporal maize yield prediction in the US Corn Belt.** *International Journal of Applied Earth Observation and Geoinformation* (submitted).
|
| 33 |
+
|
| 34 |
+
## Overview
|
| 35 |
+
|
| 36 |
+
We pair optimization-based assimilation of MODIS-derived leaf area index (LAI) into the process-based **Remote Sensing-integrated Crop Model (RSCM)** with five deep-learning regressors — Feed-Forward Neural Network (FFNN), Long Short-Term Memory (LSTM), Bidirectional LSTM (BiLSTM), Gated Recurrent Unit (GRU), and Transformer — to predict state-level maize yield at 500-m spatial resolution across seven US Corn Belt states (Iowa, Illinois, Indiana, Minnesota, Nebraska, Ohio, South Dakota) for 2012–2020. The GRU produced the most stable out-of-sample performance (mean NSE = 0.92 on the 2020 holdout).
|
| 37 |
+
|
| 38 |
+
The repository provides:
|
| 39 |
+
|
| 40 |
+
1. **Core dataset (~271 GB, zipped):** processed MODIS reflectance and land-surface temperature, AgERA5 meteorology, and CORDEX-North America climate projections at 500-m resolution across the seven-state domain.
|
| 41 |
+
2. **Analysis scripts (unzipped):** training, inference, and visualization code for the three modeling workflows described in the paper.
|
| 42 |
+
|
| 43 |
+
## Repository structure
|
| 44 |
+
|
| 45 |
+
- `Cornbelt_dataset.zip` — Processed inputs (folder name inside archive: `MODIS_CornBelt_2012_to_2020`):
|
| 46 |
+
- MODIS MOD09A1 Collection 6.1 (8-day surface reflectance, 500 m)
|
| 47 |
+
- MODIS MOD11A1 Collection 6.1 (daily land-surface temperature, resampled from 1 km to 500 m)
|
| 48 |
+
- AgERA5 daily meteorology (downward surface solar radiation, 2-m maximum and minimum air temperature), resampled from 0.1° (~9 km) to 500 m
|
| 49 |
+
- CORDEX-North America projections from GERICS-REMO2015 forced by MPI-ESM-LR and NorESM1-M, under RCP 2.6 and RCP 8.5, for the baseline (2006–2025), 2050s (2040–2060), and 2090s (2080–2100)
|
| 50 |
+
- `scripts_Climate_n_LAI/` — LAI estimation from climate drivers (daily max/min temperature and solar radiation)
|
| 51 |
+
- `Scripts_RSCM_sim_growth_n_climate_to_Yield/` — yield prediction and spatial mapping using RSCM-simulated growth variables combined with climate inputs (hybrid RSCM-ML configuration; used for yield validation in the paper)
|
| 52 |
+
- `Scripts_Climate_n_LAI_to_Yield/` — yield prediction and spatial mapping from climate inputs only (configuration used for future CORDEX-driven projections)
|
| 53 |
+
|
| 54 |
+
## Dataset details
|
| 55 |
+
|
| 56 |
+
- **Spatial coverage:** seven US Corn Belt states — Iowa, Illinois, Indiana, Minnesota, Nebraska, Ohio, South Dakota (~1.5 million km², ~1.1 million 500-m cropland pixels)
|
| 57 |
+
- **Spatial resolution:** 500 m, Albers Equal Area Conic projection
|
| 58 |
+
- **Temporal range:** 2012–2020 (historical); 2006–2025, 2040–2060, and 2080–2100 (CORDEX projections)
|
| 59 |
+
- **Key variables:** Leaf Area Index (LAI), above-ground biomass, maize yield, NDVI, MTVI1, OSAVI, RDVI, solar radiation, maximum and minimum air temperature, land-surface temperature
|
| 60 |
+
- **Reference yields:** USDA National Agricultural Statistics Service (USDA-NASS) state-level maize yield, 2012–2020 (63 state-year combinations)
|
| 61 |
+
|
| 62 |
+
## Intended use
|
| 63 |
+
|
| 64 |
+
This dataset is suitable for research on regional-scale crop-yield prediction, remote-sensing–based agroecosystem monitoring, hybrid process-based + machine-learning modeling, and climate-change impact assessment for maize systems. It is intended for research and educational purposes.
|
| 65 |
+
|
| 66 |
+
## Out-of-scope use
|
| 67 |
+
|
| 68 |
+
The 500-m "observed yield" maps were produced by disaggregating USDA-NASS state totals in proportion to RSCM-simulated pixel yield and are **not** independent pixel-level observations. Quantitative accuracy statements in the paper are therefore made at the state-year aggregation level. Users should not treat the pixel-level reference maps as ground truth; county-level USDA-NASS survey data (not included here) provide statistically independent validation.
|
| 69 |
+
|
| 70 |
+
The climate-projection outputs use a climate-only input configuration that differs from the validated hybrid RSCM-ML configuration; projections should be read as indicative scenario analyses rather than calibrated forecasts. CO₂ fertilization and irrigation management are not represented.
|
| 71 |
+
|
| 72 |
+
## Installation and usage
|
| 73 |
+
|
| 74 |
+
Download via `huggingface-cli`:
|
| 75 |
+
|
| 76 |
+
```bash
|
| 77 |
+
huggingface-cli download <HF-USERNAME>/<HF-REPO-NAME> --repo-type dataset
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
Unzip the core dataset archive and run the scripts in the relevant workflow directory. See individual `README` files inside each `Scripts_*` folder for environment setup and execution instructions. The scripts were developed against Python 3.8 and PyTorch 1.13.1 and require a CUDA-capable GPU for training (NVIDIA A100 used in the paper).
|
| 81 |
+
|
| 82 |
+
## License
|
| 83 |
+
|
| 84 |
+
Dataset (`Cornbelt_dataset.zip`): **CC BY 4.0**.
|
| 85 |
+
Scripts (`scripts_*/` directories): **MIT License** (see `LICENSE` file in each script directory).
|
| 86 |
+
|
| 87 |
+
## Citation
|
| 88 |
+
|
| 89 |
+
If you use this dataset or the accompanying scripts, please cite:
|
| 90 |
+
|
| 91 |
+
```bibtex
|
| 92 |
+
@article{Jeong2026CornBelt,
|
| 93 |
+
author = {Jeong, Seungtaek and Ko, Jonghan and Shin, Taewhan and Ban, Jong-oh and Wie, Jieun and Yeom, Jong-Min},
|
| 94 |
+
title = {Integrating deep learning and satellite imagery for spatiotemporal maize yield prediction in the US Corn Belt},
|
| 95 |
+
journal = {International Journal of Applied Earth Observation and Geoinformation},
|
| 96 |
+
year = {2026},
|
| 97 |
+
note = {Submitted}
|
| 98 |
+
}
|
| 99 |
+
```
|
| 100 |
+
|
| 101 |
+
Please also cite the underlying data providers:
|
| 102 |
+
|
| 103 |
+
- MODIS MOD09A1 / MOD11A1: NASA LP DAAC
|
| 104 |
+
- AgERA5: Boogaard et al. (2020), ECMWF Copernicus Climate Change Service
|
| 105 |
+
- CORDEX-North America: Copernicus Climate Change Service (2020), `doi:10.24381/cds.bc91edc3`
|
| 106 |
+
- USDA-NASS Quick Stats: `https://quickstats.nass.usda.gov/`
|
| 107 |
+
|
| 108 |
+
## Contact
|
| 109 |
+
|
| 110 |
+
Jonghan Ko (corresponding author)
|
| 111 |
+
Applied Plant Science, Chonnam National University, Gwangju, South Korea
|
| 112 |
+
Email: jonghan.ko@jnu.ac.kr
|
| 113 |
+
|
| 114 |
+
## Acknowledgements
|
| 115 |
+
|
| 116 |
+
See the acknowledgements section of the associated manuscript.
|