Add solarradiation field to Local Weather Provider

This commit is contained in:
Pete ba
2019-07-20 11:38:44 +01:00
parent 4bfea405af
commit 0473199218
5 changed files with 153 additions and 56 deletions

15
.vscode/launch.json vendored
View File

@@ -1,6 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch via NPM",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"windows": {
"runtimeExecutable": "npm.cmd"
},
"runtimeArgs": [
"run-script", "debug"
],
"port": 9229,
"preLaunchTask": "NPM Compile"
},
{
"type": "node",
"request": "launch",

6
.vscode/tasks.json vendored
View File

@@ -13,6 +13,12 @@
"label": "development",
"isBackground": true,
"problemMatcher": []
},
{
"label": "NPM Compile",
"type": "npm",
"script": "compile",
"problemMatcher": []
}
]
}