Skip to content

Commit 5759dae

Browse files
committed
Minor changes (add link, indent, URL)
1 parent 7c5eb68 commit 5759dae

File tree

1 file changed

+47
-50
lines changed

1 file changed

+47
-50
lines changed

source/_components/sensor.bom.markdown

Lines changed: 47 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -13,66 +13,63 @@ featured: false
1313
ha_release: 0.29
1414
---
1515

16-
The `bom_weather_current` platform allows you to get the current weather conditions from the Bureau of Meteorology (BOM) Australia.
17-
- Each sensor will be given the device_id of "bom [optionalname] friendlyname units"
18-
- Get the station id for your local BOM station from BOM > State > Observations > Latest Observations > Choose the station > read the url
19-
- The url will look like "http://www.bom.gov.au/products/IDS60801/IDS60801.94675.shtml". This is for Adelaide.
20-
- The url is read as: "http://www.bom.gov.au/products/[zone_id]/[zone_id].[wmo_id].shtml"
21-
- A name is optional but if multiple bom weather stations are used a name will be required.
22-
- The sensor will update every minute 35 minutes after last data timestamp. This allows for the 30 minute observation cycle and the approximate 5 minute update delay in publishing the data.
23-
16+
The `bom_weather_current` platform allows you to get the current weather conditions from the [Bureau of Meteorology (BOM)](http://www.bom.gov.au/) Australia.
2417

18+
- Each sensor will be given the `device_id` of "bom [optionalname] friendlyname units"
19+
- Get the station ID for your local BOM station from the BOM website: State -> Observations -> Latest Observations -> Choose the station
20+
- The URL will look like http://www.bom.gov.au/products/IDS60801/IDS60801.94675.shtml. This is for Adelaide. The URL is read as: http://www.bom.gov.au/products/[zone_id]/[zone_id].[wmo_id].shtml
21+
- A name is optional but if multiple BOM weather stations are used a name will be required.
22+
- The sensor will update every minute 35 minutes after last data timestamp. This allows for the 30 minute observation cycle and the approximate 5 minute update delay in publishing the data.
2523

26-
To add the BOM weather observation to your installation, add the following to
27-
your `configuration.yaml` file:
24+
To add the BOM weather observation to your installation, add the following to your `configuration.yaml` file:
2825

2926
```yaml
3027
# Example configuration.yaml entry
3128
sensor:
32-
platform: bom_weather_current
33-
name: "optional name"
34-
zone_id: IDS60801
35-
wmo_id: 94675
36-
monitored_conditions:
37-
- wmo
38-
- name
39-
- history_product
40-
- local_date_time
41-
- local_date_time_full
42-
- aifstime_utc
43-
- lat
44-
- lon
45-
- apparent_t
46-
- cloud
47-
- cloud_base_m
48-
- cloud_oktas
49-
- cloud_type_id
50-
- cloud_type
51-
- delta_t
52-
- gust_kmh
53-
- gust_kt
54-
- air_temp
55-
- dewpt
56-
- press
57-
- press_qnh
58-
- press_msl
59-
- press_tend
60-
- rain_trace
61-
- rel_hum
62-
- sea_state
63-
- swell_dir_worded
64-
- swell_height
65-
- swell_period
66-
- vis_km
67-
- weather
68-
- wind_dir
69-
- wind_spd_kmh
70-
- wind_spd_kt
29+
- platform: bom_weather_current
30+
name: "optional name"
31+
zone_id: IDS60801
32+
wmo_id: 94675
33+
monitored_conditions:
34+
- wmo
35+
- name
36+
- history_product
37+
- local_date_time
38+
- local_date_time_full
39+
- aifstime_utc
40+
- lat
41+
- lon
42+
- apparent_t
43+
- cloud
44+
- cloud_base_m
45+
- cloud_oktas
46+
- cloud_type_id
47+
- cloud_type
48+
- delta_t
49+
- gust_kmh
50+
- gust_kt
51+
- air_temp
52+
- dewpt
53+
- press
54+
- press_qnh
55+
- press_msl
56+
- press_tend
57+
- rain_trace
58+
- rel_hum
59+
- sea_state
60+
- swell_dir_worded
61+
- swell_height
62+
- swell_period
63+
- vis_km
64+
- weather
65+
- wind_dir
66+
- wind_spd_kmh
67+
- wind_spd_kt
7168
```
7269
7370
Configuration variables:
7471
7572
- **zone_id** (*Required*): The zone_id as identified from the BOM website.
7673
- **wmo_id** (*Required*): The wmo as identified from the BOM website.
7774
- **name** (*Optional*): The name you would like to give to the weather station.
78-
- **monitored_conditions** (*Required*): A List of the conditions to monitor
75+
- **monitored_conditions** (*Required*): A list of the conditions to monitor.

0 commit comments

Comments
 (0)