@sdetweil That did it. Thanks!
Read the statement by Michael Teeuw here.
Posts
-
RE: Default weather module - only showing one location
-
RE: Default weather module - only showing one location
@sdetweil said in Default weather module - only showing one location:
grep version ~/MagicMirror/package.json
It’s showing 2.34.0
-
RE: Default weather module - only showing one location
@sdetweil before the modules it’s set to imperial. Do the settings in the inner modules not override the outer setting?
timeFormat: 12, showperiod: true, units: "imperial", modules: [ -
RE: Default weather module - only showing one location
Ok - so I tried the following - still said “Loading…”
Replaced it with the same location as my local area and it came up.
Restored it to the Australian location and now it’s working :/
The only thing left is that it’s still displaying in Fahrenheit for Australia even though units are set to metric for those modules.
{ module: "weather", position: "bottom_right", header: "Current Weather", config: { weatherProvider: "openmeteo", type: "current", lat: -27.24796, lon: 153.00886, showPrecipitationAmount: true, showPreciptitationProbability: true, degreeLabel: true, colored: true, units: "metric", } }, { module: "weather", position: "bottom_right", header: "Forecast", config: { weatherProvider: "openmeteo", type: "forecast", lat: -27.24796, lon: 153.00886, showUVIndex: true, fadePoint: 0.33, maxNumberOfDays: 7, degreeLabel: true, colored: true, units: "metric", } },
-
Default weather module - only showing one location
Newb.
Have my MagicMirror2 up and running with a few different modules. I have local weather working with openmeteo. Trying to add a second location (bottom_right) but it stays stuck on “Loading…”.
I set up an openweathermap.org API key but I don’t get any weather data using the openweathermap provider for local or remote locations
Should I be able to see multiple locations?
Current config below. I’ve also tried a copy of the openmeteo modules to get the Brisbane weather but it did not work.
I searched for similar issues but couldn’t find anything newer than 2022 and the advice on that post didn’t help.
{ module: "weather", position: "top_left", header: "Current Weather", config: { weatherProvider: "openmeteo", type: "current", lat: [myLat], lon: [myLong], showPrecipitationAmount: true, showPreciptitationProbability: true, showUVIndex: true, degreeLabel: true, colored: true, } }, { module: "weather", position: "top_left", header: "Forecast", config: { weatherProvider: "openmeteo", type: "forecast", lat: [myLat], lon: [myLong], showUVIndex: true, fadePoint: 0.33, maxNumberOfDays: 6, degreeLabel: true, colored: true, } }, { module: "weather", classes: "brisWeather", position: "bottom_right", header: "Current Weather", config: { weatherProvider: "openweathermap", type: "current", location: "Brisbane, AU", locationID: "2174003", showPrecipitationAmount: true, showPreciptitationProbability: true, degreeLabel: true, colored: true, units: "metric", apiKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", } }, { module: "weather", classes: "brisWeather", position: "bottom_right", header: "Forecast", config: { weatherProvider: "openweathermap", type: "forecast", location: "Brisbane, AU", locationID: "2174003", showUVIndex: true, fadePoint: 0.33, maxNumberOfDays: 5, degreeLabel: true, colored: true, units: "metric", apiKey: "xxxxxxxxxxxxxxxxxxxxxxxx", } },