https://v7jjoujoytcidnjfdihfleknda0pamsr.lambda-url.eu-west-2.on.aws/weather?latitude=53&longitude=-2
- Accesses Open Meteo API: https://api.open-meteo.com/v1/forecast?latitude=53&longitude=-2¤t=temperature_2m,wind_speed_10m,wind_direction_10m,relative_humidity_2m,rain,is_day
- Gets Weather for the given LAT & LNG (lat:53, lng:-2 is Stockport, UK)
- Returns a JSON block describing the current weather:
{
"Latitude": 53.0,
"Longitude": -2.0,
"Current": {
"Time": "2026-06-14T22:30:00",
"Temperature_2m": 12.7,
"Wind_speed_10m": 16.2,
"Wind_direction_10m": 78,
"Relative_humidity_2m": 73,
"Rain": 0.0,
"Is_day": false
}
}