Swiss-Weather
by @xenofex7
Get current weather and forecasts from MeteoSwiss (official Swiss weather service). Use when querying Swiss weather data, local measurements from Swiss weather stations, or Swiss-specific forecasts. Provides real-time measurements (temperature, humidity, wind, precipitation, pressure) from 100+ Swiss stations and multi-day forecasts by postal code. Ideal for Swiss locations - more accurate than generic weather services for Switzerland.
clawhub install swissweather📖 About This Skill
name: swissweather description: Get current weather and forecasts from MeteoSwiss (official Swiss weather service). Use when querying Swiss weather data, local measurements from Swiss weather stations, or Swiss-specific forecasts. Provides real-time measurements (temperature, humidity, wind, precipitation, pressure) from 100+ Swiss stations and multi-day forecasts by postal code. Ideal for Swiss locations - more accurate than generic weather services for Switzerland.
SwissWeather
Get current weather measurements and forecasts from MeteoSwiss, the official Swiss Federal Office of Meteorology and Climatology.
Why Use This
Quick Start
Current Weather by Station
Get real-time measurements from a specific Swiss weather station:
Option 1: Shell script (no dependencies)
scripts/current_weather_curl.sh --station RAG
Option 2: Python script (requires: pip3 install requests)
scripts/current_weather.py --station RAG
Example output:
Station: RAG
Time: 2026-01-15 11:40 UTC
Temperature (°C)........................ 8.6
Rel. humidity (%)...................... 56.3
Wind speed (km/h)...................... 6.8
Precipitation (mm)..................... 0.0
Popular stations:
List All Stations
scripts/current_weather_curl.sh --list
or
scripts/current_weather.py --list
Returns 100+ Swiss weather stations with codes and last update time.
Forecast by Postal Code
Get multi-day weather forecast:
scripts/forecast.py 8640 # Rapperswil-Jona
scripts/forecast.py 8001 --days 7 # Zurich, 7-day forecast
Note: The forecast API may occasionally be unstable. If it fails, fall back to current weather measurements.
Available Data
Current Weather Measurements
Updated every 10 minutes from automated stations:
Weather Forecasts
Multi-day forecasts by Swiss postal code:
Station Selection
Choose the nearest station to your location:
Tip: Avoid mountain stations for valley locations due to altitude differences.
See references/api_info.md for complete station list and details.
JSON Output
All scripts support --json flag for programmatic use:
scripts/current_weather.py --station RAG --json
scripts/forecast.py 8640 --json
Advanced Usage
Multiple Stations
Show all current measurements:
scripts/current_weather.py --all
Find Nearest Station
1. List all stations: scripts/current_weather.py --list
2. Identify closest by name/location
3. Use that station code
Caching
Data updates every 10 minutes. Cache responses appropriately:
# Cache current weather for 5-10 minutes
Cache forecasts for 1-2 hours
API Reference
See references/api_info.md for:
Dependencies
pip3 install requests
Data Source
Troubleshooting
Forecast API fails: The MeteoSwiss app API occasionally changes. If forecast.py fails, use current weather measurements instead, or check references/api_info.md for alternative methods.
Station not found: Use --list to see available stations. Station codes are 3-letter abbreviations (case-insensitive).
Missing data: Some stations don't measure all parameters. Look for - or N/A in output.
Related
💡 Examples
Current Weather by Station
Get real-time measurements from a specific Swiss weather station:
Option 1: Shell script (no dependencies)
scripts/current_weather_curl.sh --station RAG
Option 2: Python script (requires: pip3 install requests)
scripts/current_weather.py --station RAG
Example output:
Station: RAG
Time: 2026-01-15 11:40 UTC
Temperature (°C)........................ 8.6
Rel. humidity (%)...................... 56.3
Wind speed (km/h)...................... 6.8
Precipitation (mm)..................... 0.0
Popular stations:
List All Stations
scripts/current_weather_curl.sh --list
or
scripts/current_weather.py --list
Returns 100+ Swiss weather stations with codes and last update time.
Forecast by Postal Code
Get multi-day weather forecast:
scripts/forecast.py 8640 # Rapperswil-Jona
scripts/forecast.py 8001 --days 7 # Zurich, 7-day forecast
Note: The forecast API may occasionally be unstable. If it fails, fall back to current weather measurements.
📋 Tips & Best Practices
Forecast API fails: The MeteoSwiss app API occasionally changes. If forecast.py fails, use current weather measurements instead, or check references/api_info.md for alternative methods.
Station not found: Use --list to see available stations. Station codes are 3-letter abbreviations (case-insensitive).
Missing data: Some stations don't measure all parameters. Look for - or N/A in output.