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§
§§§§§§§§
readonly city Id?: number§
readonly city Name?: stringThe name of the city to return the weather of
readonly format?: "standard" | "imperial" | "metric"The format in which format the data should be returned Default: "metric"
readonly language?: stringThe two letter language code to get your output in (eg. en, de, ...).
readonly latitude?: stringThe latitude of the location to return the weather of
readonly location Selection?: "cityName" | "cityId" | "coordinates" | "zipCode"How to define the location for which to return the weather Default: "cityName"
readonly longitude?: stringThe longitude of the location to return the weather of
readonly operation?: "currentWeather" | "5DayForecast"Default: "currentWeather"
readonly zip Code?: stringThe 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