Open Weather Map
Onofficiรซle Beta-vertaling
Deze pagina is vertaald door PageTurner AI (beta). Niet officieel goedgekeurd door het project. Een fout gevonden? Probleem melden โ
Watโ
Toont het actuele weer van een bepaalde locatie met Open Weather Map.
let op
Je moet een API-sleutel aanvragen op de Open Weather Map website. Het gratis abonnement voor Huidig weer en voorspellingen is voldoende.
Voorbeeldconfiguratieโ
- json
- yaml
- toml
{
"type": "owm",
"style": "powerline",
"powerline_symbol": "๎ฐ",
"foreground": "#ffffff",
"background": "#FF0000",
"template": "{{.Weather}} ({{.Temperature}}{{.UnitIcon}})",
"options": {
"api_key": "<YOUR_API_KEY>",
"location": "AMSTERDAM,NL",
"units": "metric",
"http_timeout": 20
}
}
type: owm
style: powerline
powerline_symbol: ๎ฐ
foreground: "#ffffff"
background: "#FF0000"
template: "{{.Weather}} ({{.Temperature}}{{.UnitIcon}})"
options:
api_key: <YOUR_API_KEY>
location: AMSTERDAM,NL
units: metric
http_timeout: 20
type = "owm"
style = "powerline"
powerline_symbol = "๎ฐ"
foreground = "#ffffff"
background = "#FF0000"
template = "{{.Weather}} ({{.Temperature}}{{.UnitIcon}})"
[options]
api_key = "<YOUR_API_KEY>"
location = "AMSTERDAM,NL"
units = "metric"
http_timeout = 20
Optiesโ
| Name | Type | Default | Description |
|---|---|---|---|
api_key | template | . | Your API key from Open Weather Map. |
location | template | De Bilt,NL | The requested location interpreted only if valid coordinates aren't given. Formatted as <City,STATE,COUNTRY_CODE>. City name, state code and country code divided by comma. Please, refer to ISO 3166 for the state codes or country codes . |
units | string | standard | Units of measurement. Available values are standard (kelvin), metric (celsius), and imperial (fahrenheit) |
http_timeout | int | 20 | in milliseconds, the timeout for http request |
Template (informatie)โ
standaard template
{{ .Weather }} ({{ .Temperature }}{{ .UnitIcon }})
Eigenschappenโ
| Name | Type | Description |
|---|---|---|
.Weather | string | the current weather icon |
.Temperature | int | the current temperature |
.UnitIcon | string | the current unit icon(based on units property) |
.URL | string | the url of the current api call |