mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-01 07:46:49 +00:00

* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
42 lines
1.2 KiB
Markdown
42 lines
1.2 KiB
Markdown
---
|
|
title: "IPMA"
|
|
description: "Instructions on how to integrate Instituto Português do Mar e Atmosfera weather conditions into Home Assistant."
|
|
logo: ipma.png
|
|
ha_category:
|
|
- Weather
|
|
ha_release: 0.72
|
|
ha_iot_class: Cloud Polling
|
|
redirect_from:
|
|
- /components/weather.ipma/
|
|
---
|
|
|
|
The `ipma` weather platform uses the [Instituto Português do Mar e Atmosfera](http://www.ipma.pt) as a source for current and forecast meteorological data.
|
|
|
|
## Configuration
|
|
|
|
To add the IPMA weather platform to your installation, add the following to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
weather:
|
|
- platform: ipma
|
|
```
|
|
|
|
{% configuration %}
|
|
name:
|
|
description: The name you would like to give to the weather station.
|
|
required: false
|
|
type: string
|
|
default: The name of the used station
|
|
latitude:
|
|
description: Latitude of the location for which you want weather information.
|
|
required: false
|
|
type: string
|
|
default: Home Assistant global latitude configuration
|
|
longitude:
|
|
description: Longitude of the location for which you want weather information.
|
|
required: false
|
|
type: string
|
|
default: Home Assistant global longitude configuration
|
|
{% endconfiguration %}
|