From 63622b31a62148ee372675cb5e37b5fd4a0eac0f Mon Sep 17 00:00:00 2001 From: BJ Hansen Date: Mon, 15 Apr 2024 10:35:59 -0500 Subject: [PATCH] readme updates --- readme.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/readme.md b/readme.md index 14fe0fc..62516f2 100644 --- a/readme.md +++ b/readme.md @@ -56,6 +56,14 @@ var_dump($county->timezone()); var_dump($county->timezones()); +/* +** Get information about the location +*/ +echo $location->radarStationId(); +echo $location->city(); +var_dump($location->state()); + + /* ** Get any active alerts for the location and loop through them */ @@ -74,4 +82,5 @@ var_dump($raw_data); echo $observations->temperature(); echo $observations->dewpoint(); +// other methods are available for the other data points as well ```