From 2d73e0567c9ac6e03cfc8bfc62a8f24ef4fadebc Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Tue, 11 Jan 2022 23:39:30 +0100 Subject: Use new met.no locationforecast 2.0 API The old XML API will be discontinued next month and is already returning errors occasionally (apparently to nudge lazy devs like me to update their code :D). We're also doing a much better job at caching now, as suggested by the API documentation. We're not yet showing a weather icon, I still have to figure out how to do this now (apparently the weather icons are a separate API / actually just a tag.gz archive that the weather API references?), but at least we're not panic()ing any more in the request handlers due to the unexpected error responses :/. See https://developer.yr.no/doc/GettingStarted/ for an intorduction to the new API. --- config.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'config.go') diff --git a/config.go b/config.go index 9464291..ec4f8ec 100644 --- a/config.go +++ b/config.go @@ -10,7 +10,9 @@ import ( // Config contains all configuration options that are read from .config/startpage/config.json type Config struct { // The place for which to get the weather data. If omitted, no weather will be shown - WeatherPlace string + WeatherCoords struct { + Lat, Lon string + } // A list of links to show Links []Link -- cgit v1.2.3-54-g00ecf