# US Drought Monitor Florida Scraper

**Use case:** 

Scrape weekly US Drought Monitor data for Florida: areaOfInterest, state, mapDate, and D0-D4 drought coverage percentages. Export to JSON or CSV.

## Input

```json
{
  "aoi": "12",
  "startdate": "2024-01-01",
  "enddate": "2024-06-01",
  "statisticsType": "1",
  "maxItems": 50
}
```

## Output

```json
{
  "areaOfInterest": {
    "label": "📍 Area",
    "format": "text"
  },
  "mapDate": {
    "label": "📅 Map Date",
    "format": "text"
  },
  "none": {
    "label": "🟢 None %",
    "format": "number"
  },
  "d0": {
    "label": "🟡 D0 %",
    "format": "number"
  },
  "d1": {
    "label": "🟠 D1 %",
    "format": "number"
  },
  "d2": {
    "label": "🔴 D2 %",
    "format": "number"
  },
  "d3": {
    "label": "🟤 D3 %",
    "format": "number"
  },
  "d4": {
    "label": "⚫ D4 %",
    "format": "number"
  },
  "validStart": {
    "label": "▶ Valid Start",
    "format": "text"
  },
  "validEnd": {
    "label": "⏹ Valid End",
    "format": "text"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [US Drought Monitor Scraper](https://apify.com/parseforge/us-drought-monitor-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/us-drought-monitor-scraper) to learn more, explore other use cases, and run it yourself.