get_snow_conditions
Retrieve current snow depth, recent snowfall, and forecasted snow for any mountain location. Use it to plan ski trips and assess avalanche risk.
Instructions
Retrieves snow conditions and forecasts for mountain locations.
Parameters:
latitude (required): Latitude in decimal degrees
longitude (required): Longitude in decimal degrees
forecast_days (optional): Number of forecast days (1-16, default: 7)
include_hourly (optional): Include hourly data (default: true)
timezone (optional): Timezone for timestamps (default: "Europe/Zurich")
Returns:
Current snow depth (meters)
Recent snowfall (cm)
Forecast snowfall
Temperature trends
Hourly and daily snow data
Enriched with ski condition assessment
Use this tool for:
Ski trip planning
Checking snow conditions at resorts
Mountain weather forecasts
Avalanche risk assessment (via snow depth trends)
Args: latitude: Latitude in decimal degrees (e.g., 45.9763 for Zermatt) longitude: Longitude in decimal degrees (e.g., 7.6586 for Zermatt) forecast_days: Number of forecast days (1-16, default: 7) include_hourly: Include hourly data (default: true) timezone: Timezone for timestamps (default: 'Europe/Zurich')
Returns: Dictionary containing: - current (dict): Current snow depth and recent snowfall with ski assessment - hourly (list[dict] | None): Hourly snow data if include_hourly=True - daily (list[dict]): Daily snow forecasts with accumulation and temperature - location (dict): Mountain location metadata
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| latitude | Yes | ||
| timezone | No | Europe/Zurich | |
| longitude | Yes | ||
| forecast_days | No | ||
| include_hourly | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||