# Hourly weather scraper for travel planning

**Use case:** 

Compare hourly Open-Meteo forecasts for travel destinations with Fahrenheit temperatures and mph wind speeds for itinerary planning.

## Input

```json
{
  "locations": [
    "Miami",
    "San Diego",
    "Honolulu"
  ],
  "forecastDays": 5,
  "includeHourly": true,
  "temperatureUnit": "fahrenheit",
  "windSpeedUnit": "mph"
}
```

## Output

```json
{
  "location": {
    "label": "Location",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "temperature": {
    "label": "Temperature",
    "format": "number"
  },
  "weatherDescription": {
    "label": "Weather",
    "format": "text"
  },
  "humidity": {
    "label": "Humidity %",
    "format": "number"
  },
  "windSpeed": {
    "label": "Wind Speed",
    "format": "number"
  },
  "precipitation": {
    "label": "Precipitation",
    "format": "number"
  },
  "uvIndex": {
    "label": "UV Index",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Open Meteo Scraper](https://apify.com/automation-lab/open-meteo-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/open-meteo-scraper) to learn more, explore other use cases, and run it yourself.