mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 17:01:08 -04:00
## [2.23.0] - 2023-04-04 Thanks to: @angeldeejay, @buxxi, @CarJem, @dariom, @DaveChild, @dWoolridge, @grenagit, @Hirschberger, @KristjanESPERANTO, @MagMar94, @naveensrinivasan, @nfogal, @psieg, @rajniszp, @retroflex, @SkySails and @tomzt. Special thanks to @khassel, @rejas and @sdetweil for taking over most (if not all) of the work on this release as project collaborators. This version would not be there without their effort. Thank you guys! You are awesome! ### Added - Added increments for hourly forecasts in weather module (#2996) - Added tests for hourly weather forecast - Added possibility to ignore MagicMirror repo in updatenotification module - Added Pirate Weather as new weather provider (#3005) - Added possibility to use your own templates in Alert module - Added error message if `<modulename>.js` file is missing in module folder to get a hint in the logs (#2403) - Added possibility to use environment variables in `config.js` (#1756) - Added option `pastDaysCount` to default calendar module to control of how many days past events should be displayed - Added thai language to alert module - Added option `sendNotifications` in clock module (#3056) ### Removed - Removed darksky weather provider - Removed unneeded (and unwanted) '.' after the year in calendar repeatingCountTitle (#2896) ### Updated - Use develop as target branch for dependabot - Update issue template, contributing doc and sample config - The weather modules clearly separates precipitation amount and probability (risk of rain/snow) - This requires all providers that only supports probability to change the config from `showPrecipitationAmount` to `showPrecipitationProbability`. - Update tests for weather and calendar module - Changed updatenotification module for MagicMirror repo only: Send only notifications for `master` if there is a tag on a newer commit - Update dates in Calendar widgets every minute - Cleanup jest coverage for patches - Update `stylelint` dependencies, switch to `stylelint-config-standard` and handle `stylelint` issues, update `main.css` matching new rules - Update Eslint config, add new rule and handle issue - Convert lots of callbacks to async/await - Revise require imports (#3071 and #3072) ### Fixed - Fix wrong day labels in envcanada forecast (#2987) - Fix for missing default class name prefix for customEvents in calendar - Fix electron flashing white screen on startup (#1919) - Fix weathergov provider hourly forecast (#3008) - Fix message display with HTML code into alert module (#2828) - Fix typo in french translation - Yr wind direction is no longer inverted - Fix async node_helper stopping electron start (#2487) - The wind direction arrow now points in the direction the wind is flowing, not into the wind (#3019) - Fix precipitation css styles and rounding value - Fix wrong vertical alignment of calendar title column when wrapEvents is true (#3053) - Fix empty news feed stopping the reload forever - Fix e2e tests (failed after async changes) by running calendar and newsfeed tests last - Lint: Use template literals instead of string concatenation - Fix default alert module to render HTML for title and message - Fix Open-Meteo wind speed units
140 lines
4.4 KiB
JavaScript
140 lines
4.4 KiB
JavaScript
/* global SunCalc, WeatherUtils */
|
|
|
|
/* MagicMirror²
|
|
* Module: Weather
|
|
*
|
|
* By Michael Teeuw https://michaelteeuw.nl
|
|
* MIT Licensed.
|
|
*
|
|
* This class is the blueprint for a day which includes weather information.
|
|
*
|
|
* Currently this is focused on the information which is necessary for the current weather.
|
|
* As soon as we start implementing the forecast, mode properties will be added.
|
|
*/
|
|
|
|
/**
|
|
* @external Moment
|
|
*/
|
|
class WeatherObject {
|
|
/**
|
|
* Constructor for a WeatherObject
|
|
*/
|
|
constructor() {
|
|
this.date = null;
|
|
this.windSpeed = null;
|
|
this.windFromDirection = null;
|
|
this.sunrise = null;
|
|
this.sunset = null;
|
|
this.temperature = null;
|
|
this.minTemperature = null;
|
|
this.maxTemperature = null;
|
|
this.weatherType = null;
|
|
this.humidity = null;
|
|
this.precipitationAmount = null;
|
|
this.precipitationUnits = null;
|
|
this.precipitationProbability = null;
|
|
this.feelsLikeTemp = null;
|
|
}
|
|
|
|
cardinalWindDirection() {
|
|
if (this.windFromDirection > 11.25 && this.windFromDirection <= 33.75) {
|
|
return "NNE";
|
|
} else if (this.windFromDirection > 33.75 && this.windFromDirection <= 56.25) {
|
|
return "NE";
|
|
} else if (this.windFromDirection > 56.25 && this.windFromDirection <= 78.75) {
|
|
return "ENE";
|
|
} else if (this.windFromDirection > 78.75 && this.windFromDirection <= 101.25) {
|
|
return "E";
|
|
} else if (this.windFromDirection > 101.25 && this.windFromDirection <= 123.75) {
|
|
return "ESE";
|
|
} else if (this.windFromDirection > 123.75 && this.windFromDirection <= 146.25) {
|
|
return "SE";
|
|
} else if (this.windFromDirection > 146.25 && this.windFromDirection <= 168.75) {
|
|
return "SSE";
|
|
} else if (this.windFromDirection > 168.75 && this.windFromDirection <= 191.25) {
|
|
return "S";
|
|
} else if (this.windFromDirection > 191.25 && this.windFromDirection <= 213.75) {
|
|
return "SSW";
|
|
} else if (this.windFromDirection > 213.75 && this.windFromDirection <= 236.25) {
|
|
return "SW";
|
|
} else if (this.windFromDirection > 236.25 && this.windFromDirection <= 258.75) {
|
|
return "WSW";
|
|
} else if (this.windFromDirection > 258.75 && this.windFromDirection <= 281.25) {
|
|
return "W";
|
|
} else if (this.windFromDirection > 281.25 && this.windFromDirection <= 303.75) {
|
|
return "WNW";
|
|
} else if (this.windFromDirection > 303.75 && this.windFromDirection <= 326.25) {
|
|
return "NW";
|
|
} else if (this.windFromDirection > 326.25 && this.windFromDirection <= 348.75) {
|
|
return "NNW";
|
|
} else {
|
|
return "N";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determines if the sun sets or rises next. Uses the current time and not
|
|
* the date from the weather-forecast.
|
|
*
|
|
* @param {Moment} date an optional date where you want to get the next
|
|
* action for. Useful only in tests, defaults to the current time.
|
|
* @returns {string} "sunset" or "sunrise"
|
|
*/
|
|
nextSunAction(date = moment()) {
|
|
return date.isBetween(this.sunrise, this.sunset) ? "sunset" : "sunrise";
|
|
}
|
|
|
|
feelsLike() {
|
|
if (this.feelsLikeTemp) {
|
|
return this.feelsLikeTemp;
|
|
}
|
|
return WeatherUtils.calculateFeelsLike(this.temperature, this.windSpeed, this.humidity);
|
|
}
|
|
|
|
/**
|
|
* Checks if the weatherObject is at dayTime.
|
|
*
|
|
* @returns {boolean} true if it is at dayTime
|
|
*/
|
|
isDayTime() {
|
|
const now = !this.date ? moment() : this.date;
|
|
return now.isBetween(this.sunrise, this.sunset, undefined, "[]");
|
|
}
|
|
|
|
/**
|
|
* Update the sunrise / sunset time depending on the location. This can be
|
|
* used if your provider doesn't provide that data by itself. Then SunCalc
|
|
* is used here to calculate them according to the location.
|
|
*
|
|
* @param {number} lat latitude
|
|
* @param {number} lon longitude
|
|
*/
|
|
updateSunTime(lat, lon) {
|
|
const now = !this.date ? new Date() : this.date.toDate();
|
|
const times = SunCalc.getTimes(now, lat, lon);
|
|
this.sunrise = moment(times.sunrise);
|
|
this.sunset = moment(times.sunset);
|
|
}
|
|
|
|
/**
|
|
* Clone to simple object to prevent mutating and deprecation of legacy library.
|
|
*
|
|
* Before being handed to other modules, mutable values must be cloned safely.
|
|
* Especially 'moment' object is not immutable, so original 'date', 'sunrise', 'sunset' could be corrupted or changed by other modules.
|
|
*
|
|
* @returns {object} plained object clone of original weatherObject
|
|
*/
|
|
simpleClone() {
|
|
const toFlat = ["date", "sunrise", "sunset"];
|
|
let clone = { ...this };
|
|
for (const prop of toFlat) {
|
|
clone[prop] = clone?.[prop]?.valueOf() ?? clone?.[prop];
|
|
}
|
|
return clone;
|
|
}
|
|
}
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = WeatherObject;
|
|
}
|