Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

node-red-node-openweathermap

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-node-openweathermap - npm Package Compare versions

Comparing version 0.4.0 to 0.5.0

@@ -78,5 +78,5 @@ {

},
"tip": "<b>Tip:</b> Es empfiehlt sich, vorab manuell <a href=\"https://openweathermap.org/find?q=\" target=\"_new\">den (in Englisch geschriebenen) Ort</a> zu suchen, um zu prüfen, dass er auch gefunden wird. Oftmals funktioniert auch der 2-Zeichen-Ländercode am besten.",
"tip": "<b>Tipp:</b> Es empfiehlt sich, vorab manuell <a href=\"https://openweathermap.org/find?q=\" target=\"_new\">den (in Englisch geschriebenen) Ort</a> zu suchen, um zu prüfen, dass er auch gefunden wird. Oftmals funktioniert auch der 2-Zeichen-Ländercode am besten.",
"note": "<b>Notiz:</b> Der API-Key ist möglicherweise nicht sofort einsatzbereit nach der Erzeugung. Die <a href=\"https://openweathermap.org/faq\" target=\"_new\">FAQ</a> sagen dazu: <i>Your API key will be activated automatically, between 10 minutes and 2 hours after your successful registration.</i> Einfach etwas warten."
}
}
{
"name": "node-red-node-openweathermap",
"version": "0.4.0",
"version": "0.5.0",
"description": "A Node-RED node that gets the weather report from openweathermap",

@@ -5,0 +5,0 @@ "dependencies": {

@@ -51,2 +51,3 @@ node-red-node-openweathermap

- **location** - the name of the location from which the data was sourced.
- **rain** - the precipitation amount in mm/h (only present if it is raining).

@@ -53,0 +54,0 @@ 5 day Forecast will return a 5 part array, each with

@@ -112,2 +112,3 @@ /**

msg.payload.clouds = jsun.clouds.all;
if (jsun.hasOwnProperty("rain")) { msg.payload.rain = jsun.rain["1h"]; }
if (jsun.hasOwnProperty("coord")) {

@@ -114,0 +115,0 @@ msg.location.lon = jsun.coord.lon;