# Weather Forecast Summary for San Francisco

**Use case:** 

Access daily weather data including wind speed and rainfall for San Francisco.

## Input

```json
{
  "maxDays": 10,
  "latitude": "37.7749",
  "longitude": "-122.4194"
}
```

## Output

```json
{
  "date": {
    "label": "Date"
  },
  "tempMax": {
    "label": "Max Temp (°C)"
  },
  "tempMin": {
    "label": "Min Temp (°C)"
  },
  "condition": {
    "label": "Condition"
  },
  "apparentTempMax": {
    "label": "Feels-Like Max (°C)"
  },
  "apparentTempMin": {
    "label": "Feels-Like Min (°C)"
  },
  "precipitation": {
    "label": "Precipitation (mm)"
  },
  "precipitationProbabilityMax": {
    "label": "Precip Probability (%)"
  },
  "windMax": {
    "label": "Max Wind (km/h)"
  },
  "windGustsMax": {
    "label": "Max Gusts (km/h)"
  },
  "uvIndexMax": {
    "label": "UV Index Max"
  },
  "sunrise": {
    "label": "Sunrise"
  },
  "sunset": {
    "label": "Sunset"
  },
  "latitude": {
    "label": "Latitude"
  },
  "longitude": {
    "label": "Longitude"
  },
  "timezone": {
    "label": "Timezone"
  }
}
```

## About this Actor

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