interface OpenWeatherMapNodeParameters {
cityId?: number;
cityName?: string;
format?: "standard" | "imperial" | "metric";
language?: string;
latitude?: string;
locationSelection?:
| "cityName"
| "cityId"
| "coordinates"
| "zipCode";
longitude?: string;
operation?: "currentWeather"
| "5DayForecast";
zipCode?: string;
}
Properties§
Source§readonly format?: "standard" | "imperial" | "metric"
readonly format?: "standard" | "imperial" | "metric"
The format in which format the data should be returned Default: "metric"
Source§readonly language?: string
readonly language?: string
The two letter language code to get your output in (eg. en, de, ...).
Source§readonly location Selection?: "cityName" | "cityId" | "coordinates" | "zipCode"
readonly location Selection?: "cityName" | "cityId" | "coordinates" | "zipCode"
How to define the location for which to return the weather Default: "cityName"
Source§readonly zip Code?: string
readonly zip Code?: string
The ID of city to return the weather of. List can be downloaded here: http://bulk.openweathermap.org/sample/.
The ID of city to return the weather of. List can be downloaded here: http://bulk.openweathermap.org/sample/. Default: 160001123