From 63a382be8e9412833b9911730f0b18be754f67f3 Mon Sep 17 00:00:00 2001 From: Patrick Date: Wed, 19 Dec 2018 15:41:12 -0600 Subject: [PATCH] Update Radius (#7900) * Update Radius Clarified the radius parameter, and added it to the example. * Update geo_location.usgs_earthquakes_feed.markdown --- .../geo_location.usgs_earthquakes_feed.markdown | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/source/_components/geo_location.usgs_earthquakes_feed.markdown b/source/_components/geo_location.usgs_earthquakes_feed.markdown index 398ad19649c..c101a2f6697 100644 --- a/source/_components/geo_location.usgs_earthquakes_feed.markdown +++ b/source/_components/geo_location.usgs_earthquakes_feed.markdown @@ -52,7 +52,7 @@ radius: description: The distance in kilometers around Home Assistant's coordinates in which seismic events are included. required: false type: float - default: 50km + default: 50 latitude: description: Latitude of the coordinates around which events are considered. required: false @@ -107,3 +107,17 @@ The following state attributes are available for each entity in addition to the | updated | Date and time when this event was most recently updated. | | status | Indicates whether the event has been reviewed by a human: "automatic", "reviewed", "deleted" | | type | Type of seismic event: "earthquake" or "quarry". | + + +## {% linkable_title Full Configuration %} + +```yaml +# Example configuration.yaml entry +geo_location: + - platform: usgs_earthquakes_feed + feed_type: 'past_month_all_earthquakes' + radius: 50 + minimum_magnitude: 0.0 + latitude: 35.899722 + longitude: -120.432778 +```