From fb28c35b706eb17d86258d713a20215d0fa0d262 Mon Sep 17 00:00:00 2001 From: Scott Albertson Date: Sat, 4 Jun 2011 11:33:16 -0700 Subject: [PATCH] Corrected the station conditions example in README. --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index fd6480c..294a01d 100644 --- a/README +++ b/README @@ -35,7 +35,7 @@ daily forecasts (through NOAA::Forecast). # for why this is a good idea station_id = NOAA::Station.closest_to(lat, lng).id # persist the station id wherever... - conditions = NOAA.current_conditions_for_station(station_id) + conditions = NOAA.current_conditions_at_station(station_id) # Get four-day forecast forecast = NOAA.forecast(4, lat, lng) # This method should not be called more than once an hour for a given lat/lng