Interface OpenWeatherMapNodeParameters

Source
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 cityId?: number

The ID of city to return the weather of. List can be downloaded here: http://bulk.openweathermap.org/sample/. Default: 160001123

Source§

readonly cityName?: string

The name of the city to return the weather of

Source§

readonly format?: "standard" | "imperial" | "metric"

The format in which format the data should be returned Default: "metric"

Source§

readonly language?: string

The two letter language code to get your output in (eg. en, de, ...).

Source§

readonly latitude?: string

The latitude of the location to return the weather of

Source§

readonly locationSelection?: "cityName" | "cityId" | "coordinates" | "zipCode"

How to define the location for which to return the weather Default: "cityName"

Source§

readonly longitude?: string

The longitude of the location to return the weather of

Source§

readonly operation?: "currentWeather" | "5DayForecast"

Default: "currentWeather"

Source§

readonly zipCode?: string

The ID of city to return the weather of. List can be downloaded here: http://bulk.openweathermap.org/sample/.