@crazylegs
Here is my solution to the envCanada issue:
- used: openweathermap
- needed to get": apiKey (from openweathermap)
- needed to get locationID, name, location (from openweathermap)
- used apiVersion: 2.5 (did not try more recent versions - default version not working)
following is my config file info (used similar version for weather forecast as well)-
module: "weather",
position: "top_right",
header: "Current Weather: ",
config: {
weatherProvider: "openweathermap",
apiVersion: 2.5,
// weatherEndpoint: "",
type: "current",
locationID: 3924642,
name: "Mississauga",
location: "Mississauga ON",
state: "",
country: "CA",
coloured: "true", // not working with this apiVersion
// coord:
// lon: -79.658302,
// lat: 43.578899,
// location: "New York",
// locationID: "5128581", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
apiKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Hope this helps somebody.