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§

§readonly cityId?: number

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

§readonly cityName?: string

The 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?: string

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

§readonly latitude?: string

The latitude of the location to return the weather of

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

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

§readonly longitude?: string

The longitude of the location to return the weather of

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

Default: "currentWeather"

§readonly zipCode?: string

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