# NOAA tornado event narratives for Oklahoma

**Use case:** 

Download Oklahoma tornado events from NOAA Storm Events with location, damage, casualty, magnitude, and narrative fields.

## Input

```json
{
  "years": [
    2023
  ],
  "startYear": 2024,
  "endYear": 2024,
  "states": [
    "OKLAHOMA"
  ],
  "eventTypes": [
    "Tornado"
  ],
  "includeNarrative": true,
  "maxItems": 100
}
```

## Output

```json
{
  "eventId": {
    "label": "Event ID"
  },
  "episodeId": {
    "label": "Episode ID"
  },
  "year": {
    "label": "Year"
  },
  "state": {
    "label": "State"
  },
  "czName": {
    "label": "County/zone"
  },
  "eventType": {
    "label": "Event type"
  },
  "beginDateTime": {
    "label": "Begin time"
  },
  "endDateTime": {
    "label": "End time"
  },
  "beginLatitude": {
    "label": "Begin latitude"
  },
  "beginLongitude": {
    "label": "Begin longitude"
  },
  "magnitude": {
    "label": "Magnitude"
  },
  "deathsDirect": {
    "label": "Direct deaths"
  },
  "injuriesDirect": {
    "label": "Direct injuries"
  },
  "damagePropertyUsd": {
    "label": "Property damage USD"
  },
  "damageCropUsd": {
    "label": "Crop damage USD"
  },
  "source": {
    "label": "Source"
  },
  "sourceFileUrl": {
    "label": "Source file URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [NOAA Storm Events Database Scraper](https://apify.com/automation-lab/noaa-storm-events-database-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/noaa-storm-events-database-scraper) to learn more, explore other use cases, and run it yourself.