--- license: mit task_categories: - visual-question-answering - image-classification language: - en tags: - extreme-weather - satellite-imagery - multimodal - vqa - benchmark - disaster-analysis size_categories: - 1K///t1.png ... tN.png ├── cold-wave_json/ │ └── All.json # VQA records ├── heat-wave/ ├── heat-wave_json/All.json ├── earthquake/ ├── earthquake_json/All.json ├── flood/ ├── flood_json/All.json ├── mass movement (wet)/ ├── mass movement (wet)_json/All.json ├── storm/ ├── storm_json/All.json ├── volcanic activity/ ├── volcanic activity_json/All.json ├── wildfire/ └── wildfire_json/All.json ``` ### Satellite Sensors The dataset includes multispectral imagery from three satellite sensors: | Sensor | Bands | Description | |--------|-------|-------------| | AMSU-A | 15 bands (0-14) | Advanced Microwave Sounding Unit-A | | HIRS | 20 bands (0-19) | High-resolution Infrared Radiation Sounder | | MHS | 5 bands (0-4) | Microwave Humidity Sounder | ### Weather Station Data Selected samples include supplementary weather station measurements (temperature, pressure, humidity, wind speed) when available for the event location. ## VQA Sample Fields | Field | Type | Description | |-------|------|-------------| | `Question_id` | string | Unique identifier (format: `Task/Type/timestep/subtype/event_id`) | | `Task` | string | Task category (Early Warning / Impact Assessment / Recovery Assessment) | | `Subtask` | string | Subtask with timestep, e.g. "Risk Detection (t1)" | | `Text` | string | Question text | | `Image` | string | Comma-separated relative image paths | | `Stations` | object | Weather station sensor data (optional) | | `Ground truth` | string | Standard answer | ### QID Format ``` Task/Type/timestep/subtype/event_id ``` Examples: - `Early Warning/Risk Detection/t1/ground movement/2014-0049-GRC` - `Impact Assessment/Magnitude/tmax/tsunami/2011-0282-JPN` - `Recovery Assessment/Recovery Time Prediction/t15/cold-wave1/2011-0105-MEX` ## Evaluation The evaluation framework supports multiple scoring rules per subtask type: - **Boolean**: Exact match (Risk Detection) - **Numeric**: Error-based scoring with tolerance (CPI, Magnitude, population counts) - **Classification**: Exact or partial match (Type Classification) - **Text**: Jaccard word overlap (Arrival Time, Duration, Recovery Time) Evaluation code is available at: [https://github.com/YYQ898/ObsCrisis-Bench](https://github.com/YYQ898/ObsCrisis-Bench) ## Citation If you use this dataset, please cite: ```bibtex @misc{obscrisis-bench, title={ObsCrisis-Bench: A Multimodal Benchmark for Extreme Weather Event Analysis}, author={ObsCrisis Team}, year={2025} } ``` ## License MIT License