barometer 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/.pelusa.yml +7 -0
- data/.travis.yml +6 -3
- data/Gemfile +11 -1
- data/README.md +89 -244
- data/Rakefile +1 -1
- data/barometer.gemspec +22 -24
- data/lib/barometer.rb +14 -65
- data/lib/barometer/base.rb +35 -65
- data/lib/barometer/data.rb +15 -20
- data/lib/barometer/data/attribute.rb +19 -0
- data/lib/barometer/data/attributes/distance.rb +11 -0
- data/lib/barometer/data/attributes/float.rb +11 -0
- data/lib/barometer/data/attributes/integer.rb +11 -0
- data/lib/barometer/data/attributes/location.rb +11 -0
- data/lib/barometer/data/attributes/pressure.rb +11 -0
- data/lib/barometer/data/attributes/sun.rb +15 -0
- data/lib/barometer/data/attributes/temperature.rb +11 -0
- data/lib/barometer/data/attributes/time.rb +11 -0
- data/lib/barometer/data/attributes/vector.rb +11 -0
- data/lib/barometer/data/attributes/zone.rb +11 -0
- data/lib/barometer/data/convertable_units.rb +145 -0
- data/lib/barometer/data/coordinates.rb +16 -0
- data/lib/barometer/data/distance.rb +14 -133
- data/lib/barometer/data/geo.rb +22 -59
- data/lib/barometer/data/location.rb +14 -20
- data/lib/barometer/data/pressure.rb +14 -135
- data/lib/barometer/data/sun.rb +24 -24
- data/lib/barometer/data/temperature.rb +14 -169
- data/lib/barometer/data/vector.rb +44 -0
- data/lib/barometer/data/zone.rb +109 -112
- data/lib/barometer/query.rb +23 -161
- data/lib/barometer/query/base.rb +88 -0
- data/lib/barometer/query/converter.rb +64 -0
- data/lib/barometer/query/converters/from_coordinates_to_noaa_station_id.rb +30 -0
- data/lib/barometer/query/converters/from_geocode_to_coordinates.rb +28 -0
- data/lib/barometer/query/converters/from_short_zipcode_to_zipcode.rb +28 -0
- data/lib/barometer/query/converters/from_weather_id_to_geocode.rb +30 -0
- data/lib/barometer/query/converters/from_woe_id_or_ipv4_to_geocode.rb +32 -0
- data/lib/barometer/query/converters/to_geocode.rb +30 -0
- data/lib/barometer/query/converters/to_weather_id.rb +30 -0
- data/lib/barometer/query/converters/to_woe_id.rb +30 -0
- data/lib/barometer/query/format.rb +59 -0
- data/lib/barometer/query/formats/base.rb +22 -0
- data/lib/barometer/query/formats/coordinates.rb +14 -0
- data/lib/barometer/query/formats/geocode.rb +15 -0
- data/lib/barometer/query/formats/icao.rb +35 -0
- data/lib/barometer/query/formats/ipv4_address.rb +19 -0
- data/lib/barometer/query/formats/noaa_station_id.rb +15 -0
- data/lib/barometer/query/formats/postalcode.rb +20 -0
- data/lib/barometer/query/formats/short_zipcode.rb +15 -0
- data/lib/barometer/{translations → query/formats/translations}/icao_country_codes.yml +0 -0
- data/lib/barometer/{translations → query/formats/translations}/weather_country_codes.yml +0 -0
- data/lib/barometer/query/formats/unknown.rb +14 -0
- data/lib/barometer/query/formats/weather_id.rb +33 -0
- data/lib/barometer/query/formats/woe_id.rb +28 -0
- data/lib/barometer/query/formats/zipcode.rb +15 -0
- data/lib/barometer/query/service.rb +13 -0
- data/lib/barometer/query/services/apis/geonames_timezone.rb +26 -0
- data/lib/barometer/query/services/apis/google_geocode.rb +35 -0
- data/lib/barometer/query/services/apis/noaa_station.rb +31 -0
- data/lib/barometer/query/services/apis/weather_id.rb +35 -0
- data/lib/barometer/query/services/apis/wunderground_timezone.rb +26 -0
- data/lib/barometer/query/services/apis/yahoo_placefinder.rb +35 -0
- data/lib/barometer/query/services/apis/yahoo_weather.rb +31 -0
- data/lib/barometer/query/services/from_weather_id.rb +64 -0
- data/lib/barometer/query/services/geonames_timezone.rb +18 -0
- data/lib/barometer/query/services/google_geocode.rb +106 -0
- data/lib/barometer/query/services/noaa_station_id.rb +28 -0
- data/lib/barometer/query/services/to_weather_id.rb +25 -0
- data/lib/barometer/query/services/to_woe_id.rb +29 -0
- data/lib/barometer/query/services/wunderground_timezone.rb +18 -0
- data/lib/barometer/query/services/yahoo_geocode.rb +69 -0
- data/lib/barometer/response.rb +12 -0
- data/lib/barometer/response/base.rb +57 -0
- data/lib/barometer/response/current.rb +27 -0
- data/lib/barometer/response/prediction.rb +41 -0
- data/lib/barometer/response/prediction_collection.rb +48 -0
- data/lib/barometer/utils.rb +17 -0
- data/lib/barometer/utils/address.rb +33 -0
- data/lib/barometer/utils/api.rb +30 -0
- data/lib/barometer/utils/config_reader.rb +40 -0
- data/lib/barometer/utils/get.rb +17 -0
- data/lib/barometer/utils/json_reader.rb +22 -0
- data/lib/barometer/utils/payload.rb +100 -0
- data/lib/barometer/utils/payload_request.rb +37 -0
- data/lib/barometer/utils/post.rb +24 -0
- data/lib/barometer/utils/time.rb +78 -0
- data/lib/barometer/{translations → utils/translations}/zone_codes.yml +0 -0
- data/lib/barometer/utils/versioned_registration.rb +70 -0
- data/lib/barometer/utils/xml_reader.rb +27 -0
- data/lib/barometer/utils/zone_code_lookup.rb +30 -0
- data/lib/barometer/version.rb +1 -1
- data/lib/barometer/weather.rb +44 -173
- data/lib/barometer/weather_service.rb +41 -0
- data/lib/barometer/weather_services/base.rb +50 -0
- data/lib/barometer/weather_services/forecast_io.rb +36 -0
- data/lib/barometer/weather_services/forecast_io/api.rb +22 -0
- data/lib/barometer/weather_services/forecast_io/query.rb +38 -0
- data/lib/barometer/weather_services/forecast_io/response.rb +31 -0
- data/lib/barometer/weather_services/forecast_io/response/current_weather.rb +78 -0
- data/lib/barometer/weather_services/forecast_io/response/forecasted_weather.rb +74 -0
- data/lib/barometer/weather_services/forecast_io/response/location.rb +19 -0
- data/lib/barometer/weather_services/forecast_io/response/timezone.rb +25 -0
- data/lib/barometer/weather_services/noaa.rb +21 -305
- data/lib/barometer/weather_services/noaa/current_api.rb +25 -0
- data/lib/barometer/weather_services/noaa/current_query.rb +30 -0
- data/lib/barometer/weather_services/noaa/current_response.rb +29 -0
- data/lib/barometer/weather_services/noaa/forecast_api.rb +25 -0
- data/lib/barometer/weather_services/noaa/forecast_query.rb +39 -0
- data/lib/barometer/weather_services/noaa/forecast_response.rb +28 -0
- data/lib/barometer/weather_services/noaa/response/current_location.rb +42 -0
- data/lib/barometer/weather_services/noaa/response/current_station.rb +46 -0
- data/lib/barometer/weather_services/noaa/response/current_weather.rb +82 -0
- data/lib/barometer/weather_services/noaa/response/forecasted_weather.rb +90 -0
- data/lib/barometer/weather_services/noaa/response/location.rb +19 -0
- data/lib/barometer/weather_services/noaa/response/timezone.rb +15 -0
- data/lib/barometer/weather_services/response.rb +9 -0
- data/lib/barometer/weather_services/response/location.rb +42 -0
- data/lib/barometer/weather_services/response/time_zone.rb +19 -0
- data/lib/barometer/weather_services/weather_bug.rb +24 -280
- data/lib/barometer/weather_services/weather_bug/current_api.rb +26 -0
- data/lib/barometer/weather_services/weather_bug/current_response.rb +33 -0
- data/lib/barometer/weather_services/weather_bug/forecast_api.rb +26 -0
- data/lib/barometer/weather_services/weather_bug/forecast_response.rb +29 -0
- data/lib/barometer/weather_services/weather_bug/query.rb +42 -0
- data/lib/barometer/weather_services/weather_bug/response/current_weather.rb +82 -0
- data/lib/barometer/weather_services/weather_bug/response/forecasted_weather.rb +67 -0
- data/lib/barometer/weather_services/weather_bug/response/location.rb +23 -0
- data/lib/barometer/weather_services/weather_bug/response/station.rb +43 -0
- data/lib/barometer/weather_services/weather_bug/response/sun.rb +32 -0
- data/lib/barometer/weather_services/weather_bug/response/time_helper.rb +52 -0
- data/lib/barometer/weather_services/weather_bug/response/timezone.rb +15 -0
- data/lib/barometer/weather_services/wunderground_v1.rb +32 -0
- data/lib/barometer/weather_services/wunderground_v1/current_api.rb +21 -0
- data/lib/barometer/weather_services/wunderground_v1/current_response.rb +31 -0
- data/lib/barometer/weather_services/wunderground_v1/forecast_api.rb +21 -0
- data/lib/barometer/weather_services/wunderground_v1/forecast_response.rb +33 -0
- data/lib/barometer/weather_services/wunderground_v1/query.rb +30 -0
- data/lib/barometer/weather_services/wunderground_v1/response/current_weather.rb +92 -0
- data/lib/barometer/weather_services/wunderground_v1/response/forecasted_weather.rb +87 -0
- data/lib/barometer/weather_services/wunderground_v1/response/full_timezone.rb +22 -0
- data/lib/barometer/weather_services/wunderground_v1/response/location.rb +43 -0
- data/lib/barometer/weather_services/wunderground_v1/response/station.rb +39 -0
- data/lib/barometer/weather_services/wunderground_v1/response/sun.rb +53 -0
- data/lib/barometer/weather_services/wunderground_v1/response/timezone.rb +15 -0
- data/lib/barometer/weather_services/yahoo.rb +16 -198
- data/lib/barometer/weather_services/yahoo/api.rb +21 -0
- data/lib/barometer/weather_services/yahoo/query.rb +42 -0
- data/lib/barometer/weather_services/yahoo/response.rb +39 -0
- data/lib/barometer/weather_services/yahoo/response/current_weather.rb +86 -0
- data/lib/barometer/weather_services/yahoo/response/forecasted_weather.rb +71 -0
- data/lib/barometer/weather_services/yahoo/response/location.rb +47 -0
- data/lib/barometer/weather_services/yahoo/response/sun.rb +43 -0
- data/lib/barometer/weather_services/yahoo/response/timezone.rb +15 -0
- data/spec/barometer_spec.rb +18 -120
- data/spec/base_spec.rb +114 -0
- data/spec/cassettes/Converter_FromCoordinatesToNoaaStationId.json +1 -0
- data/spec/cassettes/Converter_FromWeatherIdToGeocode.json +1 -0
- data/spec/cassettes/Converter_FromWoeIdOrIpv4ToGeocode.json +1 -0
- data/spec/cassettes/Converter_ToGeocode.json +1 -0
- data/spec/cassettes/Converter_ToWeatherId.json +1 -0
- data/spec/cassettes/Converter_ToWoeId.json +1 -0
- data/spec/cassettes/Service_FromWeatherId.json +1 -0
- data/spec/cassettes/Service_GoogleGeocode.json +1 -0
- data/spec/cassettes/Service_NoaaStation.json +1 -0
- data/spec/cassettes/Service_ToWeatherId.json +1 -0
- data/spec/cassettes/Service_ToWoeId.json +1 -0
- data/spec/cassettes/Service_YahooGeocode.json +1 -0
- data/spec/cassettes/WeatherService_ForecastIo.json +1 -0
- data/spec/cassettes/WeatherService_Noaa.json +1 -1
- data/spec/cassettes/WeatherService_WeatherBug.json +1 -1
- data/spec/cassettes/WeatherService_WundergroundV1.json +1 -0
- data/spec/cassettes/WeatherService_Yahoo.json +1 -1
- data/spec/data/attributes/distance_spec.rb +60 -0
- data/spec/data/attributes/location_spec.rb +41 -0
- data/spec/data/attributes/pressure_spec.rb +60 -0
- data/spec/data/attributes/sun_spec.rb +33 -0
- data/spec/data/attributes/temperature_spec.rb +60 -0
- data/spec/data/attributes/time_spec.rb +58 -0
- data/spec/data/attributes/vector_spec.rb +43 -0
- data/spec/data/attributes/zone_spec.rb +34 -0
- data/spec/data/convertable_units_spec.rb +299 -0
- data/spec/data/coordinates_spec.rb +15 -0
- data/spec/data/distance_spec.rb +49 -333
- data/spec/data/geo_spec.rb +72 -71
- data/spec/data/location_spec.rb +70 -65
- data/spec/data/pressure_spec.rb +49 -333
- data/spec/data/sun_spec.rb +57 -81
- data/spec/data/temperature_spec.rb +49 -393
- data/spec/data/vector_spec.rb +100 -0
- data/spec/data/zone_spec.rb +199 -266
- data/spec/query/base_spec.rb +296 -0
- data/spec/query/converter_spec.rb +98 -0
- data/spec/query/converters/from_coordinates_to_noaa_station_id_spec.rb +35 -0
- data/spec/query/converters/from_geocode_to_coordinates_spec.rb +25 -0
- data/spec/query/converters/from_short_zipcode_to_zipcode_spec.rb +31 -0
- data/spec/query/converters/from_weather_id_to_geocode_spec.rb +40 -0
- data/spec/query/converters/from_woe_id_or_ipv4_to_geocode_spec.rb +51 -0
- data/spec/query/converters/to_geocode_spec.rb +99 -0
- data/spec/query/converters/to_weather_id_spec.rb +35 -0
- data/spec/query/converters/to_woe_id_spec.rb +74 -0
- data/spec/query/formats/base_spec.rb +15 -0
- data/spec/query/formats/coordinates_spec.rb +13 -0
- data/spec/query/formats/geocode_spec.rb +9 -0
- data/spec/query/formats/icao_spec.rb +20 -0
- data/spec/query/formats/ipv4_address_spec.rb +33 -0
- data/spec/query/formats/noaa_station_id_spec.rb +9 -0
- data/spec/query/formats/postalcode_spec.rb +18 -0
- data/spec/query/formats/short_zipcode_spec.rb +18 -0
- data/spec/query/formats/unknown_spec.rb +9 -0
- data/spec/query/formats/weather_id_spec.rb +31 -0
- data/spec/query/formats/woe_id_spec.rb +45 -0
- data/spec/query/formats/zipcode_spec.rb +18 -0
- data/spec/query/formats_spec.rb +55 -0
- data/spec/query/services/from_weather_id_spec.rb +54 -0
- data/spec/query/services/google_geocode_spec.rb +60 -0
- data/spec/query/services/noaa_station_id_spec.rb +23 -0
- data/spec/query/services/to_weather_id_spec.rb +23 -0
- data/spec/query/services/to_woe_id_spec.rb +51 -0
- data/spec/query/services/yahoo_geocode_spec.rb +72 -0
- data/spec/response/base_spec.rb +103 -0
- data/spec/response/current_spec.rb +33 -0
- data/spec/response/predicition_spec.rb +65 -0
- data/spec/response/prediction_collection_spec.rb +97 -0
- data/spec/spec_helper.rb +14 -12
- data/spec/support/key_file_parser.rb +22 -0
- data/spec/support/matchers/formats.rb +36 -0
- data/spec/support/matchers/have_data.rb +46 -0
- data/spec/support/matchers/have_field.rb +128 -0
- data/spec/support/matchers/have_forecast.rb +46 -0
- data/spec/support/matchers/path.rb +23 -0
- data/spec/support/query_factory.rb +20 -0
- data/spec/utils/address_spec.rb +67 -0
- data/spec/utils/config_reader_spec.rb +157 -0
- data/spec/utils/get_spec.rb +22 -0
- data/spec/utils/payload_request_spec.rb +69 -0
- data/spec/utils/payload_spec.rb +168 -0
- data/spec/utils/post_spec.rb +20 -0
- data/spec/utils/time_spec.rb +93 -0
- data/spec/utils/versioned_registration_spec.rb +105 -0
- data/spec/weather_services/base_spec.rb +116 -0
- data/spec/weather_services/forecast_io_spec.rb +71 -0
- data/spec/weather_services/noaa/current_response_spec.rb +22 -0
- data/spec/weather_services/noaa/forecast_response_spec.rb +33 -0
- data/spec/weather_services/noaa_spec.rb +68 -166
- data/spec/weather_services/weather_bug/current_response_spec.rb +64 -0
- data/spec/weather_services/weather_bug/forecast_response_spec.rb +23 -0
- data/spec/weather_services/weather_bug_spec.rb +62 -202
- data/spec/weather_services/wunderground_v1/current_response_spec.rb +19 -0
- data/spec/weather_services/wunderground_v1/forecast_response_spec.rb +62 -0
- data/spec/weather_services/wunderground_v1_spec.rb +78 -0
- data/spec/weather_services/yahoo/response_spec.rb +73 -0
- data/spec/weather_services/yahoo_spec.rb +52 -135
- data/spec/weather_services_spec.rb +103 -0
- data/spec/weather_spec.rb +167 -347
- metadata +342 -123
- data/.document +0 -5
- data/TODO +0 -60
- data/bin/barometer +0 -441
- data/lib/barometer/data/local_datetime.rb +0 -145
- data/lib/barometer/data/local_time.rb +0 -134
- data/lib/barometer/data/speed.rb +0 -158
- data/lib/barometer/data/units.rb +0 -49
- data/lib/barometer/formats.rb +0 -13
- data/lib/barometer/formats/coordinates.rb +0 -57
- data/lib/barometer/formats/format.rb +0 -64
- data/lib/barometer/formats/geocode.rb +0 -60
- data/lib/barometer/formats/icao.rb +0 -37
- data/lib/barometer/formats/postalcode.rb +0 -22
- data/lib/barometer/formats/short_zipcode.rb +0 -17
- data/lib/barometer/formats/weather_id.rb +0 -92
- data/lib/barometer/formats/woe_id.rb +0 -150
- data/lib/barometer/formats/zipcode.rb +0 -31
- data/lib/barometer/key_file_parser.rb +0 -20
- data/lib/barometer/measurements/measurement.rb +0 -202
- data/lib/barometer/measurements/result.rb +0 -207
- data/lib/barometer/measurements/result_array.rb +0 -75
- data/lib/barometer/services.rb +0 -19
- data/lib/barometer/weather_services/service.rb +0 -189
- data/lib/barometer/weather_services/wunderground.rb +0 -264
- data/lib/barometer/web_services/geocode.rb +0 -34
- data/lib/barometer/web_services/noaa_station_id.rb +0 -53
- data/lib/barometer/web_services/placemaker.rb +0 -95
- data/lib/barometer/web_services/timezone.rb +0 -38
- data/lib/barometer/web_services/weather_id.rb +0 -50
- data/lib/barometer/web_services/web_service.rb +0 -29
- data/spec/cassettes/Barometer.json +0 -1
- data/spec/cassettes/Query.json +0 -1
- data/spec/cassettes/Query_Format_Coordinates.json +0 -1
- data/spec/cassettes/Query_Format_Geocode.json +0 -1
- data/spec/cassettes/Query_Format_WeatherID.json +0 -1
- data/spec/cassettes/Query_Format_WoeID.json +0 -1
- data/spec/cassettes/WeatherService.json +0 -1
- data/spec/cassettes/WeatherService_Wunderground.json +0 -1
- data/spec/cassettes/WebService_Geocode.json +0 -1
- data/spec/cassettes/WebService_NoaaStation.json +0 -1
- data/spec/data/local_datetime_spec.rb +0 -274
- data/spec/data/local_time_spec.rb +0 -239
- data/spec/data/speed_spec.rb +0 -374
- data/spec/data/units_spec.rb +0 -101
- data/spec/formats/coordinates_spec.rb +0 -166
- data/spec/formats/format_spec.rb +0 -74
- data/spec/formats/geocode_spec.rb +0 -163
- data/spec/formats/icao_spec.rb +0 -55
- data/spec/formats/postalcode_spec.rb +0 -53
- data/spec/formats/short_zipcode_spec.rb +0 -47
- data/spec/formats/weather_id_spec.rb +0 -182
- data/spec/formats/woe_id_spec.rb +0 -211
- data/spec/formats/zipcode_spec.rb +0 -103
- data/spec/key_file_parser_spec.rb +0 -28
- data/spec/measurements/measurement_spec.rb +0 -381
- data/spec/measurements/result_array_spec.rb +0 -150
- data/spec/measurements/result_spec.rb +0 -632
- data/spec/query_spec.rb +0 -498
- data/spec/weather_services/services_spec.rb +0 -135
- data/spec/weather_services/wunderground_spec.rb +0 -179
- data/spec/web_services/geocode_spec.rb +0 -31
- data/spec/web_services/noaa_station_id_spec.rb +0 -33
- data/spec/web_services/placemaker_spec.rb +0 -41
- data/spec/web_services/web_services_spec.rb +0 -20
@@ -1,34 +0,0 @@
|
|
1
|
-
module Barometer
|
2
|
-
#
|
3
|
-
# Web Service: Geocode
|
4
|
-
#
|
5
|
-
# uses Google Maps Geocoding service
|
6
|
-
#
|
7
|
-
class WebService::Geocode < WebService
|
8
|
-
|
9
|
-
def self.fetch(query)
|
10
|
-
raise ArgumentError unless _is_a_query?(query)
|
11
|
-
puts "geocoding: #{query.q}" if Barometer::debug?
|
12
|
-
|
13
|
-
query_params = {}
|
14
|
-
query_params[:region] = query.country_code
|
15
|
-
query_params[:sensor] = 'false'
|
16
|
-
|
17
|
-
if query.format == :coordinates
|
18
|
-
query_params[:latlng] = query.q
|
19
|
-
else
|
20
|
-
query_params[:address] = query.q
|
21
|
-
end
|
22
|
-
|
23
|
-
location = self.get(
|
24
|
-
"http://maps.googleapis.com/maps/api/geocode/json",
|
25
|
-
:query => query_params,
|
26
|
-
:format => :json,
|
27
|
-
:timeout => Barometer.timeout
|
28
|
-
)
|
29
|
-
location = location['results'].first if (location && location['results'])
|
30
|
-
location ? (geo = Data::Geo.new(location)) : nil
|
31
|
-
end
|
32
|
-
|
33
|
-
end
|
34
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
module Barometer
|
2
|
-
#
|
3
|
-
# Web Service: NOAA Station ID
|
4
|
-
#
|
5
|
-
# uses noaa to find the closest station id
|
6
|
-
#
|
7
|
-
class WebService::NoaaStation < WebService
|
8
|
-
|
9
|
-
# get the closest station id for given coordinates
|
10
|
-
#
|
11
|
-
def self.fetch(latitude, longitude)
|
12
|
-
|
13
|
-
begin
|
14
|
-
require 'nokogiri'
|
15
|
-
rescue LoadError
|
16
|
-
puts "\n****\nTo use this functionality you will need to install Nokogiri >= 1.3.3\n****\n\n"
|
17
|
-
return nil
|
18
|
-
end
|
19
|
-
|
20
|
-
puts "fetching NOAA station ID near #{latitude}, #{longitude}" if Barometer::debug?
|
21
|
-
return nil unless latitude && longitude
|
22
|
-
_fetch_via_noaa(latitude, longitude)
|
23
|
-
end
|
24
|
-
|
25
|
-
# http://forecast.weather.gov/MapClick.php?textField1=LATITUDE&textField2=LONGITUDE
|
26
|
-
def self._fetch_via_noaa(latitude, longitude)
|
27
|
-
response = self.get(
|
28
|
-
"http://forecast.weather.gov/MapClick.php?",
|
29
|
-
:query => { :textField1 => latitude, :textField2 => longitude },
|
30
|
-
:format => :html,
|
31
|
-
:timeout => Barometer.timeout
|
32
|
-
)
|
33
|
-
|
34
|
-
# parse the station id from the given page
|
35
|
-
station_id = nil
|
36
|
-
|
37
|
-
begin
|
38
|
-
doc = Nokogiri::HTML.parse(response.body)
|
39
|
-
if doc && links = doc.search(".current-conditions-extra a")
|
40
|
-
sid_link = links.detect{|link| link.attr("href").match(/sid=(.*)&/)}
|
41
|
-
begin
|
42
|
-
station_id = sid_link.attr("href").match(/sid=(.*?)&/)[1]
|
43
|
-
rescue
|
44
|
-
end
|
45
|
-
end
|
46
|
-
rescue
|
47
|
-
puts "[ERROR] finding NOAA station near #{latitude}, #{longitude}" if Barometer::debug?
|
48
|
-
end
|
49
|
-
station_id
|
50
|
-
end
|
51
|
-
|
52
|
-
end
|
53
|
-
end
|
@@ -1,95 +0,0 @@
|
|
1
|
-
module Barometer
|
2
|
-
#
|
3
|
-
# Web Service: Placemaker (by Yahoo!)
|
4
|
-
#
|
5
|
-
# Yahoo! Placemaker is a geoparsing web service,
|
6
|
-
# this uses Placemaker to obtain a WOEID, as only Yahoo knows them
|
7
|
-
#
|
8
|
-
# accepts: city name, coords, postal code, NOT zip code, NOT icao
|
9
|
-
#
|
10
|
-
class WebService::Placemaker < WebService
|
11
|
-
|
12
|
-
# get the woe_id for a given query
|
13
|
-
#
|
14
|
-
def self.fetch(query)
|
15
|
-
|
16
|
-
begin
|
17
|
-
require 'nokogiri'
|
18
|
-
rescue LoadError
|
19
|
-
puts "\n****\nTo use this functionality you will need to install Nokogiri >= 1.3.3\n****\n\n"
|
20
|
-
return nil
|
21
|
-
end
|
22
|
-
|
23
|
-
return nil unless query
|
24
|
-
return nil unless _has_geocode_key?
|
25
|
-
raise ArgumentError unless _is_a_query?(query)
|
26
|
-
puts "fetch woe_id: #{query.q}" if Barometer::debug?
|
27
|
-
|
28
|
-
# BUG: httparty doesn't seem to post correctly
|
29
|
-
# self.post(
|
30
|
-
# 'http://wherein.yahooapis.com/v1/document',
|
31
|
-
# :query => {
|
32
|
-
# :documentType => "html",
|
33
|
-
# :outputType => 'xml',
|
34
|
-
# :documentContent => _adjust_query(query),
|
35
|
-
# :appid => Barometer.yahoo_placemaker_app_id
|
36
|
-
# }, :format => :xml, :timeout => Barometer.timeout
|
37
|
-
# )
|
38
|
-
|
39
|
-
# TODO: include timeout
|
40
|
-
# :timeout => Barometer.timeout
|
41
|
-
#
|
42
|
-
res = Net::HTTP.post_form(
|
43
|
-
URI.parse("http://wherein.yahooapis.com/v1/document"),
|
44
|
-
{
|
45
|
-
'documentType' => 'text/html',
|
46
|
-
'outputType' => 'xml',
|
47
|
-
'documentContent' => _adjust_query(query),
|
48
|
-
'appid' => Barometer.yahoo_placemaker_app_id
|
49
|
-
}
|
50
|
-
)
|
51
|
-
|
52
|
-
Nokogiri::HTML.parse(res.body)
|
53
|
-
end
|
54
|
-
|
55
|
-
# get the location_data (geocode) for a given woe_id
|
56
|
-
#
|
57
|
-
def self.reverse(query)
|
58
|
-
puts "reverse woe_id: #{query.q}" if Barometer::debug?
|
59
|
-
return nil unless query
|
60
|
-
raise ArgumentError unless _is_a_query?(query)
|
61
|
-
self.get(
|
62
|
-
"http://weather.yahooapis.com/forecastrss",
|
63
|
-
:query => { :w => query.q },
|
64
|
-
:format => :xml,
|
65
|
-
:timeout => Barometer.timeout
|
66
|
-
)['rss']['channel']["location"]
|
67
|
-
end
|
68
|
-
|
69
|
-
# parses a Nokogori doc object
|
70
|
-
#
|
71
|
-
def self.parse_woe_id(doc)
|
72
|
-
doc.search('woeid').first.content
|
73
|
-
end
|
74
|
-
|
75
|
-
private
|
76
|
-
|
77
|
-
# convert coordinates to a microformat version of coordinates
|
78
|
-
# so that Placemaker uses them correctly
|
79
|
-
#
|
80
|
-
def self._adjust_query(query)
|
81
|
-
output = query.q
|
82
|
-
if query.format == :coordinates
|
83
|
-
microformat = "<html><body><div class=\"geo\"><span class=\"latitude\">%s</span><span class=\"longitude\">%s</span></div></body></html>"
|
84
|
-
output = sprintf(microformat, query.latitude, query.longitude)
|
85
|
-
end
|
86
|
-
puts "placemaker adjusted query: #{output}" if Barometer::debug?
|
87
|
-
output
|
88
|
-
end
|
89
|
-
|
90
|
-
def self._has_geocode_key?
|
91
|
-
!Barometer.yahoo_placemaker_app_id.nil?
|
92
|
-
end
|
93
|
-
|
94
|
-
end
|
95
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
module Barometer
|
2
|
-
#
|
3
|
-
# Web Service: Timezone
|
4
|
-
#
|
5
|
-
# uses geonames.org to obtain the full timezone for given coordinates
|
6
|
-
#
|
7
|
-
class WebService::Timezone < WebService
|
8
|
-
|
9
|
-
# get the full timezone for given coordinates
|
10
|
-
#
|
11
|
-
def self.fetch(latitude, longitude)
|
12
|
-
puts "timezone: #{latitude}, #{longitude}"
|
13
|
-
return nil unless latitude && longitude
|
14
|
-
_fetch_via_wunderground(latitude, longitude)
|
15
|
-
end
|
16
|
-
|
17
|
-
def self._fetch_via_geonames(latitude, longitude)
|
18
|
-
response = self.get(
|
19
|
-
"http://ws.geonames.org/timezone",
|
20
|
-
:query => { :lat => latitude, :lng => longitude },
|
21
|
-
:format => :xml,
|
22
|
-
:timeout => Barometer.timeout
|
23
|
-
)['geonames']['timezone']
|
24
|
-
response ? Data::Zone.new(response['timezoneId']) : nil
|
25
|
-
end
|
26
|
-
|
27
|
-
def self._fetch_via_wunderground(latitude, longitude)
|
28
|
-
response = self.get(
|
29
|
-
"http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml",
|
30
|
-
:query => {:query => "#{latitude},#{longitude}"},
|
31
|
-
:format => :xml,
|
32
|
-
:timeout => Barometer.timeout
|
33
|
-
)['forecast']['simpleforecast']['forecastday'].first
|
34
|
-
response ? Data::Zone.new(response['date']['tz_long']) : nil
|
35
|
-
end
|
36
|
-
|
37
|
-
end
|
38
|
-
end
|
@@ -1,50 +0,0 @@
|
|
1
|
-
module Barometer
|
2
|
-
#
|
3
|
-
# Web Service: WeatherID
|
4
|
-
#
|
5
|
-
# uses Weather.com search to obtain a weather id
|
6
|
-
#
|
7
|
-
class WebService::WeatherID < WebService
|
8
|
-
|
9
|
-
# get the weather_id for a given query
|
10
|
-
#
|
11
|
-
def self.fetch(query)
|
12
|
-
puts "fetch weather_id: #{query.q}" if Barometer::debug?
|
13
|
-
return nil unless query
|
14
|
-
raise ArgumentError unless _is_a_query?(query)
|
15
|
-
|
16
|
-
self.get(
|
17
|
-
"http://xoap.weather.com/search/search",
|
18
|
-
:query => { :where => _adjust_query(query.q) }, :format => :plain,
|
19
|
-
:timeout => Barometer.timeout
|
20
|
-
)
|
21
|
-
end
|
22
|
-
|
23
|
-
# get the location_date (geocode) for a given weather_id
|
24
|
-
#
|
25
|
-
def self.reverse(query)
|
26
|
-
puts "reverse weather_id: #{query.q}" if Barometer::debug?
|
27
|
-
return nil unless query
|
28
|
-
raise ArgumentError unless _is_a_query?(query)
|
29
|
-
self.get(
|
30
|
-
"http://weather.yahooapis.com/forecastrss",
|
31
|
-
:query => { :p => query.q },
|
32
|
-
:format => :xml,
|
33
|
-
:timeout => Barometer.timeout
|
34
|
-
)['rss']['channel']["location"]
|
35
|
-
end
|
36
|
-
|
37
|
-
# filter out words that weather.com has trouble geo-locating
|
38
|
-
# mostly these are icao related
|
39
|
-
#
|
40
|
-
def self._adjust_query(query)
|
41
|
-
output = query.dup
|
42
|
-
words_to_remove = %w(international airport municipal)
|
43
|
-
words_to_remove.each do |word|
|
44
|
-
output.gsub!(/#{word}/i, "")
|
45
|
-
end
|
46
|
-
output
|
47
|
-
end
|
48
|
-
|
49
|
-
end
|
50
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
require 'httparty'
|
3
|
-
|
4
|
-
module Barometer
|
5
|
-
#
|
6
|
-
# Web Service Class
|
7
|
-
#
|
8
|
-
# This is a base class for creating web service api-consuming
|
9
|
-
# drivers. Each driver inherits from this class.
|
10
|
-
#
|
11
|
-
# Basically, all a service is required to do is take a query
|
12
|
-
# (ie "Paris") and return it corresponding data class
|
13
|
-
#
|
14
|
-
class WebService
|
15
|
-
# all web_service drivers will use the HTTParty gem
|
16
|
-
include HTTParty
|
17
|
-
|
18
|
-
# STUB: define this method to actually retireve the data
|
19
|
-
def self.fetch(query=nil); raise NotImplementedError; end
|
20
|
-
|
21
|
-
private
|
22
|
-
|
23
|
-
def self._is_a_query?(object=nil)
|
24
|
-
return false unless object
|
25
|
-
object.is_a?(Barometer::Query)
|
26
|
-
end
|
27
|
-
|
28
|
-
end
|
29
|
-
end
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=Calgary,AB®ion=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:49 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:49 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:49 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Calgary\",\n \"short_name\" : \"Calgary\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Division No. 6\",\n \"short_name\" : \"Division No. 6\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Alberta\",\n \"short_name\" : \"AB\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"Canada\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Calgary, AB, Canada\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 51.183830,\n \"lng\" : -113.9056380\n },\n \"southwest\" : {\n \"lat\" : 50.84240399999999,\n \"lng\" : -114.271360\n }\n },\n \"location\" : {\n \"lat\" : 51.04532460,\n \"lng\" : -114.05810120\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 51.183830,\n \"lng\" : -113.9056380\n },\n \"southwest\" : {\n \"lat\" : 50.84240399999999,\n \"lng\" : -114.271360\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/WXCurrentObXML/index.xml?query=51.0453246,-114.0581012","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:50 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:42:50 GMT"],"X-Creationtime":["0.036"]},"body":{"string":"\t<current_observation>\n\t\t<credit>Weather Underground NOAA Weather Station</credit>\n\t\t<credit_URL>http://wunderground.com/</credit_URL>\n<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t\t<image>\n\t\t<url>http://icons-ak.wxug.com/graphics/wu2/logo_130x80.png</url>\n\t\t<title>Weather Underground</title>\n\t\t<link>http://wunderground.com/</link>\n\t\t</image>\n <display_location>\n <full>Calgary, Alberta</full>\n <city>Calgary</city>\n <state>AB</state>\n <state_name>Alberta</state_name>\n <country>CA</country>\n <country_iso3166>CA</country_iso3166>\n <zip>00000</zip>\n <latitude>51.045325</latitude>\n <longitude>-114.058101</longitude>\n <elevation>1047.00000000 ft</elevation>\n </display_location>\n\t\t<observation_location>\n\t\t<full>Calgary, </full>\n\t\t<city>Calgary</city>\n\t\t<state></state>\n\t\t<country>CA</country>\n\t\t<country_iso3166>CA</country_iso3166>\n\t\t<latitude>51.11999893</latitude>\n\t\t<longitude>-114.01999664</longitude>\n\t\t<elevation>3556 ft</elevation>\n\t\t</observation_location>\n\t\t<station_id>CYYC</station_id>\n\t\t<observation_time>Last Updated on February 9, 11:00 AM MST</observation_time>\n\t\t<observation_time_rfc822>Sat, 09 Feb 2013 18:00:00 GMT</observation_time_rfc822>\n\t\t<observation_epoch>1360432800</observation_epoch>\n\t\t<local_time>February 9, 11:42 AM MST</local_time>\n\t\t<local_time_rfc822>Sat, 09 Feb 2013 18:42:50 GMT</local_time_rfc822>\n\t\t<local_epoch>1360435370</local_epoch>\n\t\t<weather>Mostly Cloudy</weather>\n\t\t<temperature_string>36 F (2 C)</temperature_string>\n\t\t<temp_f>36</temp_f>\n\t\t<temp_c>2</temp_c>\n\t\t<relative_humidity>70%</relative_humidity>\n\t\t<wind_string>From the NW at 18 MPH Gusting to 26 MPH</wind_string>\n\t\t<wind_dir>NW</wind_dir>\n\t\t<wind_degrees>310</wind_degrees>\n\t\t<wind_mph>18</wind_mph>\n\t\t<wind_gust_mph>26</wind_gust_mph>\n\t\t<pressure_string>29.98 in (1015 mb)</pressure_string>\r\n\t\t<pressure_mb>1015</pressure_mb>\r\n\t\t<pressure_in>29.98</pressure_in>\r\n\t\t<dewpoint_string>27 F (-3 C)</dewpoint_string>\r\n\t\t<dewpoint_f>27</dewpoint_f>\r\n\t\t<dewpoint_c>-3</dewpoint_c>\r\n\t\t\r\n\t\t<heat_index_string>NA</heat_index_string>\r\n\t\t<heat_index_f>NA</heat_index_f>\r\n\t\t<heat_index_c>NA</heat_index_c>\r\n\t\t\r\n\t\t\r\n\t\t<windchill_string>25 F (-4 C)</windchill_string>\r\n\t\t<windchill_f>25</windchill_f>\r\n\t\t<windchill_c>-4</windchill_c>\r\n\t\t\r\n\t\t<visibility_mi>20.0</visibility_mi>\r\n\t\t<visibility_km>32.2</visibility_km>\r\n\t\t<icons>\r\n\t\t\t<icon_set name=\"Default\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Smiley\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Generic\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Old School\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Cartoon\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Mobile\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Simple\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Contemporary\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Helen\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Incredible\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t</icons>\r\n\t\t<icon_url_base>http://icons-ak.wxug.com/graphics/conds/</icon_url_base>\r\n\t\t<icon_url_name>.GIF</icon_url_name>\r\n\t\t<icon>mostlycloudy</icon>\r\n\t\t<forecast_url>http://www.wunderground.com/global/stations/71877.html</forecast_url>\r\n\t\t<history_url>http://www.wunderground.com/history/airport/CYYC/2013/2/9/DailyHistory.html</history_url>\r\n\t\t<ob_url>http://www.wunderground.com/cgi-bin/findweather/getForecast?query=51.11999893,-114.01999664</ob_url>\r\n\t</current_observation>\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml?query=51.0453246,-114.0581012","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:51 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:42:50 GMT"],"X-Creationtime":["0.078"]},"body":{"string":"<?xml version=\"1.0\" ?>\n<forecast>\n\t\t<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t<txt_forecast>\n <date>5:00 PM MST</date>\n <number></number>\n\t\t<forecastday>\n\t\t<period>0</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 8, 2013</title>\n\t\t<fcttext>Clear. High 6&deg;C (42&deg;F). Winds 0 kph North</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>1</period>\n\t\t<icon>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 9, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 4&deg;C (39&deg;F). Winds 10 kph WNW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>2</period>\n\t\t<icon>chancesnow</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 10, 2013</title>\n\t\t<fcttext>Chance of Snow. High 3&deg;C (37&deg;F). Winds 18 kph NW</fcttext>\n\t\t<pop>40</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>3</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 11, 2013</title>\n\t\t<fcttext>Clear. High 3&deg;C (37&deg;F). Winds 7 kph SSE</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>4</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 12, 2013</title>\n\t\t<fcttext>Clear. High 7&deg;C (44&deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>5</period>\n\t\t<icon>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 13, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 7&deg;C (44&deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t</txt_forecast>\n<simpleforecast>\n <forecastday>\n <period>1</period>\n <date>\n <epoch>1360476000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 09, 2013</pretty>\n <day>9</day>\n <month>2</month>\n <year>2013</year>\n <yday>39</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Saturday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>18</fahrenheit>\r\n <celsius>-8</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>60</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>2</period>\r\n <date>\n <epoch>1360562400</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 10, 2013</pretty>\n <day>10</day>\n <month>2</month>\n <year>2013</year>\n <yday>40</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Sunday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>36</fahrenheit>\r\n <celsius>2</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>19</fahrenheit>\r\n <celsius>-7</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>3</period>\r\n <date>\n <epoch>1360648800</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 11, 2013</pretty>\n <day>11</day>\n <month>2</month>\n <year>2013</year>\n <yday>41</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Monday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>43</fahrenheit>\r\n <celsius>6</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>4</period>\r\n <date>\n <epoch>1360735200</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 12, 2013</pretty>\n <day>12</day>\n <month>2</month>\n <year>2013</year>\n <yday>42</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Tuesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>45</fahrenheit>\r\n <celsius>7</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>5</period>\r\n <date>\n <epoch>1360821600</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 13, 2013</pretty>\n <day>13</day>\n <month>2</month>\n <year>2013</year>\n <yday>43</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Wednesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>21</fahrenheit>\r\n <celsius>-6</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>40</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>6</period>\r\n <date>\n <epoch>1360908000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 14, 2013</pretty>\n <day>14</day>\n <month>2</month>\n <year>2013</year>\n <yday>44</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Thursday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>32</fahrenheit>\r\n <celsius>0</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>16</fahrenheit>\r\n <celsius>-9</celsius>\r\n </low>\r\n <conditions>Clear</conditions>\r\n <icon>clear</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/clear.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</simpleforecast>\r\n<moon_phase>\r\n <percentIlluminated>0</percentIlluminated>\r\n <ageOfMoon>29</ageOfMoon>\r\n\t\t<current_time>\r\n\t\t\t<hour>11</hour>\r\n\t\t\t<minute>42</minute>\r\n\t\t</current_time>\r\n <sunset>\r\n <hour>17</hour>\r\n <minute>42</minute>\r\n </sunset>\r\n <sunrise>\r\n <hour>7</hour>\r\n <minute>59</minute>\r\n </sunrise>\r\n</moon_phase>\r\n</forecast>\r\n\r\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
|
data/spec/cassettes/Query.json
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210®ion=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:58 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:58 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:58 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=Beverly%20Hills,%20CA,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:58 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2269562700"],"Content-Length":["371"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:55 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x17"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USCA0090\" type=\"1\">Beverly Hills, CA</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=T5B%204M9®ion=CA&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:58 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:58 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:58 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"T5B 4M9\",\n \"short_name\" : \"T5B 4M9\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Montrose\",\n \"short_name\" : \"Montrose\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Edmonton\",\n \"short_name\" : \"Edmonton\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Division No. 11\",\n \"short_name\" : \"Division No. 11\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Alberta\",\n \"short_name\" : \"AB\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"Canada\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Edmonton, AB T5B 4M9, Canada\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 53.57536860,\n \"lng\" : -113.45311190\n },\n \"southwest\" : {\n \"lat\" : 53.57041430,\n \"lng\" : -113.45893980\n }\n },\n \"location\" : {\n \"lat\" : 53.57217190,\n \"lng\" : -113.45518350\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 53.57536860,\n \"lng\" : -113.45311190\n },\n \"southwest\" : {\n \"lat\" : 53.57041430,\n \"lng\" : -113.45893980\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO®ion=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:58 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:58 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=San%20Francisco,%20CA,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2992162804"],"Content-Length":["432"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:56 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x18"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USCA0987\" type=\"1\">San Francisco, CA</loc>\r\n <loc id=\"USCA1085\" type=\"1\">South San Francisco, CA</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20NY®ion=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:59 GMT"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:59 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=New%20York,%20NY","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"Age":["246"],"Cache-Control":["max-age=300"],"X-Varnish":["2269563897 2269103323"],"Content-Length":["848"],"Server":["Apache"],"X-Cache-Hits":["60"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:56 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x21"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\r\n <loc id=\"USNY0011\" type=\"1\">Albany, NY</loc>\r\n <loc id=\"USNY0181\" type=\"1\">Buffalo, NY</loc>\r\n <loc id=\"USNY1232\" type=\"1\">Rochester, NY</loc>\r\n <loc id=\"USNY1434\" type=\"1\">Syracuse, NY</loc>\r\n <loc id=\"USNY1010\" type=\"1\">Niagara Falls, NY</loc>\r\n <loc id=\"USNY1630\" type=\"1\">York, NY</loc>\r\n <loc id=\"USNY0997\" type=\"1\">New York Mills, NY</loc>\r\n <loc id=\"USNY0998\" type=\"1\">New York/Central Park, NY</loc>\r\n <loc id=\"USNY0999\" type=\"1\">New York/JFK Intl Arpt, NY</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=40.756054,-73.986951®ion=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:59 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:59 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"601-699\",\n \"short_name\" : \"601-699\",\n \"types\" : [ \"street_number\" ]\n },\n {\n \"long_name\" : \"7th Avenue\",\n \"short_name\" : \"7th Ave\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"601-699 7th Avenue, New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.75669690,\n \"lng\" : -73.98648360\n },\n \"southwest\" : {\n \"lat\" : 40.7560340,\n \"lng\" : -73.98694510\n }\n },\n \"location\" : {\n \"lat\" : 40.75604130000001,\n \"lng\" : -73.98691920\n },\n \"location_type\" : \"RANGE_INTERPOLATED\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75771443029150,\n \"lng\" : -73.98536536970850\n },\n \"southwest\" : {\n \"lat\" : 40.75501646970850,\n \"lng\" : -73.98806333029151\n }\n }\n },\n \"types\" : [ \"street_address\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - 7 Av\",\n \"short_name\" : \"W 42 St - 7 Av\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - 7 Av, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7563130,\n \"lng\" : -73.98739599999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75766198029149,\n \"lng\" : -73.98604701970848\n },\n \"southwest\" : {\n \"lat\" : 40.75496401970850,\n \"lng\" : -73.98874498029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Times Sq - 42 St\",\n \"short_name\" : \"Times Sq - 42 St\",\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"Times Sq - 42 St, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7559830,\n \"lng\" : -73.98622899999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75733198029150,\n \"lng\" : -73.98488001970848\n },\n \"southwest\" : {\n \"lat\" : 40.75463401970850,\n \"lng\" : -73.98757798029149\n }\n }\n },\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - Broadway\",\n \"short_name\" : \"W 42 St - Broadway\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - Broadway, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7556760,\n \"lng\" : -73.9863130\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75702498029150,\n \"lng\" : -73.98496401970849\n },\n \"southwest\" : {\n \"lat\" : 40.75432701970851,\n \"lng\" : -73.98766198029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Theater District - Times Square, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n },\n \"location\" : {\n \"lat\" : 40.7590110,\n \"lng\" : -73.98447220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.72362490,\n \"lng\" : -74.0047860\n }\n },\n \"location\" : {\n \"lat\" : 40.76026190,\n \"lng\" : -73.99328720\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.7534810,\n \"lng\" : -74.0046830\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Midtown\",\n \"short_name\" : \"Midtown\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Midtown, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n },\n \"location\" : {\n \"lat\" : 40.75099150,\n \"lng\" : -73.98887970\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n },\n \"location\" : {\n \"lat\" : 40.78306030,\n \"lng\" : -73.97124880\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Manhattan, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.8822140,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67954790,\n \"lng\" : -74.0472850\n }\n },\n \"location\" : {\n \"lat\" : 40.79027780,\n \"lng\" : -73.95972220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.8200450,\n \"lng\" : -73.90331300000001\n },\n \"southwest\" : {\n \"lat\" : 40.6980780,\n \"lng\" : -74.03514899999999\n }\n }\n },\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 45.0158650,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n },\n \"location\" : {\n \"lat\" : 43.29942850,\n \"lng\" : -74.21793260000001\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 45.01261130,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n }\n },\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"United States\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 71.3898880,\n \"lng\" : -66.94976079999999\n },\n \"southwest\" : {\n \"lat\" : 18.91106420,\n \"lng\" : 172.45469660\n }\n },\n \"location\" : {\n \"lat\" : 37.090240,\n \"lng\" : -95.7128910\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.380,\n \"lng\" : -66.940\n },\n \"southwest\" : {\n \"lat\" : 25.820,\n \"lng\" : -124.390\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=Manhattan,%20NY,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"Age":["4"],"Cache-Control":["max-age=300"],"X-Varnish":["2269564430 2269556268"],"Content-Length":["366"],"Server":["Apache"],"X-Cache-Hits":["1"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:56 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x27"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210®ion=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:51 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:51 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:51 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://weather.yahooapis.com/forecastrss?p=USGA0028","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:52 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["public"],"Transfer-Encoding":["chunked"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Server":["YTS/1.19.11"],"Content-Type":["text/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Vary":["Accept-Encoding"],"Expires":["Sat, 09 Feb 2013 19:12:52 GMT"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Atlanta, GA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<description>Yahoo! Weather for Atlanta, GA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 12:50 pm EST</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Atlanta\" region=\"GA\" country=\"US\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"56\" direction=\"90\" speed=\"6\" />\n<yweather:atmosphere humidity=\"33\" visibility=\"10\" pressure=\"30.27\" rising=\"2\" />\n<yweather:astronomy sunrise=\"7:26 am\" sunset=\"6:15 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Atlanta, GA at 12:50 pm EST</title>\n<geo:lat>33.75</geo:lat>\n<geo:long>-84.39</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<pubDate>Sat, 09 Feb 2013 12:50 pm EST</pubDate>\n<yweather:condition text=\"Partly Cloudy\" code=\"30\" temp=\"56\" date=\"Sat, 09 Feb 2013 12:50 pm EST\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/30.gif\"/><br />\n<b>Current Conditions:</b><br />\nPartly Cloudy, 56 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Sunny. High: 60 Low: 40<br />\nSun - PM Showers. High: 60 Low: 55<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"40\" high=\"60\" text=\"Sunny\" code=\"32\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"55\" high=\"60\" text=\"PM Showers\" code=\"39\" />\n<guid isPermaLink=\"false\">USGA0028_2013_02_10_7_00_EST</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api22.weather.bf1.yahoo.com Sat Feb 9 18:42:52 PST 2013 -->\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=Atlanta,%20GA,%20US®ion=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:52 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:52 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Atlanta\",\n \"short_name\" : \"Atlanta\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Fulton\",\n \"short_name\" : \"Fulton\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Georgia\",\n \"short_name\" : \"GA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Atlanta, GA, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 33.88761790,\n \"lng\" : -84.2893890\n },\n \"southwest\" : {\n \"lat\" : 33.64780790,\n \"lng\" : -84.55181890\n }\n },\n \"location\" : {\n \"lat\" : 33.74899540,\n \"lng\" : -84.38798240\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 33.88761790,\n \"lng\" : -84.2893890\n },\n \"southwest\" : {\n \"lat\" : 33.64780790,\n \"lng\" : -84.55181890\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20NY®ion=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:52 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=T5B%204M9®ion=CA&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"T5B 4M9\",\n \"short_name\" : \"T5B 4M9\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Montrose\",\n \"short_name\" : \"Montrose\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Edmonton\",\n \"short_name\" : \"Edmonton\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Division No. 11\",\n \"short_name\" : \"Division No. 11\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Alberta\",\n \"short_name\" : \"AB\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"Canada\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Edmonton, AB T5B 4M9, Canada\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 53.57536860,\n \"lng\" : -113.45311190\n },\n \"southwest\" : {\n \"lat\" : 53.57041430,\n \"lng\" : -113.45893980\n }\n },\n \"location\" : {\n \"lat\" : 53.57217190,\n \"lng\" : -113.45518350\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 53.57536860,\n \"lng\" : -113.45311190\n },\n \"southwest\" : {\n \"lat\" : 53.57041430,\n \"lng\" : -113.45893980\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO®ion=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=40.756054,-73.986951®ion=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"601-699\",\n \"short_name\" : \"601-699\",\n \"types\" : [ \"street_number\" ]\n },\n {\n \"long_name\" : \"7th Avenue\",\n \"short_name\" : \"7th Ave\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"601-699 7th Avenue, New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.75669690,\n \"lng\" : -73.98648360\n },\n \"southwest\" : {\n \"lat\" : 40.7560340,\n \"lng\" : -73.98694510\n }\n },\n \"location\" : {\n \"lat\" : 40.75604130000001,\n \"lng\" : -73.98691920\n },\n \"location_type\" : \"RANGE_INTERPOLATED\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75771443029150,\n \"lng\" : -73.98536536970850\n },\n \"southwest\" : {\n \"lat\" : 40.75501646970850,\n \"lng\" : -73.98806333029151\n }\n }\n },\n \"types\" : [ \"street_address\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - 7 Av\",\n \"short_name\" : \"W 42 St - 7 Av\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - 7 Av, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7563130,\n \"lng\" : -73.98739599999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75766198029149,\n \"lng\" : -73.98604701970848\n },\n \"southwest\" : {\n \"lat\" : 40.75496401970850,\n \"lng\" : -73.98874498029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Times Sq - 42 St\",\n \"short_name\" : \"Times Sq - 42 St\",\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"Times Sq - 42 St, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7559830,\n \"lng\" : -73.98622899999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75733198029150,\n \"lng\" : -73.98488001970848\n },\n \"southwest\" : {\n \"lat\" : 40.75463401970850,\n \"lng\" : -73.98757798029149\n }\n }\n },\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - Broadway\",\n \"short_name\" : \"W 42 St - Broadway\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - Broadway, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7556760,\n \"lng\" : -73.9863130\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75702498029150,\n \"lng\" : -73.98496401970849\n },\n \"southwest\" : {\n \"lat\" : 40.75432701970851,\n \"lng\" : -73.98766198029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Theater District - Times Square, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n },\n \"location\" : {\n \"lat\" : 40.7590110,\n \"lng\" : -73.98447220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.72362490,\n \"lng\" : -74.0047860\n }\n },\n \"location\" : {\n \"lat\" : 40.76026190,\n \"lng\" : -73.99328720\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.7534810,\n \"lng\" : -74.0046830\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Midtown\",\n \"short_name\" : \"Midtown\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Midtown, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n },\n \"location\" : {\n \"lat\" : 40.75099150,\n \"lng\" : -73.98887970\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n },\n \"location\" : {\n \"lat\" : 40.78306030,\n \"lng\" : -73.97124880\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Manhattan, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.8822140,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67954790,\n \"lng\" : -74.0472850\n }\n },\n \"location\" : {\n \"lat\" : 40.79027780,\n \"lng\" : -73.95972220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.8200450,\n \"lng\" : -73.90331300000001\n },\n \"southwest\" : {\n \"lat\" : 40.6980780,\n \"lng\" : -74.03514899999999\n }\n }\n },\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 45.0158650,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n },\n \"location\" : {\n \"lat\" : 43.29942850,\n \"lng\" : -74.21793260000001\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 45.01261130,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n }\n },\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"United States\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 71.3898880,\n \"lng\" : -66.94976079999999\n },\n \"southwest\" : {\n \"lat\" : 18.91106420,\n \"lng\" : 172.45469660\n }\n },\n \"location\" : {\n \"lat\" : 37.090240,\n \"lng\" : -95.7128910\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.380,\n \"lng\" : -66.940\n },\n \"southwest\" : {\n \"lat\" : 25.820,\n \"lng\" : -124.390\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210®ion=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://weather.yahooapis.com/forecastrss?p=USGA0028","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["public"],"Transfer-Encoding":["chunked"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Server":["YTS/1.19.11"],"Content-Type":["text/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Vary":["Accept-Encoding"],"Expires":["Sat, 09 Feb 2013 19:12:53 GMT"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Atlanta, GA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<description>Yahoo! Weather for Atlanta, GA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 12:50 pm EST</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Atlanta\" region=\"GA\" country=\"US\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"56\" direction=\"90\" speed=\"6\" />\n<yweather:atmosphere humidity=\"33\" visibility=\"10\" pressure=\"30.27\" rising=\"2\" />\n<yweather:astronomy sunrise=\"7:26 am\" sunset=\"6:15 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Atlanta, GA at 12:50 pm EST</title>\n<geo:lat>33.75</geo:lat>\n<geo:long>-84.39</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<pubDate>Sat, 09 Feb 2013 12:50 pm EST</pubDate>\n<yweather:condition text=\"Partly Cloudy\" code=\"30\" temp=\"56\" date=\"Sat, 09 Feb 2013 12:50 pm EST\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/30.gif\"/><br />\n<b>Current Conditions:</b><br />\nPartly Cloudy, 56 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Sunny. High: 60 Low: 40<br />\nSun - PM Showers. High: 60 Low: 55<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"40\" high=\"60\" text=\"Sunny\" code=\"32\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"55\" high=\"60\" text=\"PM Showers\" code=\"39\" />\n<guid isPermaLink=\"false\">USGA0028_2013_02_10_7_00_EST</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api30.weather.bf1.yahoo.com Sat Feb 9 18:42:53 PST 2013 -->\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=40.756054,-73.986951®ion=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"601-699\",\n \"short_name\" : \"601-699\",\n \"types\" : [ \"street_number\" ]\n },\n {\n \"long_name\" : \"7th Avenue\",\n \"short_name\" : \"7th Ave\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"601-699 7th Avenue, New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.75669690,\n \"lng\" : -73.98648360\n },\n \"southwest\" : {\n \"lat\" : 40.7560340,\n \"lng\" : -73.98694510\n }\n },\n \"location\" : {\n \"lat\" : 40.75604130000001,\n \"lng\" : -73.98691920\n },\n \"location_type\" : \"RANGE_INTERPOLATED\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75771443029150,\n \"lng\" : -73.98536536970850\n },\n \"southwest\" : {\n \"lat\" : 40.75501646970850,\n \"lng\" : -73.98806333029151\n }\n }\n },\n \"types\" : [ \"street_address\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - 7 Av\",\n \"short_name\" : \"W 42 St - 7 Av\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - 7 Av, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7563130,\n \"lng\" : -73.98739599999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75766198029149,\n \"lng\" : -73.98604701970848\n },\n \"southwest\" : {\n \"lat\" : 40.75496401970850,\n \"lng\" : -73.98874498029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Times Sq - 42 St\",\n \"short_name\" : \"Times Sq - 42 St\",\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"Times Sq - 42 St, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7559830,\n \"lng\" : -73.98622899999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75733198029150,\n \"lng\" : -73.98488001970848\n },\n \"southwest\" : {\n \"lat\" : 40.75463401970850,\n \"lng\" : -73.98757798029149\n }\n }\n },\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - Broadway\",\n \"short_name\" : \"W 42 St - Broadway\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - Broadway, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7556760,\n \"lng\" : -73.9863130\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75702498029150,\n \"lng\" : -73.98496401970849\n },\n \"southwest\" : {\n \"lat\" : 40.75432701970851,\n \"lng\" : -73.98766198029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Theater District - Times Square, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n },\n \"location\" : {\n \"lat\" : 40.7590110,\n \"lng\" : -73.98447220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.72362490,\n \"lng\" : -74.0047860\n }\n },\n \"location\" : {\n \"lat\" : 40.76026190,\n \"lng\" : -73.99328720\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.7534810,\n \"lng\" : -74.0046830\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Midtown\",\n \"short_name\" : \"Midtown\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Midtown, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n },\n \"location\" : {\n \"lat\" : 40.75099150,\n \"lng\" : -73.98887970\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n },\n \"location\" : {\n \"lat\" : 40.78306030,\n \"lng\" : -73.97124880\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Manhattan, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.8822140,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67954790,\n \"lng\" : -74.0472850\n }\n },\n \"location\" : {\n \"lat\" : 40.79027780,\n \"lng\" : -73.95972220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.8200450,\n \"lng\" : -73.90331300000001\n },\n \"southwest\" : {\n \"lat\" : 40.6980780,\n \"lng\" : -74.03514899999999\n }\n }\n },\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 45.0158650,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n },\n \"location\" : {\n \"lat\" : 43.29942850,\n \"lng\" : -74.21793260000001\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 45.01261130,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n }\n },\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"United States\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 71.3898880,\n \"lng\" : -66.94976079999999\n },\n \"southwest\" : {\n \"lat\" : 18.91106420,\n \"lng\" : 172.45469660\n }\n },\n \"location\" : {\n \"lat\" : 37.090240,\n \"lng\" : -95.7128910\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.380,\n \"lng\" : -66.940\n },\n \"southwest\" : {\n \"lat\" : 25.820,\n \"lng\" : -124.390\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO®ion=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:54 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"uri":"http://weather.yahooapis.com/forecastrss?p=USGA0028","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:54 GMT","response":{"http_version":null,"headers":{"Age":["1"],"Cache-Control":["public"],"Content-Length":["2312"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Server":["YTS/1.19.11"],"Content-Type":["text/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Vary":["Accept-Encoding"],"Expires":["Sat, 09 Feb 2013 19:12:53 GMT"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Atlanta, GA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<description>Yahoo! Weather for Atlanta, GA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 12:50 pm EST</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Atlanta\" region=\"GA\" country=\"US\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"56\" direction=\"90\" speed=\"6\" />\n<yweather:atmosphere humidity=\"33\" visibility=\"10\" pressure=\"30.27\" rising=\"2\" />\n<yweather:astronomy sunrise=\"7:26 am\" sunset=\"6:15 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Atlanta, GA at 12:50 pm EST</title>\n<geo:lat>33.75</geo:lat>\n<geo:long>-84.39</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<pubDate>Sat, 09 Feb 2013 12:50 pm EST</pubDate>\n<yweather:condition text=\"Partly Cloudy\" code=\"30\" temp=\"56\" date=\"Sat, 09 Feb 2013 12:50 pm EST\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/30.gif\"/><br />\n<b>Current Conditions:</b><br />\nPartly Cloudy, 56 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Sunny. High: 60 Low: 40<br />\nSun - PM Showers. High: 60 Low: 55<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"40\" high=\"60\" text=\"Sunny\" code=\"32\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"55\" high=\"60\" text=\"PM Showers\" code=\"39\" />\n<guid isPermaLink=\"false\">USGA0028_2013_02_10_7_00_EST</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api30.weather.bf1.yahoo.com Sat Feb 9 18:42:53 PST 2013 -->\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210®ion=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:54 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:54 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:54 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=Beverly%20Hills,%20CA,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2992155056"],"Content-Length":["371"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:51 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x02"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USCA0090\" type=\"1\">Beverly Hills, CA</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=40.756054,-73.986951®ion=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:55 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:55 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"601-699\",\n \"short_name\" : \"601-699\",\n \"types\" : [ \"street_number\" ]\n },\n {\n \"long_name\" : \"7th Avenue\",\n \"short_name\" : \"7th Ave\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"601-699 7th Avenue, New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.75669690,\n \"lng\" : -73.98648360\n },\n \"southwest\" : {\n \"lat\" : 40.7560340,\n \"lng\" : -73.98694510\n }\n },\n \"location\" : {\n \"lat\" : 40.75604130000001,\n \"lng\" : -73.98691920\n },\n \"location_type\" : \"RANGE_INTERPOLATED\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75771443029150,\n \"lng\" : -73.98536536970850\n },\n \"southwest\" : {\n \"lat\" : 40.75501646970850,\n \"lng\" : -73.98806333029151\n }\n }\n },\n \"types\" : [ \"street_address\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - 7 Av\",\n \"short_name\" : \"W 42 St - 7 Av\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - 7 Av, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7563130,\n \"lng\" : -73.98739599999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75766198029149,\n \"lng\" : -73.98604701970848\n },\n \"southwest\" : {\n \"lat\" : 40.75496401970850,\n \"lng\" : -73.98874498029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Times Sq - 42 St\",\n \"short_name\" : \"Times Sq - 42 St\",\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"Times Sq - 42 St, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7559830,\n \"lng\" : -73.98622899999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75733198029150,\n \"lng\" : -73.98488001970848\n },\n \"southwest\" : {\n \"lat\" : 40.75463401970850,\n \"lng\" : -73.98757798029149\n }\n }\n },\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - Broadway\",\n \"short_name\" : \"W 42 St - Broadway\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - Broadway, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7556760,\n \"lng\" : -73.9863130\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75702498029150,\n \"lng\" : -73.98496401970849\n },\n \"southwest\" : {\n \"lat\" : 40.75432701970851,\n \"lng\" : -73.98766198029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Theater District - Times Square, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n },\n \"location\" : {\n \"lat\" : 40.7590110,\n \"lng\" : -73.98447220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.72362490,\n \"lng\" : -74.0047860\n }\n },\n \"location\" : {\n \"lat\" : 40.76026190,\n \"lng\" : -73.99328720\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.7534810,\n \"lng\" : -74.0046830\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Midtown\",\n \"short_name\" : \"Midtown\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Midtown, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n },\n \"location\" : {\n \"lat\" : 40.75099150,\n \"lng\" : -73.98887970\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n },\n \"location\" : {\n \"lat\" : 40.78306030,\n \"lng\" : -73.97124880\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Manhattan, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.8822140,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67954790,\n \"lng\" : -74.0472850\n }\n },\n \"location\" : {\n \"lat\" : 40.79027780,\n \"lng\" : -73.95972220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.8200450,\n \"lng\" : -73.90331300000001\n },\n \"southwest\" : {\n \"lat\" : 40.6980780,\n \"lng\" : -74.03514899999999\n }\n }\n },\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 45.0158650,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n },\n \"location\" : {\n \"lat\" : 43.29942850,\n \"lng\" : -74.21793260000001\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 45.01261130,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n }\n },\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"United States\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 71.3898880,\n \"lng\" : -66.94976079999999\n },\n \"southwest\" : {\n \"lat\" : 18.91106420,\n \"lng\" : 172.45469660\n }\n },\n \"location\" : {\n \"lat\" : 37.090240,\n \"lng\" : -95.7128910\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.380,\n \"lng\" : -66.940\n },\n \"southwest\" : {\n \"lat\" : 25.820,\n \"lng\" : -124.390\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=Manhattan,%20NY,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2269556268"],"Content-Length":["366"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x27"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=New%20York,%20NY","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"Age":["44"],"Cache-Control":["max-age=300"],"X-Varnish":["2992155889 2992073794"],"Content-Length":["848"],"Server":["Apache"],"X-Cache-Hits":["13"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x15"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\r\n <loc id=\"USNY0011\" type=\"1\">Albany, NY</loc>\r\n <loc id=\"USNY0181\" type=\"1\">Buffalo, NY</loc>\r\n <loc id=\"USNY1232\" type=\"1\">Rochester, NY</loc>\r\n <loc id=\"USNY1434\" type=\"1\">Syracuse, NY</loc>\r\n <loc id=\"USNY1010\" type=\"1\">Niagara Falls, NY</loc>\r\n <loc id=\"USNY1630\" type=\"1\">York, NY</loc>\r\n <loc id=\"USNY0997\" type=\"1\">New York Mills, NY</loc>\r\n <loc id=\"USNY0998\" type=\"1\">New York/Central Park, NY</loc>\r\n <loc id=\"USNY0999\" type=\"1\">New York/JFK Intl Arpt, NY</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO®ion=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:55 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:55 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=San%20Francisco,%20CA,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2269556818"],"Content-Length":["432"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x09"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USCA0987\" type=\"1\">San Francisco, CA</loc>\r\n <loc id=\"USCA1085\" type=\"1\">South San Francisco, CA</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"method":"get","uri":"http://weather.yahooapis.com/forecastrss?w=615702","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:42 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Cache-Control":["public"],"Expires":["Sat, 09 Feb 2013 23:01:42 GMT"],"Vary":["Accept-Encoding"],"Content-Type":["text/xml;charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Server":["YTS/1.19.11"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Paris, FR</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Paris__FR/*http://weather.yahoo.com/forecast/FRXX0076_f.html</link>\n<description>Yahoo! Weather for Paris, FR</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 10:29 pm CET</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Paris\" region=\"\" country=\"France\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"27\" direction=\"180\" speed=\"5\" />\n<yweather:atmosphere humidity=\"87\" visibility=\"6.21\" pressure=\"30.03\" rising=\"0\" />\n<yweather:astronomy sunrise=\"8:09 am\" sunset=\"6:00 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Paris, FR at 10:29 pm CET</title>\n<geo:lat>48.86</geo:lat>\n<geo:long>2.34</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Paris__FR/*http://weather.yahoo.com/forecast/FRXX0076_f.html</link>\n<pubDate>Sat, 09 Feb 2013 10:29 pm CET</pubDate>\n<yweather:condition text=\"Fair\" code=\"33\" temp=\"32\" date=\"Sat, 09 Feb 2013 10:29 pm CET\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/33.gif\"/><br />\n<b>Current Conditions:</b><br />\nFair, 32 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Partly Cloudy. High: 39 Low: 28<br />\nSun - Snow to Wintry Mix. High: 34 Low: 34<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Paris__FR/*http://weather.yahoo.com/forecast/FRXX0076_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"28\" high=\"39\" text=\"Partly Cloudy\" code=\"29\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"34\" high=\"34\" text=\"Snow to Wintry Mix\" code=\"7\" />\n<guid isPermaLink=\"false\">FRXX0076_2013_02_10_7_00_CET</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api14.weather.bf1.yahoo.com Sat Feb 9 22:31:42 PST 2013 -->\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:42 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=New+York%2C+NY&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws03.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r05.ycpi.ac4.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001427</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>12</documentLength>\n<document>\n<administrativeScope>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York, NY, US]]></name>\n<centroid>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York, NY, US]]></name>\n<centroid>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York, NY, US (Town)]]></name>\n<centroid>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</centroid>\n<southWest>\n<latitude>40.4766</latitude>\n<longitude>-74.2589</longitude>\n</southWest>\n<northEast>\n<latitude>40.9176</latitude>\n<longitude>-73.7004</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>2347591</woeId>\n<type>State</type>\n<name><![CDATA[New York]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</center>\n<southWest>\n<latitude>40.4766</latitude>\n<longitude>-74.2589</longitude>\n</southWest>\n<northEast>\n<latitude>40.9176</latitude>\n<longitude>-73.7004</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York, NY, US]]></name>\n<centroid>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>2459115</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>12</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[New York, NY]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:43 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210®ion=US&sensor=false","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"Expires":["Sun, 10 Feb 2013 22:31:43 GMT"],"Cache-Control":["public, max-age=86400"],"Vary":["Accept-Language"],"Access-Control-Allow-Origin":["*"],"Server":["mafe"],"X-Xss-Protection":["1; mode=block"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"US-ASCII","string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:43 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=Beverly+Hills%2C+CA%2C+United+States&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws02.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r08.ycpi.ac4.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001579</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>32</documentLength>\n<document>\n<administrativeScope>\n<woeId>2363796</woeId>\n<type>Town</type>\n<name><![CDATA[Beverly Hills, CA, US]]></name>\n<centroid>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>2363796</woeId>\n<type>Town</type>\n<name><![CDATA[Beverly Hills, CA, US]]></name>\n<centroid>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>2363796</woeId>\n<type>Town</type>\n<name><![CDATA[Beverly Hills, CA, US (Town)]]></name>\n<centroid>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</centroid>\n<southWest>\n<latitude>34.0541</latitude>\n<longitude>-118.427</longitude>\n</southWest>\n<northEast>\n<latitude>34.1125</latitude>\n<longitude>-118.372</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>12587688</woeId>\n<type>County</type>\n<name><![CDATA[Los Angeles]]></name>\n</ancestor>\n<ancestor>\n<woeId>2347563</woeId>\n<type>State</type>\n<name><![CDATA[California]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</center>\n<southWest>\n<latitude>34.0541</latitude>\n<longitude>-118.427</longitude>\n</southWest>\n<northEast>\n<latitude>34.1125</latitude>\n<longitude>-118.372</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>2363796</woeId>\n<type>Town</type>\n<name><![CDATA[Beverly Hills, CA, US]]></name>\n<centroid>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>2363796</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>32</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[Beverly Hills, CA, United States]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:43 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=T5B+4M9&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws14.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r11.ycpi.ac4.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001769</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>7</documentLength>\n<document>\n<administrativeScope>\n<woeId>8676</woeId>\n<type>Town</type>\n<name><![CDATA[Edmonton, Alberta, CA]]></name>\n<centroid>\n<latitude>53.5559</latitude>\n<longitude>-113.493</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>24354344</woeId>\n<type>Zip</type>\n<name><![CDATA[T5B 4M9, Edmonton, Alberta, CA]]></name>\n<centroid>\n<latitude>53.5705</latitude>\n<longitude>-113.458</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>24354344</woeId>\n<type>Zip</type>\n<name><![CDATA[T5B 4M9, Edmonton, Alberta, CA (Zip)]]></name>\n<centroid>\n<latitude>53.5705</latitude>\n<longitude>-113.458</longitude>\n</centroid>\n<southWest>\n<latitude>53.5695</latitude>\n<longitude>-113.46</longitude>\n</southWest>\n<northEast>\n<latitude>53.5715</latitude>\n<longitude>-113.456</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>8676</woeId>\n<type>Town</type>\n<name><![CDATA[Edmonton]]></name>\n</ancestor>\n<ancestor>\n<woeId>29375228</woeId>\n<type>County</type>\n<name><![CDATA[Alberta]]></name>\n</ancestor>\n<ancestor>\n<woeId>2344915</woeId>\n<type>Province/Territory</type>\n<name><![CDATA[Alberta]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424775</woeId>\n<type>Country</type>\n<name><![CDATA[Canada]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>53.5705</latitude>\n<longitude>-113.458</longitude>\n</center>\n<southWest>\n<latitude>53.5695</latitude>\n<longitude>-113.46</longitude>\n</southWest>\n<northEast>\n<latitude>53.5715</latitude>\n<longitude>-113.456</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>24354344</woeId>\n<type>Zip</type>\n<name><![CDATA[T5B 4M9, Edmonton, Alberta, CA]]></name>\n<centroid>\n<latitude>53.5705</latitude>\n<longitude>-113.458</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>7</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>24354344</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>7</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[T5B 4M9]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:43 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=%3Chtml%3E%3Cbody%3E%3Cdiv+class%3D%22geo%22%3E%3Cspan+class%3D%22latitude%22%3E40.756054%3C%2Fspan%3E%3Cspan+class%3D%22longitude%22%3E-73.986951%3C%2Fspan%3E%3C%2Fdiv%3E%3C%2Fbody%3E%3C%2Fhtml%3E&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws12.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r06.ycpi.ac4.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.00365</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>129</documentLength>\n<document>\n<administrativeScope>\n<woeId>12589342</woeId>\n<type>County</type>\n<name><![CDATA[Manhattan, New York, NY, US]]></name>\n<centroid>\n<latitude>40.7909</latitude>\n<longitude>-73.9664</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>12761349</woeId>\n<type>Zip</type>\n<name><![CDATA[10018, New York, NY, US]]></name>\n<centroid>\n<latitude>40.7565</latitude>\n<longitude>-73.9972</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>12761349</woeId>\n<type>Zip</type>\n<name><![CDATA[10018, New York, NY, US (Zip)]]></name>\n<centroid>\n<latitude>40.7565</latitude>\n<longitude>-73.9972</longitude>\n</centroid>\n<southWest>\n<latitude>40.7491</latitude>\n<longitude>-74.0071</longitude>\n</southWest>\n<northEast>\n<latitude>40.7614</latitude>\n<longitude>-73.9809</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>12589342</woeId>\n<type>County</type>\n<name><![CDATA[Manhattan]]></name>\n</ancestor>\n<ancestor>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York]]></name>\n</ancestor>\n<ancestor>\n<woeId>2347591</woeId>\n<type>State</type>\n<name><![CDATA[New York]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>40.7561</latitude>\n<longitude>-73.987</longitude>\n</center>\n<southWest>\n<latitude>40.7491</latitude>\n<longitude>-74.0071</longitude>\n</southWest>\n<northEast>\n<latitude>40.7614</latitude>\n<longitude>-73.9809</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>12761349</woeId>\n<type>Zip</type>\n<name><![CDATA[10018, New York, NY, US]]></name>\n<centroid>\n<latitude>40.7561</latitude>\n<longitude>-73.987</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>1</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>12761349</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>-1</start>\n<end>-1</end>\n<isPlaintextMarker>0</isPlaintextMarker>\n<text><![CDATA[]]></text>\n<type>xpath</type>\n<xpath><![CDATA[/html[1]/body[1]/div[1]/span[2]]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"},{"request":{"method":"get","uri":"http://weather.yahooapis.com/forecastrss?p=USGA0028","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:44 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Cache-Control":["public"],"Expires":["Sat, 09 Feb 2013 23:01:44 GMT"],"Vary":["Accept-Encoding"],"Content-Type":["text/xml;charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Server":["YTS/1.19.11"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Atlanta, GA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<description>Yahoo! Weather for Atlanta, GA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 4:52 pm EST</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Atlanta\" region=\"GA\" country=\"US\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"60\" direction=\"130\" speed=\"7\" />\n<yweather:atmosphere humidity=\"26\" visibility=\"10\" pressure=\"30.21\" rising=\"1\" />\n<yweather:astronomy sunrise=\"7:26 am\" sunset=\"6:15 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Atlanta, GA at 4:52 pm EST</title>\n<geo:lat>33.75</geo:lat>\n<geo:long>-84.39</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<pubDate>Sat, 09 Feb 2013 4:52 pm EST</pubDate>\n<yweather:condition text=\"Partly Cloudy\" code=\"30\" temp=\"60\" date=\"Sat, 09 Feb 2013 4:52 pm EST\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/30.gif\"/><br />\n<b>Current Conditions:</b><br />\nPartly Cloudy, 60 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Mostly Cloudy. High: 60 Low: 41<br />\nSun - PM Showers. High: 60 Low: 56<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"41\" high=\"60\" text=\"Mostly Cloudy\" code=\"27\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"56\" high=\"60\" text=\"PM Showers\" code=\"39\" />\n<guid isPermaLink=\"false\">USGA0028_2013_02_10_7_00_EST</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api23.weather.bf1.yahoo.com Sat Feb 9 22:31:44 PST 2013 -->\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=Atlanta%2C+GA%2C+US&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["public, must-revalidate"],"Connection":["Keep-Alive"],"Content-Language":["en"],"Content-Length":["2452"],"Content-Type":["text/xml; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 22:31:44 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Server":["HTTP/1.1 UserFiberFramework/1.0"],"Via":["HTTP/1.1 r01.ycpi.ac4.yahoo.net UserFiberFramework/1.0"],"X-Yahoo-Serving-Host":["wws02.geotech.bf1.yahoo.com"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001818</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>15</documentLength>\n<document>\n<administrativeScope>\n<woeId>2357024</woeId>\n<type>Town</type>\n<name><![CDATA[Atlanta, GA, US]]></name>\n<centroid>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>2357024</woeId>\n<type>Town</type>\n<name><![CDATA[Atlanta, GA, US]]></name>\n<centroid>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>2357024</woeId>\n<type>Town</type>\n<name><![CDATA[Atlanta, GA, US (Town)]]></name>\n<centroid>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</centroid>\n<southWest>\n<latitude>33.648</latitude>\n<longitude>-84.5466</longitude>\n</southWest>\n<northEast>\n<latitude>33.8872</latitude>\n<longitude>-84.2897</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>12587929</woeId>\n<type>County</type>\n<name><![CDATA[Fulton]]></name>\n</ancestor>\n<ancestor>\n<woeId>2347569</woeId>\n<type>State</type>\n<name><![CDATA[Georgia]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</center>\n<southWest>\n<latitude>33.648</latitude>\n<longitude>-84.5466</longitude>\n</southWest>\n<northEast>\n<latitude>33.8872</latitude>\n<longitude>-84.2897</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>2357024</woeId>\n<type>Town</type>\n<name><![CDATA[Atlanta, GA, US]]></name>\n<centroid>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>2357024</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>15</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[Atlanta, GA, US]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO®ion=US&sensor=false","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 22:31:44 GMT"],"Expires":["Sun, 10 Feb 2013 22:31:44 GMT"],"Cache-Control":["public, max-age=86400"],"Vary":["Accept-Language"],"Access-Control-Allow-Origin":["*"],"Server":["mafe"],"X-Xss-Protection":["1; mode=block"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"US-ASCII","string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=San+Francisco%2C+CA%2C+United+States&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:44 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws02.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r14.ycpi.nyc.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001821</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>32</documentLength>\n<document>\n<administrativeScope>\n<woeId>2487956</woeId>\n<type>Town</type>\n<name><![CDATA[San Francisco, CA, US]]></name>\n<centroid>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>2487956</woeId>\n<type>Town</type>\n<name><![CDATA[San Francisco, CA, US]]></name>\n<centroid>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>2487956</woeId>\n<type>Town</type>\n<name><![CDATA[San Francisco, CA, US (Town)]]></name>\n<centroid>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</centroid>\n<southWest>\n<latitude>37.604</latitude>\n<longitude>-123.014</longitude>\n</southWest>\n<northEast>\n<latitude>37.8324</latitude>\n<longitude>-122.355</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>12587707</woeId>\n<type>County</type>\n<name><![CDATA[San Francisco]]></name>\n</ancestor>\n<ancestor>\n<woeId>2347563</woeId>\n<type>State</type>\n<name><![CDATA[California]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</center>\n<southWest>\n<latitude>37.604</latitude>\n<longitude>-123.014</longitude>\n</southWest>\n<northEast>\n<latitude>37.8324</latitude>\n<longitude>-122.355</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>2487956</woeId>\n<type>Town</type>\n<name><![CDATA[San Francisco, CA, US]]></name>\n<centroid>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>2487956</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>32</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[San Francisco, CA, United States]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"}],"recorded_with":"VCR 2.4.0"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=Calgary,AB®ion=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:05 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:43:05 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:43:05 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Calgary\",\n \"short_name\" : \"Calgary\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Division No. 6\",\n \"short_name\" : \"Division No. 6\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Alberta\",\n \"short_name\" : \"AB\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"Canada\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Calgary, AB, Canada\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 51.183830,\n \"lng\" : -113.9056380\n },\n \"southwest\" : {\n \"lat\" : 50.84240399999999,\n \"lng\" : -114.271360\n }\n },\n \"location\" : {\n \"lat\" : 51.04532460,\n \"lng\" : -114.05810120\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 51.183830,\n \"lng\" : -113.9056380\n },\n \"southwest\" : {\n \"lat\" : 50.84240399999999,\n \"lng\" : -114.271360\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/WXCurrentObXML/index.xml?query=51.0453246,-114.0581012","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:05 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:43:05 GMT"],"X-Creationtime":["0.038"]},"body":{"string":"\t<current_observation>\n\t\t<credit>Weather Underground NOAA Weather Station</credit>\n\t\t<credit_URL>http://wunderground.com/</credit_URL>\n<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t\t<image>\n\t\t<url>http://icons-ak.wxug.com/graphics/wu2/logo_130x80.png</url>\n\t\t<title>Weather Underground</title>\n\t\t<link>http://wunderground.com/</link>\n\t\t</image>\n <display_location>\n <full>Calgary, Alberta</full>\n <city>Calgary</city>\n <state>AB</state>\n <state_name>Alberta</state_name>\n <country>CA</country>\n <country_iso3166>CA</country_iso3166>\n <zip>00000</zip>\n <latitude>51.045325</latitude>\n <longitude>-114.058101</longitude>\n <elevation>1047.00000000 ft</elevation>\n </display_location>\n\t\t<observation_location>\n\t\t<full>Calgary, </full>\n\t\t<city>Calgary</city>\n\t\t<state></state>\n\t\t<country>CA</country>\n\t\t<country_iso3166>CA</country_iso3166>\n\t\t<latitude>51.11999893</latitude>\n\t\t<longitude>-114.01999664</longitude>\n\t\t<elevation>3556 ft</elevation>\n\t\t</observation_location>\n\t\t<station_id>CYYC</station_id>\n\t\t<observation_time>Last Updated on February 9, 11:00 AM MST</observation_time>\n\t\t<observation_time_rfc822>Sat, 09 Feb 2013 18:00:00 GMT</observation_time_rfc822>\n\t\t<observation_epoch>1360432800</observation_epoch>\n\t\t<local_time>February 9, 11:43 AM MST</local_time>\n\t\t<local_time_rfc822>Sat, 09 Feb 2013 18:43:05 GMT</local_time_rfc822>\n\t\t<local_epoch>1360435385</local_epoch>\n\t\t<weather>Mostly Cloudy</weather>\n\t\t<temperature_string>36 F (2 C)</temperature_string>\n\t\t<temp_f>36</temp_f>\n\t\t<temp_c>2</temp_c>\n\t\t<relative_humidity>70%</relative_humidity>\n\t\t<wind_string>From the NW at 18 MPH Gusting to 26 MPH</wind_string>\n\t\t<wind_dir>NW</wind_dir>\n\t\t<wind_degrees>310</wind_degrees>\n\t\t<wind_mph>18</wind_mph>\n\t\t<wind_gust_mph>26</wind_gust_mph>\n\t\t<pressure_string>29.98 in (1015 mb)</pressure_string>\r\n\t\t<pressure_mb>1015</pressure_mb>\r\n\t\t<pressure_in>29.98</pressure_in>\r\n\t\t<dewpoint_string>27 F (-3 C)</dewpoint_string>\r\n\t\t<dewpoint_f>27</dewpoint_f>\r\n\t\t<dewpoint_c>-3</dewpoint_c>\r\n\t\t\r\n\t\t<heat_index_string>NA</heat_index_string>\r\n\t\t<heat_index_f>NA</heat_index_f>\r\n\t\t<heat_index_c>NA</heat_index_c>\r\n\t\t\r\n\t\t\r\n\t\t<windchill_string>25 F (-4 C)</windchill_string>\r\n\t\t<windchill_f>25</windchill_f>\r\n\t\t<windchill_c>-4</windchill_c>\r\n\t\t\r\n\t\t<visibility_mi>20.0</visibility_mi>\r\n\t\t<visibility_km>32.2</visibility_km>\r\n\t\t<icons>\r\n\t\t\t<icon_set name=\"Default\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Smiley\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Generic\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Old School\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Cartoon\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Mobile\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Simple\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Contemporary\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Helen\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Incredible\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t</icons>\r\n\t\t<icon_url_base>http://icons-ak.wxug.com/graphics/conds/</icon_url_base>\r\n\t\t<icon_url_name>.GIF</icon_url_name>\r\n\t\t<icon>mostlycloudy</icon>\r\n\t\t<forecast_url>http://www.wunderground.com/global/stations/71877.html</forecast_url>\r\n\t\t<history_url>http://www.wunderground.com/history/airport/CYYC/2013/2/9/DailyHistory.html</history_url>\r\n\t\t<ob_url>http://www.wunderground.com/cgi-bin/findweather/getForecast?query=51.11999893,-114.01999664</ob_url>\r\n\t</current_observation>\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml?query=51.0453246,-114.0581012","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:06 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:43:05 GMT"],"X-Creationtime":["0.071"]},"body":{"string":"<?xml version=\"1.0\" ?>\n<forecast>\n\t\t<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t<txt_forecast>\n <date>5:00 PM MST</date>\n <number></number>\n\t\t<forecastday>\n\t\t<period>0</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 8, 2013</title>\n\t\t<fcttext>Clear. High 6&deg;C (42&deg;F). Winds 0 kph North</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>1</period>\n\t\t<icon>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 9, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 4&deg;C (39&deg;F). Winds 10 kph WNW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>2</period>\n\t\t<icon>chancesnow</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 10, 2013</title>\n\t\t<fcttext>Chance of Snow. High 3&deg;C (37&deg;F). Winds 18 kph NW</fcttext>\n\t\t<pop>40</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>3</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 11, 2013</title>\n\t\t<fcttext>Clear. High 3&deg;C (37&deg;F). Winds 7 kph SSE</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>4</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 12, 2013</title>\n\t\t<fcttext>Clear. High 7&deg;C (44&deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>5</period>\n\t\t<icon>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 13, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 7&deg;C (44&deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t</txt_forecast>\n<simpleforecast>\n <forecastday>\n <period>1</period>\n <date>\n <epoch>1360476000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 09, 2013</pretty>\n <day>9</day>\n <month>2</month>\n <year>2013</year>\n <yday>39</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Saturday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>18</fahrenheit>\r\n <celsius>-8</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>60</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>2</period>\r\n <date>\n <epoch>1360562400</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 10, 2013</pretty>\n <day>10</day>\n <month>2</month>\n <year>2013</year>\n <yday>40</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Sunday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>36</fahrenheit>\r\n <celsius>2</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>19</fahrenheit>\r\n <celsius>-7</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>3</period>\r\n <date>\n <epoch>1360648800</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 11, 2013</pretty>\n <day>11</day>\n <month>2</month>\n <year>2013</year>\n <yday>41</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Monday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>43</fahrenheit>\r\n <celsius>6</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>4</period>\r\n <date>\n <epoch>1360735200</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 12, 2013</pretty>\n <day>12</day>\n <month>2</month>\n <year>2013</year>\n <yday>42</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Tuesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>45</fahrenheit>\r\n <celsius>7</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>5</period>\r\n <date>\n <epoch>1360821600</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 13, 2013</pretty>\n <day>13</day>\n <month>2</month>\n <year>2013</year>\n <yday>43</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Wednesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>21</fahrenheit>\r\n <celsius>-6</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>40</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>6</period>\r\n <date>\n <epoch>1360908000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 14, 2013</pretty>\n <day>14</day>\n <month>2</month>\n <year>2013</year>\n <yday>44</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Thursday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>32</fahrenheit>\r\n <celsius>0</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>16</fahrenheit>\r\n <celsius>-9</celsius>\r\n </low>\r\n <conditions>Clear</conditions>\r\n <icon>clear</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/clear.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</simpleforecast>\r\n<moon_phase>\r\n <percentIlluminated>0</percentIlluminated>\r\n <ageOfMoon>29</ageOfMoon>\r\n\t\t<current_time>\r\n\t\t\t<hour>11</hour>\r\n\t\t\t<minute>43</minute>\r\n\t\t</current_time>\r\n <sunset>\r\n <hour>17</hour>\r\n <minute>42</minute>\r\n </sunset>\r\n <sunrise>\r\n <hour>7</hour>\r\n <minute>59</minute>\r\n </sunrise>\r\n</moon_phase>\r\n</forecast>\r\n\r\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/WXCurrentObXML/index.xml?query=Calgary,AB","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:08 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:43:07 GMT"],"X-Creationtime":["0.044"]},"body":{"string":"\t<current_observation>\n\t\t<credit>Weather Underground NOAA Weather Station</credit>\n\t\t<credit_URL>http://wunderground.com/</credit_URL>\n<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t\t<image>\n\t\t<url>http://icons-ak.wxug.com/graphics/wu2/logo_130x80.png</url>\n\t\t<title>Weather Underground</title>\n\t\t<link>http://wunderground.com/</link>\n\t\t</image>\n <display_location>\n <full>Calgary, Alberta</full>\n <city>Calgary</city>\n <state>AB</state>\n <state_name>Alberta</state_name>\n <country>CA</country>\n <country_iso3166>CA</country_iso3166>\n <zip>00000</zip>\n <latitude>51.11999893</latitude>\n <longitude>-114.01999664</longitude>\n <elevation>1084.00000000 ft</elevation>\n </display_location>\n\t\t<observation_location>\n\t\t<full>Calgary, </full>\n\t\t<city>Calgary</city>\n\t\t<state></state>\n\t\t<country>CA</country>\n\t\t<country_iso3166>CA</country_iso3166>\n\t\t<latitude>51.11999893</latitude>\n\t\t<longitude>-114.01999664</longitude>\n\t\t<elevation>3556 ft</elevation>\n\t\t</observation_location>\n\t\t<station_id>CYYC</station_id>\n\t\t<observation_time>Last Updated on February 9, 11:00 AM MST</observation_time>\n\t\t<observation_time_rfc822>Sat, 09 Feb 2013 18:00:00 GMT</observation_time_rfc822>\n\t\t<observation_epoch>1360432800</observation_epoch>\n\t\t<local_time>February 9, 11:43 AM MST</local_time>\n\t\t<local_time_rfc822>Sat, 09 Feb 2013 18:43:07 GMT</local_time_rfc822>\n\t\t<local_epoch>1360435387</local_epoch>\n\t\t<weather>Mostly Cloudy</weather>\n\t\t<temperature_string>36 F (2 C)</temperature_string>\n\t\t<temp_f>36</temp_f>\n\t\t<temp_c>2</temp_c>\n\t\t<relative_humidity>70%</relative_humidity>\n\t\t<wind_string>From the NW at 18 MPH Gusting to 26 MPH</wind_string>\n\t\t<wind_dir>NW</wind_dir>\n\t\t<wind_degrees>310</wind_degrees>\n\t\t<wind_mph>18</wind_mph>\n\t\t<wind_gust_mph>26</wind_gust_mph>\n\t\t<pressure_string>29.98 in (1015 mb)</pressure_string>\r\n\t\t<pressure_mb>1015</pressure_mb>\r\n\t\t<pressure_in>29.98</pressure_in>\r\n\t\t<dewpoint_string>27 F (-3 C)</dewpoint_string>\r\n\t\t<dewpoint_f>27</dewpoint_f>\r\n\t\t<dewpoint_c>-3</dewpoint_c>\r\n\t\t\r\n\t\t<heat_index_string>NA</heat_index_string>\r\n\t\t<heat_index_f>NA</heat_index_f>\r\n\t\t<heat_index_c>NA</heat_index_c>\r\n\t\t\r\n\t\t\r\n\t\t<windchill_string>25 F (-4 C)</windchill_string>\r\n\t\t<windchill_f>25</windchill_f>\r\n\t\t<windchill_c>-4</windchill_c>\r\n\t\t\r\n\t\t<visibility_mi>20.0</visibility_mi>\r\n\t\t<visibility_km>32.2</visibility_km>\r\n\t\t<icons>\r\n\t\t\t<icon_set name=\"Default\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Smiley\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Generic\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Old School\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Cartoon\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Mobile\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Simple\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Contemporary\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Helen\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Incredible\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t</icons>\r\n\t\t<icon_url_base>http://icons-ak.wxug.com/graphics/conds/</icon_url_base>\r\n\t\t<icon_url_name>.GIF</icon_url_name>\r\n\t\t<icon>mostlycloudy</icon>\r\n\t\t<forecast_url>http://www.wunderground.com/global/stations/71877.html</forecast_url>\r\n\t\t<history_url>http://www.wunderground.com/history/airport/CYYC/2013/2/9/DailyHistory.html</history_url>\r\n\t\t<ob_url>http://www.wunderground.com/cgi-bin/findweather/getForecast?query=51.11999893,-114.01999664</ob_url>\r\n\t</current_observation>\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml?query=Calgary,AB","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:08 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:43:08 GMT"],"X-Creationtime":["0.069"]},"body":{"string":"<?xml version=\"1.0\" ?>\n<forecast>\n\t\t<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t<txt_forecast>\n <date>5:00 PM MST</date>\n <number></number>\n\t\t<forecastday>\n\t\t<period>0</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 8, 2013</title>\n\t\t<fcttext>Clear. High 6&deg;C (42&deg;F). Winds 0 kph North</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>1</period>\n\t\t<icon>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 9, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 4&deg;C (39&deg;F). Winds 10 kph WNW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>2</period>\n\t\t<icon>chancesnow</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 10, 2013</title>\n\t\t<fcttext>Chance of Snow. High 3&deg;C (37&deg;F). Winds 18 kph NW</fcttext>\n\t\t<pop>40</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>3</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 11, 2013</title>\n\t\t<fcttext>Clear. High 3&deg;C (37&deg;F). Winds 7 kph SSE</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>4</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 12, 2013</title>\n\t\t<fcttext>Clear. High 7&deg;C (44&deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>5</period>\n\t\t<icon>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 13, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 7&deg;C (44&deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t</txt_forecast>\n<simpleforecast>\n <forecastday>\n <period>1</period>\n <date>\n <epoch>1360476000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 09, 2013</pretty>\n <day>9</day>\n <month>2</month>\n <year>2013</year>\n <yday>39</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Saturday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>18</fahrenheit>\r\n <celsius>-8</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>60</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>2</period>\r\n <date>\n <epoch>1360562400</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 10, 2013</pretty>\n <day>10</day>\n <month>2</month>\n <year>2013</year>\n <yday>40</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Sunday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>36</fahrenheit>\r\n <celsius>2</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>19</fahrenheit>\r\n <celsius>-7</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>3</period>\r\n <date>\n <epoch>1360648800</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 11, 2013</pretty>\n <day>11</day>\n <month>2</month>\n <year>2013</year>\n <yday>41</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Monday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>43</fahrenheit>\r\n <celsius>6</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>4</period>\r\n <date>\n <epoch>1360735200</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 12, 2013</pretty>\n <day>12</day>\n <month>2</month>\n <year>2013</year>\n <yday>42</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Tuesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>45</fahrenheit>\r\n <celsius>7</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>5</period>\r\n <date>\n <epoch>1360821600</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 13, 2013</pretty>\n <day>13</day>\n <month>2</month>\n <year>2013</year>\n <yday>43</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Wednesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>21</fahrenheit>\r\n <celsius>-6</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>40</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>6</period>\r\n <date>\n <epoch>1360908000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 14, 2013</pretty>\n <day>14</day>\n <month>2</month>\n <year>2013</year>\n <yday>44</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Thursday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>32</fahrenheit>\r\n <celsius>0</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>16</fahrenheit>\r\n <celsius>-9</celsius>\r\n </low>\r\n <conditions>Clear</conditions>\r\n <icon>clear</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/clear.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</simpleforecast>\r\n<moon_phase>\r\n <percentIlluminated>0</percentIlluminated>\r\n <ageOfMoon>29</ageOfMoon>\r\n\t\t<current_time>\r\n\t\t\t<hour>11</hour>\r\n\t\t\t<minute>43</minute>\r\n\t\t</current_time>\r\n <sunset>\r\n <hour>17</hour>\r\n <minute>42</minute>\r\n </sunset>\r\n <sunrise>\r\n <hour>7</hour>\r\n <minute>59</minute>\r\n </sunrise>\r\n</moon_phase>\r\n</forecast>\r\n\r\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"response":{"http_version":null,"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"code":200,"message":"OK"},"headers":{"X-Xss-Protection":["1; mode=block"],"X-Frame-Options":["SAMEORIGIN"],"Vary":["Accept-Language"],"Content-Type":["application/json; charset=UTF-8"],"Transfer-Encoding":["chunked"],"Cache-Control":["public, max-age=86400"],"Expires":["Sun, 10 Feb 2013 18:42:37 GMT"],"Access-Control-Allow-Origin":["*"],"Server":["mafe"],"Date":["Sat, 09 Feb 2013 18:42:37 GMT"]}},"request":{"body":{"string":""},"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210®ion=US&sensor=false","headers":{}},"recorded_at":"Sat, 09 Feb 2013 18:42:37 GMT"}],"recorded_with":"VCR 2.4.0"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"http_interactions":[{"request":{"uri":"http://forecast.weather.gov/MapClick.php?textField1=34.10&textField2=-118.41","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:09 GMT","response":{"http_version":null,"headers":{"Cache-Control":["max-age=862"],"Transfer-Encoding":["chunked"],"Server":["Apache/2.2.15 (Red Hat)"],"Content-Type":["text/html; charset=UTF-8"],"Connection":["Transfer-Encoding","keep-alive"],"Date":["Sat, 09 Feb 2013 18:43:09 GMT"],"Expires":["Sat, 09 Feb 2013 18:57:31 GMT"]},"body":{"string":"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<link rel=\"schema.DC\" href=\"http://purl.org/dc/elements/1.1/\" /><title>NOAA National Weather Service</title><meta name=\"DC.title\" content=\"NOAA National Weather Service\" /><meta name=\"DC.description\" content=\"NOAA National Weather Service National Weather Service\" /><meta name=\"DC.creator\" content=\"US Department of Commerce, NOAA, National Weather Service\" /><meta name=\"DC.date.created\" scheme=\"ISO8601\" content=\"\" /><meta name=\"DC.language\" scheme=\"DCTERMS.RFC1766\" content=\"EN-US\" /><meta name=\"DC.keywords\" content=\"weather, National Weather Service\" /><meta name=\"DC.publisher\" content=\"NOAA's National Weather Service\" /><meta name=\"DC.contributor\" content=\"National Weather Service\" /><meta name=\"DC.rights\" content=\"http://www.weather.gov/disclaimer.php\" /><meta name=\"rating\" content=\"General\" /><meta name=\"robots\" content=\"index,follow\" />\r\n\r\n<link href=\"/css/weatherstyle.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<link href=\"/css/template.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<link href=\"/css/myfcst.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/ForecastSearch.css\" />\r\n<link href=\"/css/pointforecast.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<script type=\"text/javascript\" src=\"/js/jquery-1.6.4.min.js\"></script>\r\n<script type=\"text/javascript\" src=\"/js/jquery.hoverIntent.minified.js\"></script>\r\n<script type=\"text/javascript\" src=\"http://maps.googleapis.com/maps/api/js?v=3&client=gme-noaa&channel=NWS...PointClick&sensor=false\"></script>\r\n<script type=\"text/javascript\" src=\"/js/ForecastSearch.js\"></script>\r\n\r\n<script type=\"text/javascript\">\r\nfunction MM_jumpMenu(targ,selObj,restore)\r\n{ \r\n\t//v3.0\r\n\teval(targ+\".location='\"+selObj.options[selObj.selectedIndex].value+\"'\");\r\n\tif (restore) selObj.selectedIndex=0;\r\n}\r\n\r\n</script>\r\n<script type=\"text/javascript\" src=\"/js/topNavMenu.js\"></script>\r\n\r\n</head>\r\n\r\n<body>\r\n\r\n\t\t<div class=\"header\">\r\n\t\t\t<div class=\"header-content\">\r\n\t\t\t<a href=\"http://www.weather.gov\" class=\"header-nws\"><img src=\"/css/images/header.png\" /></a>\r\n\t\t\t<a href=\"http://www.commerce.gov\" class=\"header-doc\"><img src=\"/css/images/header_doc.png\" /></a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"header-shadow\">\r\n\t\t\t<div class=\"header-shadow-content\"></div>\r\n\t\t</div>\r\n\t\r\n\r\n<div class=\"center\">\r\n\r\n\t <div class=\"content\">\r\n <div class=\"topnav\">\r\n <ul id=\"topnav\">\r\n <li>\r\n <script type=\"text/javascript\">\r\n function goBack()\r\n {\r\n if (document.referrer.toLowerCase().indexOf(\"weather.gov\") != -1)\r\n {\r\n history.back();\r\n }\r\n else\r\n {\r\n document.location.href = \"http://www.weather.gov\";\r\n }\r\n }\r\n </script>\r\n <div class=\"topMenuNavList home\">\r\n <a href=\"#\" onclick=\"goBack();\">HOME</a>\r\n </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/forecastmaps\">FORECAST</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"/\">Local</a> </li> <li> <a href=\"http://graphical.weather.gov\">Graphical</a> </li> <li> <a href=\"http://www.aviationweather.gov/\">Aviation</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/marine/home.htm\">Marine</a> </li> <li> <a href=\"http://water.weather.gov/ahps/\">Rivers and Lakes</a> </li> <li> <a href=\"http://www.nhc.noaa.gov/\">Hurricanes</a> </li> <li> <a href=\"http://www.spc.noaa.gov/\">Severe Weather</a> </li> <li> <a href=\"http://www.srh.noaa.gov/ridge2/fire/\">Fire Weather</a> </li> <li> <a href=\"http://aa.usno.navy.mil/data/docs/RS_OneDay.php\">Sun/Moon</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Long Range Forecasts</a> </li> <li> <a href=\"http://www.cpc.ncep.noaa.gov\">Climate Prediction</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.nws.noaa.gov/climate\">PAST WEATHER</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Past Weather</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Heating/Cooling Days</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Monthly Temperatures</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Records</a> </li> <li> <a href=\"http://aa.usno.navy.mil/\">Astronomical Data</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/safety\">WEATHER SAFETY</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"http://www.nws.noaa.gov/com/weatherreadynation\">Weather-Ready Nation</a> </li> <li> <a href=\"http://www.nws.noaa.gov/nwr/\">NOAA Weather Radio</a> </li> <li> <a href=\"http://www.nws.noaa.gov/stormready/\">StormReady</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/heat/index.shtml\">Heat</a> </li> <li> <a href=\"http://www.lightningsafety.noaa.gov/\">Lightning</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/hurricane/index.shtml\">Hurricanes</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/severeweather/index.shtml\">Thunderstorms, Tornadoes, Floods</a> </li> <li> <a href=\"http://www.ripcurrents.noaa.gov/\">Rip Currents</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/winter/index.shtml\">Winter Weather</a> </li> <li> <a href=\"http://www.nws.noaa.gov/os/uv/\">Ultra Violet Radiation</a> </li> <li> <a href=\"http://www.nws.noaa.gov/airquality/\">Air Quality</a> </li> <li> <a href=\"http://www.nws.noaa.gov/os/water/tadd/\">Turn Around, Don't Drown</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/hazstats.shtml\">Damage/Fatality/Injury Statistics</a> </li> <li> <a href=\"http://www.redcross.org/\">Red Cross</a> </li> <li> <a href=\"http://www.fema.gov\">Federal Emergency Management Agency (FEMA)</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/brochures.shtml\">Brochures</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/informationcenter\">INFORMATION CENTER</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"http://www.noaawatch.gov/briefing.php\">Daily Briefing </a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/marine/home.htm\">Marine</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Climate </a> </li> <li> <a href=\"http://www.spaceweather.gov\">Space Weather</a> </li> <li> <a href=\"http://radar.srh.noaa.gov/fire/\">Fire Weather</a> </li> <li> <a href=\"http://www.aviationweather.gov/\">Aviation</a> </li> <li> <a href=\"http://www.tsunami.gov\">Tsunami</a> </li> <li> <a href=\"http://mag.ncep.noaa.gov/NCOMAGWEB/appcontroller\">Forecast Models</a> </li> <li> <a href=\"http://water.weather.gov/ahps/\">Water</a> </li> <li> <a href=\"http://www.nws.noaa.gov/gis\">GIS</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/coop/\">Cooperative Observers</a> </li> <li> <a href=\"http://www.nws.noaa.gov/skywarn/\">Storm Spotters</a> </li> <li> <a href=\"http://wiki.citizen.apps.gov/nws_developers/index.php/Main_Page\">For Developers</a> </li> <li> <a href=\"http://economics.noaa.gov\">Facts and Figures</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/news\">NEWS</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"/news\">NWS News</a> </li> <li> <a href=\"http://www.nws.noaa.gov/com/weatherreadynation/calendar.html\">Events</a> </li> <li> <a href=\"http://www.weather.gov/socialmedia\">Social Media</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/brochures.shtml\">Pubs/Brochures/Booklets </a> </li> <li> <a href=\"http://www.nws.noaa.gov/pa/nws_contacts.php\">NWS Media Contacts</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/search\">SEARCH</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul class=\"no-links\">\r\n <li><!-- Begin search code -->\r\n <div id=\"site-search\">\r\n <form method=\"get\" action=\"http://search.usa.gov/search\" style=\"margin-bottom: 0; margin-top: 0;\">\r\n <input type=\"hidden\" name=\"v:project\" value=\"firstgov\" /> \r\n <label for=\"query\">Search For</label> \r\n <input type=\"text\" name=\"query\" id=\"query\" size=\"12\" /> \r\n <input type=\"submit\" value=\"Go\" />\r\n <p>\r\n <input type=\"radio\" name=\"affiliate\" checked=\"checked\" value=\"nws.noaa.gov\" id=\"nws\" /> \r\n <label for=\"nws\" class=\"search-scope\">NWS</label> \r\n <input type=\"radio\" name=\"affiliate\" value=\"noaa.gov\" id=\"noaa\" /> \r\n <label for=\"noaa\" class=\"search-scope\">All NOAA</label>\r\n </p>\r\n </form>\r\n </div>\r\n </li>\r\n </ul> </div>\r\n </li>\r\n <li class=\"last\">\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/about\">ABOUT</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"http://www.weather.gov/about\">About NWS</a> </li> <li> <a href=\"http://www.weather.gov/organization\">Organization</a> </li> <li> <a href=\"http://www.nws.noaa.gov/sp\">Strategic Plan</a> </li> <li> <a href=\"https://sites.google.com/a/noaa.gov/nws-best-practices/\">For NWS Employees</a> </li> <li> <a href=\"http://www.nws.noaa.gov/ia/home.htm\">International</a> </li> <li> <a href=\"http://www.weather.gov/organization\">National Centers</a> </li> <li> <a href=\"http://www.nws.noaa.gov/tg\">Products and Services</a> </li> <li> <a href=\"http://www.weather.gov/contact\">Contact Us</a> </li> <li> <a href=\"http://www.nws.noaa.gov/glossary\">Glossary</a> </li></ul> </div>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n \r\n\t\r\n\t<div class=\"center-content\">\r\n\t\t\r\n\t\t\t\t<div class=\"one-sixth-first\">\r\n\t\t\t<div id=\"forecast-lookup\">\r\n\t\t\t\t<form name=\"getForecast\" id=\"getForecast\" action=\"http://forecast.weather.gov/zipcity.php\" method=\"get\">\r\n <label for=\"inputstring\">Local forecast by <br>\"City, St\" or ZIP code</label>\r\n <input id=\"inputstring\" name=\"inputstring\" type=\"text\" value=\"Enter location ...\" onclick=\"this.value=''\" />\r\n <input name=\"btnSearch\" id=\"btnSearch\" type=\"submit\" value=\"Go\" />\r\n <div id=\"txtError\">\r\n <div id=\"errorNoResults\" style=\"display:none;\">Sorry, the location you searched for was not found. Please try another search.</div>\r\n <div id=\"errorMultipleResults\" style=\"display:none\">Multiple locations were found. Please select one of the following:</div>\r\n <div id=\"errorChoices\" style=\"display:none\"></div>\r\n <input id=\"btnCloseError\" type=\"button\" value=\"Close\" style=\"display:none\" />\r\n </div>\r\n <div id=\"txtHelp\"><a style=\"text-decoration: underline;\" href=\"javascript:void(window.open('http://weather.gov/ForecastSearchHelp.html','locsearchhelp','status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=1,scrollbars=1,height=500,width=530').focus());\">Location Help</a></div>\r\n </form>\r\n\r\n\t\t\t</div><!-- <div id=\"forecast-lookup\"> -->\r\n\t\t</div><!-- <div class=\"one-sixth-first\"> -->\r\n\t\r\n\t\t<div class=\"five-sixth-last\"><div id=\"topnews\"><h1 style='font-size:11pt;'>Major Winter Storm Continues to Impact Northeast</h1><p>The major winter storm that has brought more than two feet of snow strong winds across parts of the Northeast and New England continues to impact the region Saturday morning. Heavy snow, along with strong wind gusts, are expected to continue across much of New England early Saturday morning, before beginning to slowly taper off from west to east later in the morning and into the afternoon. <br /><a href='http://1.usa.gov/11qoD8L' target='_blank'>Read More...</a></p></div></div>\r\n\t\t\r\n \t<script language=javascript>document.title =' 7-Day Forecast for Latitude 34.1\\u00B0N and Longitude 118.42\\u00B0W (Elev. 774 ft)';</script><script type=\"text/javascript\" src=\"JavaScript/google_map.js\"></script><script type=\"text/javascript\"> var smap=1; var gmsite = 'lox'; var gmscale =10; var gmsi=0; var gmlng=''; var gmtype = 'text';</script><div class=\"one-fourth-last\"></div><div class=\"div-full locationHeader\">\n\t<div class=\"five-sixth-first point-forecast-area-title\">4 Miles W Hollywood CA</div>\n\t<div class=\"one-sixth-last locationheader-options\"><a href=\"http://forecast.weather.gov/MapClick.php?lat=34.10&lon=-118.41&FcstType=textr&unit=0&lg=sp\"><b>En Español</b></a></div>\n</div>\n<div class=\"full-width-borderbottom current-conditions\">\n\t<div class=\"one-third-first\">\n\t\t<div class=\"div-half\">\n\t\t\t<p class=\"feature\"><img src=\"/images/wtf/large/sct.png\" alt=\"\" width=\"134\" height=\"134\" /></p>\n\t\t</div>\n\t\t<div class=\"div-half-right\">\n\t\t\t<p class=\"myforecast-current\">Fair</p>\n\t\t\t<p class=\"myforecast-current-lrg\">52°F</p>\n\t\t\t<p><span class=\"myforecast-current-sm\">11°C</span></p>\n\t\t</div>\n\t</div>\n\t<div class=\"one-third-first\">\n\t\t<ul class=\"current-conditions-detail\">\n\t\t\t<li><span class=\"label\">Humidity</span>59%</li>\n\t\t\t<li><span class=\"label\">Wind Speed</span>E 5 MPH</li>\n\t\t\t<li><span class=\"label\">Barometer</span>30.05 in (1017.7 mb)</li>\n\t\t\t<li><span class=\"label\">Dewpoint</span>38°F (3°C)</li>\n\t\t\t<li><span class=\"label\">Visibility</span>10.00 mi</li>\n\t\t</ul>\n<p class=\"current-conditions-timestamp\">Last Update on 09 Feb 9:51 am PST </p><br>\t</div>\n\t<div class=\"one-third-last\">\n\t\t<p style=\"font-size: 8pt;\">Current conditions at</p>\n\t\t<p class=\"current-conditions-location\">Santa Monica, Santa Monica Municipal Airport (KSMO)</p>\n\t\t<p> Lat: 34.01583 Lon: -118.45139 Elev: 174ft.<br /></p>\n\t\t<div class=\"current-conditions-extra\">\n\t\t\t<p><a href=\"http://www.wrh.noaa.gov/total_forecast/other_obs.php?wfo=lox&zone=CAZ041\">More Local Wx</a> | <a href=\"http://www.wrh.noaa.gov/mesowest/getobext.php?wfo=lox&sid=KSMO&num=72&raw=0\">3 Day History</a> | <a href=http://mobile.weather.gov/index.php?lat=34.01583&lon=-118.45139>Mobile Weather</a></p>\n\t\t</div>\n<!-- AddThis Button BEGIN -->\n\t\t<div class=\"addthis_toolbox addthis_default_style \">\n\t\t\t<a href=\"http://www.addthis.com/bookmark.php?v=250&pubid=xa-4b05b2d91f18c9cc\" class=\"addthis_button_compact\">Share</a>\n\t\t\t<span class=\"addthis_separator\">|</span>\n\t\t\t<a class=\"addthis_button_preferred_1\"></a>\n\t\t\t<a class=\"addthis_button_preferred_2\"></a>\n\t\t\t<a class=\"addthis_button_preferred_3\"></a>\n\t\t\t<a class=\"addthis_button_preferred_4\"></a>\n\t\t\t<a class=\"addthis_button_preferred_5\"></a>\n\t\t</div>\n\t\t<script type=\"text/javascript\" src=\"http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4b05b2d91f18c9cc\"></script>\n<!-- AddThis Button END -->\n\t</div>\n</div>\n<div class=\"partial-width-borderbottom point-forecast-icons\">\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Today<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 55 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Tonight<br><br></p>\n <p><img src=\"/images/wtf/medium/nfew.png\" width=\"86\" height=\"86\" alt=\"Mostly Clear\" title=\"Mostly Clear\" /></p>\n <p>Mostly<br>Clear<br></p>\n <p class=\"point-forecast-icons-low\">Low: 42 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Sunday<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 58 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Sunday<br>Night</p>\n <p><img src=\"/images/wtf/medium/nfew.png\" width=\"86\" height=\"86\" alt=\"Mostly Clear\" title=\"Mostly Clear\" /></p>\n <p>Mostly<br>Clear<br></p>\n <p class=\"point-forecast-icons-low\">Low: 44 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Monday<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 60 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Monday<br>Night</p>\n <p><img src=\"/images/wtf/medium/nfew.png\" width=\"86\" height=\"86\" alt=\"Mostly Clear\" title=\"Mostly Clear\" /></p>\n <p>Mostly<br>Clear<br></p>\n <p class=\"point-forecast-icons-low\">Low: 45 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Tuesday<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 64 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Tuesday<br>Night</p>\n <p><img src=\"/images/wtf/medium/nfew.png\" width=\"86\" height=\"86\" alt=\"Mostly Clear\" title=\"Mostly Clear\" /></p>\n <p>Mostly<br>Clear<br></p>\n <p class=\"point-forecast-icons-low\">Low: 46 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Wednesday<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 66 °F</p>\n </div>\n</div>\n<div class=\"partial-width-borderbottom\">\n\t<div class=\"two-third-first point-forecast-7-day\">\n<div class=\"hazardous-conditions\">\n<h1>Hazardous Weather Conditions</h1>\n<ul><li><a href=\"showsigwx.php?warnzone=CAZ041&warncounty=CAC037&firewxzone=CAZ241&local_place1=&product1=Hazardous+Weather+Outlook\">Hazardous Weather Outlook</a></li>\n</ul>\n</div>\n\t\t<h1>7-DAY FORECAST</h1>\n <ul class=\"point-forecast-7-day\">\n <li class=\"row-odd\"><span class=\"label\">Today</span> Sunny, with a high near 55. South wind around 5 mph. </li>\n <li class=\"row-even\"><span class=\"label\">Tonight</span> Mostly clear, with a low around 42. South wind around 5 mph becoming east after midnight. </li>\n <li class=\"row-odd\"><span class=\"label\">Sunday</span> Sunny, with a high near 58. Calm wind becoming south around 5 mph in the morning. </li>\n <li class=\"row-even\"><span class=\"label\">Sunday Night</span> Mostly clear, with a low around 44. South wind around 5 mph becoming north in the evening. </li>\n <li class=\"row-odd\"><span class=\"label\">Monday</span> Sunny, with a high near 60. North northeast wind around 5 mph becoming calm in the morning. </li>\n <li class=\"row-even\"><span class=\"label\">Monday Night</span> Mostly clear, with a low around 45.</li>\n <li class=\"row-odd\"><span class=\"label\">Tuesday</span> Sunny, with a high near 64.</li>\n <li class=\"row-even\"><span class=\"label\">Tuesday Night</span> Mostly clear, with a low around 46.</li>\n <li class=\"row-odd\"><span class=\"label\">Wednesday</span> Sunny, with a high near 66.</li>\n <li class=\"row-even\"><span class=\"label\">Wednesday Night</span> Mostly clear, with a low around 48.</li>\n <li class=\"row-odd\"><span class=\"label\">Thursday</span> Sunny, with a high near 70.</li>\n <li class=\"row-even\"><span class=\"label\">Thursday Night</span> Mostly clear, with a low around 49.</li>\n <li class=\"row-odd\"><span class=\"label\">Friday</span> Sunny, with a high near 73.</li>\n </ul>\n\t\t<p> </p>\n\t\t<h1>ADDITIONAL FORECASTS AND INFORMATION</h1>\n\t\t<p class=\"myforecast-location\"><a href=\"MapClick.php?zoneid=CAZ041\">Zone Area Forecast for Los Angeles County Coast including Downtown Los Angeles, CA</a></p>\n\t\t<div class=\"div-full\">\n\t\t\t<p> </p>\n\t\t\t<div class=\"div-third\"><a href=\"http://forecast.weather.gov/product.php?site=NWS&issuedby=LOX&product=AFD&format=CI&version=1&glossary=1\">Forecast Discussion</a><br />\n\t\t\t\t<a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=text&TextType=2\">Printable Forecast</a><br />\n\t\t\t\t<a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=text&TextType=1\">Text Only Forecast</a></div>\n\t\t\t<div class=\"div-third\"><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=graphical\">Hourly Weather Graph</a><br />\n\t\t\t\t<a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=digital\">Tabular Forecast</a><br />\n\t\t\t\t<a href=\"afm/PointClick.php?lat=34.10000&lon=-118.41000\">Quick Forecast</a></div>\n\t\t\t<div class=\"div-third\"><a href=\"http://weather.gov/aq/probe_aq_data.php?latitude=34.10000&longitude=-118.41000\">Air Quality Forecasts</a><br/><a href=\"http://forecast.weather.gov/MapClick.php?lat=34.10&lon=-118.41&FcstType=text&unit=1&lg=en\">International System of Units</a><br />\n\t\t\t\t<a href=\"http://www.srh.weather.gov/srh/jetstream/webweather/pinpoint_max.htm\">About Point Forecasts</a><br />\n\t\t\t<a href=\"http://www.wrh.noaa.gov/forecast/wxtables/index.php?lat=34.10000&lon=-118.41000\">Forecast Weather Table Interface</a>\n\t\t\t</div>\n\t\t</div>\n\t\t<div class=\"div-full\">\n\t\t\t<div class=\"div-third\"><br>\n\t\t\t<a href=\"http://www.wrh.noaa.gov/mesowest/mwmap.php?map=lox\" target=\"_self\">Observation Map (Regional)</a><br />\n\t\t\t<a href=\"http://www.wrh.noaa.gov/mesowest/mwmap.php?map=la\" target=\"_self\">Observation Map (Los Angeles)</a><br />\n\t\t\t</div>\n\t\t\t<div class=\"div-third\"><br>\n\t\t\t<a href=\"http://www.wrh.noaa.gov/warnings.php?wfo=lox\" target=\"_self\">Warnings</a><br />\n\t\t\t<a href=\"http://www.wrh.noaa.gov/forecasts/graphical/sectors/lox.php\" target=\"_self\">Experimental Graphical Forecasts</a><br />\n\t\t\t</div>\n\t\t\t<div class=\"div-third\"><br>\n\t\t\t<a href=\"http://www.wrh.noaa.gov/lox/getprod.php?pil=qps&sid=lox&format=pre\" target=\"_self\">Quantitative Precipitation Forecast</a><br />\n\t\t\t<a href=\"http://www.weather.gov/climate/index.php?wfo=lox\" target=\"_self\">Climatology</a><br />\n\t\t\t</div>\n\t\t\t<p> </p>\n\t\t</div>\n\t</div>\n\t<div class=\"one-third-last point-forecast-right\">\n\t\t<div id=\"point-forecast-info\">\n\t\t\t<h2 class=\"wfo-label\"><a href=http://www.wrh.noaa.gov/lox>NWS Los Angeles/Oxnard, CA</a></h2>\n\t\t\t<ul class=\"point-forecast-info\">\n\t\t\t\t<li><span class=\"label\">Point Forecast:</span> 4 Miles W Hollywood CA<br>34.1°N 118.42°W (Elev. 774 ft)</li>\n\t\t\t\t<li><span class=\"label\"><a href=\"http://www.weather.gov/glossary/index.php?word=Last+update\">Last Update</a>:</span> 10:21 am PST Feb 9, 2013</li>\n\t\t\t\t<li><span class=\"label\"><a href=\"http://www.weather.gov/glossary/index.php?word=forecast+valid+for\">Forecast Valid</a>:</span> 11am PST Feb 9, 2013-6pm PST Feb 15, 2013<p><a href=\"http://forecast.weather.gov/product.php?site=NWS&issuedby=LOX&product=AFD&format=CI&version=1&glossary=1\">Forecast Discussion</a></p>\n\t\t\t\t<p class=\"forecast-downloads\"><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=kml\"><img src=\"/images/wtf/kml_badge.png\" width=\"45\" height=\"17\" alt=\"Get as KML\" /></a> <a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=dwml\"><img src=\"/images/wtf/xml_badge.png\" width=\"45\" height=\"17\" alt=\"Get as XML\" /></a></p>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t</div>\n<div class='point-forecast-map'><div class='point-forecast-map-header'>Click Map for Forecast<div class='disclaimer'><a href='http://www.weather.gov/credits.php#googlemapping'>Disclaimer</a></div></div><form name=\"littleform\" method=\"post\" action=\"#\"><div id=\"gmap\"><noscript><center><br><br><b>Map function requires Javascript and a compatible browser.</b></center></noscript></div><div class=\"point-forecast-map-footer\"><img src=\"/images/wtf/maplegend.gif\" width=\"240\" height=\"16\" alt=\"Map Legend\"><p><strong>Lat/Lon:</strong> 34.1°N 118.42°W <strong>Elevation:</strong> 774 ft</p></div></form></div>\t\t<div id=\"radar\">\n\t\t\t<h2>RADAR & SATELLITE IMAGES</h2>\n\t\t\t<div class=\"div-full\"><a href=\"http://radar.weather.gov/radar.php?rid=vtx&product=N0R&overlay=11101111&loop=no\"><img src=\"http://radar.weather.gov/Thumbs/VTX_Thumb.gif\" class=\"radar-thumb\" alt=\"Link to Local Radar Data\" title=\"Link to Local Radar Data\"></a> <a href=\"http://www.wrh.noaa.gov/satellite/?wfo=lox\"><img src=\"http://sat.wrh.noaa.gov/satellite/4km/WR/IR4.thumbnail.jpg\" class=\"satellite-thumb\" alt=\"Link to Satellite Data\" title=\"Link to Satellite Data\"></a></div>\n\t\t</div>\n\t\t<div id=\"hourly\">\n\t\t\t<h2>HOURLY WEATHER GRAPH </h2>\n\t\t\t<p class=\"feature\"><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=graphical\"><img src=\"/images/wtf/medium/hourlyweather.png\" width=\"300\" height=\"158\" /></a></p>\n\t\t</div>\n\t\t<div id=\"ndfd\">\n\t\t\t<h2>NATIONAL DIGITAL FORECAST DATABASE</h2>\n\t\t\t<p><a href=\"http://www.weather.gov/forecasts/graphical/sectors/pacsouthwest.php?element=MaxT\"><img src=\"http://www.weather.gov/forecasts/graphical/images/thumbnail/latest_MaxMinT_pacsouthwest_thumbnail.png\" border=\"0\" alt=\"National Digital Forecast Database Maximum Temperature Forecast\" title=\"National Digital Forecast Database Maximum Temperature Forecast\" width=\"147\" height=\"150\"></a> <a href=\"http://www.weather.gov/forecasts/graphical/sectors/pacsouthwest.php?element=Wx\"><img src=\"http://www.weather.gov/forecasts/graphical/images/thumbnail/latest_Wx_pacsouthwest_thumbnail.png\" border=\"0\" alt=\"National Digital Forecast Database Weather Element Forecast\" title=\"National Digital Forecast Database Weather Element Forecast\" width=\"147\" height=\"150\"></a></p>\n\t\t</div>\n\t</div>\n</div>\n<script language='javascript'>window.load = load_google_map(34.10000, -118.41000, 34.084, -118.432, 34.106, -118.437, 34.11, -118.41, 34.088, -118.405, 11);</script>\r\n\r\n\t\t<!-- <div class=\"full-width-first\">\r\n\t\t\t\t\t <div class=\"full-width-first communication-links\">\r\n \t<div class =\"one-third-first nopad\">\r\n \t<div class=\"myforecast-current\" style=\"float:left;padding:0px 20px 0px 0px;\">\r\n \t<a style=\"text-decoration:none;\" href=\"http://twitter.com/usNWSgov\" target=\"_blank\">\r\n \t\t<img src=\"/css/images/twitter.png\" width=\"16\" height=\"16\" /> Follow us on Twitter\r\n \t</a>\r\n \t</div>\r\n \t<div class=\"myforecast-current\" style=\"float:left;padding:0px 20px 0px 0px;\">\r\n \t<a style=\"text-decoration:none;\" href=\"http://www.facebook.com/US.National.Weather.Service.gov\" target=\"_blank\">\r\n \t\t<img src=\"/css/images/fb.png\" width=\"16\" height=\"16\" /> Follow us on Facebook\r\n \t</a>\r\n </div>\r\n \t </div>\r\n <div class =\"one-half-last nopad\">\r\n \t<span class=\"txt-rt myforecast-current\">\r\n \t<div class=\"myforecast-current\" style=\"float:left;padding:0px 20px 0px 0px;\">\r\n \t\t<a href=\"/rss_page.php?site_name=nws\" target=\"_blank\" style=\"text-decoration:none;font-size:11px;\">\r\n\t\t\t\t\t\t\t<img src=\"/css/images/rss.png\" width=\"16\" height=\"16\" /> NWS RSS Feed\r\n\t\t\t\t\t\t</a>\r\n \t</div>\r\n \t<a href=\"http://www.weather.gov/cgi-bin/nwsexit.pl?url=https://service.govdelivery.com/service/multi_subscribe.html%3Fcode=USNWS\" class=\"icon\">\r\n \t\t\t\t<img src=\"/css/images/email.png\" title=\"Sign Up For Email Notifications\" alt=\"Sign Up For Email Notifications\" width=\"16\" height=\"16\" />\r\n \t\t\t</a> \r\n\t\t\t\t\r\n\t\t\t\t\t<form action=\"https://public.govdelivery.com/accounts/USNWS/subscribers/qualify\" class=\"govdelivery\" method=\"get\"> \r\n \t\t\t<label for=\"email\" style=\"display:none;\">Sign up for Email Notifications</label>\r\n \t\t\t<input id=\"email\" name=\"email\" type=\"text\" value=\"Sign Up for Email Notifications\" onFocus=\"this.value='';\"/>\r\n \t\t\t<input class=\"form_button\" name=\"commit\" type=\"submit\" value=\"Subscribe\" /> \r\n\t\t\t\t\t</form>\r\n \t</span>\r\n </div>\r\n </div>\r\n \t\t<div style=\"clear:both;\"></div>\r\n\t\r\n\t\t</div>\r\n\t\t-->\r\n\t\t\r\n\t\t<div style=\"clear:both;\"></div>\r\n\t\t\r\n\t</div><!-- <div class=\"center-content\"> -->\r\n\r\n</div><!-- end of <div class=\"center\"> -->\r\n\r\n<!-- sitemap area -->\r\n<div class=\"footer\">\r\n\t\t\t<style type=\"text/css\">\r\n\t\t.footer-column-head a:link, .footer-column-head a:visited {\r\n\t\tcolor: #ED7A08;\t\t\r\n\t\t}\r\n\t\t</style>\r\n\t\t<div class=\"footer-content\">\r\n\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n \t\t\t\t\t<p>\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://alerts.weather.gov\">ACTIVE ALERTS</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\" http://alerts.weather.gov\">Warnings By State</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.hpc.ncep.noaa.gov/ww.shtml\">Excessive Rainfall and Winter Weather Forecasts</a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://water.weather.gov/ahps/?current_color=flood¤t_type=all&fcst_type=obs&conus_map=d_map\">River Flooding </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov\">Latest Warnings</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.spc.noaa.gov/products/outlook/\">Thunderstorm/Tornado Outlook </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nhc.noaa.gov/\">Hurricanes </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.spc.noaa.gov/products/fire_wx/\">Fire Weather Outlooks </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.cpc.ncep.noaa.gov/products/stratosphere/uv_index/uv_alert.shtml\">UV Alerts </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.drought.gov/\">Drought </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.swpc.noaa.gov/alerts/index.html\">Space Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/nwr/\">NOAA Weather Radio </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://alerts.weather.gov/\">NWS CAP Feeds </a><br />\r\n \t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t\t\t\t\t\t<p> </p>\r\n\t\t\t\t\t<p class=\"footer-column-head\">\r\n \t\t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">PAST WEATHER</a>\r\n \t\t\t\t</p>\r\n \t\t\t\t<p>\r\n \t\t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">Past Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.cpc.ncep.noaa.gov/products/MD_index.shtml\">Climate Monitoring </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">Heating/Cooling Days </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">Monthly Temps </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">Records </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://aa.usno.navy.mil/\">Astronomical Data </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.ncdc.noaa.gov/oa/mpp/\">Certified Weather Data </a><br />\r\n \t\t\t \t\t\t\t</p>\r\n \t\t\t\t \t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n \t\t\t\t\t<p>\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://www.weather.gov/current\">CURRENT CONDITIONS</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\" http://www.weather.gov/Radar\">Radar </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.cpc.ncep.noaa.gov/products/monitoring_and_data/\">Climate Monitoring </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://water.weather.gov/ahps/\">River Levels </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://water.weather.gov/precip/\">Observed Precipitation </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/om/osd/portal.shtml\">Surface Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://weather.noaa.gov/fax/barotrop.shtml\">Upper Air </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.ndbc.noaa.gov/\">Marine and Buoy Reports </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nohrsc.nws.gov/interactive/html/map.html\">Snow Cover </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.goes.noaa.gov\">Satellite </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.swpc.noaa.gov/\">Space Weather </a><br />\r\n \t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t\t\t\t\t\t<p> </p>\r\n\t\t\t\t\t<p class=\"footer-column-head\">\r\n \t\t\t\t\t<a href=\"http://weather.gov/forecastmaps\">FORECAST</a>\r\n \t\t\t\t</p>\r\n \t\t\t\t<p>\r\n \t\t\t\t \t\t\t\t<a href=\" http://www.weather.gov/\">Local Forecast </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.spc.noaa.gov/\">Severe Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.hpc.ncep.noaa.gov/\">Current Outlook Maps </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.cpc.ncep.noaa.gov/products/Drought\">Drought </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://radar.srh.noaa.gov/fire/\">Fire Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.hpc.ncep.noaa.gov/\">Fronts/Precipitation Maps </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/forecasts/graphical/\">Current Graphical Forecast Maps </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://water.weather.gov/ahps/forecasts.php\">Rivers </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/om/marine/home.htm\">Marine </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.opc.ncep.noaa.gov/marine_areas.php\">Offshore and High Seas</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nhc.noaa.gov/\">Hurricanes </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://aviationweather.gov\">Aviation Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.cpc.ncep.noaa.gov/products/OUTLOOKS_index.html\">Climatic Outlook </a><br />\r\n \t\t\t \t\t\t\t</p>\r\n \t\t\t\t \t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://www.weather.gov/informationcenter\">INFORMATION CENTER</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\" http://www.spaceweather.gov\">Space Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.tsunami.gov\">Tsunami</a><br />\r\n \t\t\t \t\t\t\t<a href=\"https://wiki.citizen.apps.gov/nws_developers/index.php/Main_Page\">For Developers </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/skywarn/\">Storm Spotters </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/om/coop/\">Cooperative Observers </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/gis\">GIS</a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://water.weather.gov/ahps/\">Water </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://mag.ncep.noaa.gov/NCOMAGWEB/appcontroller\">Forecast Models </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.aviationweather.gov/\">Aviation </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.weather.gov/fire\">Fire Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/climate\">Climate </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/om/marine/home.htm\">Marine </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.noaawatch.gov/briefing.php\">Daily Briefing </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.economics.noaa.gov\">Facts and Figures </a><br />\r\n \t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://weather.gov/safety\">WEATHER SAFETY</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\"http://www.weather.gov/nwr/\">NOAA Weather Radio</a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.weather.gov/stormready/\">StormReady</a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/om/heat/index.shtml\">Heat </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.lightningsafety.noaa.gov/\">Lightning </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nhc.noaa.gov/prepare/\">Hurricanes </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/severeweather/index.shtml\">Thunderstorms </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/severeweather/index.shtml\">Tornadoes </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/severeweather/index.shtml\">Severe Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.ripcurrents.noaa.gov/\">Rip Currents </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/severeweather/index.shtml\">Floods </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/winter/index.shtml\">Winter Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/os/uv/\">Ultra Violet Radiation </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/airquality/\">Air Quality </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/hazstats.shtml\">Damage/Fatality/Injury Statistics </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.redcross.org/\">Red Cross </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.fema.gov/\">Federal Emergency Management Agency (FEMA) </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/brochures.shtml\">Brochures </a><br />\r\n \t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n \t\t\t\t\t<p>\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://weather.gov/news\">NEWS</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\" http://weather.gov/news\">Newsroom</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://weather.gov/socialmedia\">Social Media </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/com/weatherreadynation/calendar.html\">Events</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/brochures.shtml\">Pubs/Brochures/Booklets </a><br />\r\n \t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t\t\t\t\t\t<p> </p>\r\n\t\t\t\t\t<p class=\"footer-column-head\">\r\n \t\t\t\t\t<a href=\"http://weather.gov/education\">EDUCATION</a>\r\n \t\t\t\t</p>\r\n \t\t\t\t<p>\r\n \t\t\t\t \t\t\t\t<a href=\" http://www.economics.noaa.gov\">NOAA Economics </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.education.noaa.gov/Weather_and_Atmosphere/\">NOAA Education Resources </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/glossary/\">Glossary </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.srh.noaa.gov/srh/jetstream/\">JetStream </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/training/\">NWS Training Portal </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.lib.noaa.gov/\">NOAA Library </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/reachout/kidspage.shtml\">Play Time for Kids </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.education.noaa.gov/Weather_and_Atmosphere/\">For Students </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/om/edures.shtml\">For Teachers </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/brochures.shtml\">Brochures </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/reachout/links.shtml\">Other Links </a><br />\r\n \t\t\t \t\t\t\t</p>\r\n \t\t\t\t \t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://weather.gov/about\">ABOUT</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\"http://weather.gov/organization\">Organization </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/sp/\">Strategic Plan </a><br />\r\n \t\t\t \t\t\t\t<a href=\"https://sites.google.com/a/noaa.gov/nws-best-practices/\">For NWS Employees </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/ia/home.htm\">International </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://weather.gov/organization\">National Centers </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/tg/\">Products and Services </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/glossary/\">Glossary </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://weather.gov/contact\">Contact Us </a><br />\r\n \t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\r\n</div><!-- end of <div class=\"footer\"> -->\r\n\t\t\r\n<!-- legal footer area -->\r\n<div class=\"footer-legal\">\r\n\t\t\t<div class=\"footer-legal-content\">\r\n\t\t\t<div class=\"footer-legal-gov\">\r\n\t\t\t\t<a href=\"http://www.usa.gov\"><img src=\"/css/images/usa_gov.png\" width=\"110\" height=\"30\" /></a>\r\n\t\t\t</div> \r\n\t\t\t\r\n\t\t\t<div class=\"footer-legal-column\">\r\n \t\t\t\t<p> \r\n <a href=\"http://www.commerce.gov\">US Dept of Commerce</a><br />\r\n \t\t\t\t<a href=\"http://www.noaa.gov\">National Oceanic and Atmospheric Administration</a><br />\r\n \t\t\t\t<a href=\"http://www.weather.gov\">National Weather Service</a><br />\r\n \t\t\t\t<a href=\"http://weather.gov/lox\">Los Angeles, CA</a><br /> \t\t\t</p>\r\n \t\t\t</div>\r\n \t\t\t\r\n \t\t\t<div class=\"footer-legal-column2\">\r\n \t\t\t\t<a href=\"http://weather.gov/disclaimer\">Disclaimer</a><br />\r\n \t\t\t\t<a href=\"http://www.cio.noaa.gov/Policy_Programs/info_quality.html\">Information Quality</a><br />\r\n \t\t\t\t<a href=\"http://weather.gov/help\">Help</a><br />\r\n \t\t\t\t<a href=\"http://www.weather.gov/glossary\">Glossary</a>\r\n \t\t\t</div>\r\n\r\n \t\t\t<div class=\"footer-legal-column3\">\r\n \t\t\t\t<a href=\"http://weather.gov/privacy\">Privacy Policy</a><br />\r\n \t\t\t\t<a href=\"http://www.rdc.noaa.gov/~foia\">Freedom of Information Act (FOIA)</a><br />\r\n \t\t\t\t<a href=\"http://weather.gov/about\">About Us</a><br />\r\n \t\t\t\t<a href=\"http://weather.gov/careers\">Career Opportunities</a>\r\n \t\t\t</div>\r\n \t\t</div>\r\n\t\r\n</div><!-- end of <div class=\"footer-legal\"> -->\r\n\t\t\r\n\r\n</body>\r\n</html>"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://forecast.weather.gov/MapClick.php?textField1=34.10&textField2=-118.41","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:09 GMT","response":{"http_version":null,"headers":{"Cache-Control":["max-age=862"],"Transfer-Encoding":["chunked"],"Server":["Apache/2.2.15 (Red Hat)"],"Content-Type":["text/html; charset=UTF-8"],"Connection":["Transfer-Encoding","keep-alive"],"Date":["Sat, 09 Feb 2013 18:43:09 GMT"],"Expires":["Sat, 09 Feb 2013 18:57:31 GMT"]},"body":{"string":"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<link rel=\"schema.DC\" href=\"http://purl.org/dc/elements/1.1/\" /><title>NOAA National Weather Service</title><meta name=\"DC.title\" content=\"NOAA National Weather Service\" /><meta name=\"DC.description\" content=\"NOAA National Weather Service National Weather Service\" /><meta name=\"DC.creator\" content=\"US Department of Commerce, NOAA, National Weather Service\" /><meta name=\"DC.date.created\" scheme=\"ISO8601\" content=\"\" /><meta name=\"DC.language\" scheme=\"DCTERMS.RFC1766\" content=\"EN-US\" /><meta name=\"DC.keywords\" content=\"weather, National Weather Service\" /><meta name=\"DC.publisher\" content=\"NOAA's National Weather Service\" /><meta name=\"DC.contributor\" content=\"National Weather Service\" /><meta name=\"DC.rights\" content=\"http://www.weather.gov/disclaimer.php\" /><meta name=\"rating\" content=\"General\" /><meta name=\"robots\" content=\"index,follow\" />\r\n\r\n<link href=\"/css/weatherstyle.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<link href=\"/css/template.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<link href=\"/css/myfcst.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/ForecastSearch.css\" />\r\n<link href=\"/css/pointforecast.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<script type=\"text/javascript\" src=\"/js/jquery-1.6.4.min.js\"></script>\r\n<script type=\"text/javascript\" src=\"/js/jquery.hoverIntent.minified.js\"></script>\r\n<script type=\"text/javascript\" src=\"http://maps.googleapis.com/maps/api/js?v=3&client=gme-noaa&channel=NWS...PointClick&sensor=false\"></script>\r\n<script type=\"text/javascript\" src=\"/js/ForecastSearch.js\"></script>\r\n\r\n<script type=\"text/javascript\">\r\nfunction MM_jumpMenu(targ,selObj,restore)\r\n{ \r\n\t//v3.0\r\n\teval(targ+\".location='\"+selObj.options[selObj.selectedIndex].value+\"'\");\r\n\tif (restore) selObj.selectedIndex=0;\r\n}\r\n\r\n</script>\r\n<script type=\"text/javascript\" src=\"/js/topNavMenu.js\"></script>\r\n\r\n</head>\r\n\r\n<body>\r\n\r\n\t\t<div class=\"header\">\r\n\t\t\t<div class=\"header-content\">\r\n\t\t\t<a href=\"http://www.weather.gov\" class=\"header-nws\"><img src=\"/css/images/header.png\" /></a>\r\n\t\t\t<a href=\"http://www.commerce.gov\" class=\"header-doc\"><img src=\"/css/images/header_doc.png\" /></a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\t\t<div class=\"header-shadow\">\r\n\t\t\t<div class=\"header-shadow-content\"></div>\r\n\t\t</div>\r\n\t\r\n\r\n<div class=\"center\">\r\n\r\n\t <div class=\"content\">\r\n <div class=\"topnav\">\r\n <ul id=\"topnav\">\r\n <li>\r\n <script type=\"text/javascript\">\r\n function goBack()\r\n {\r\n if (document.referrer.toLowerCase().indexOf(\"weather.gov\") != -1)\r\n {\r\n history.back();\r\n }\r\n else\r\n {\r\n document.location.href = \"http://www.weather.gov\";\r\n }\r\n }\r\n </script>\r\n <div class=\"topMenuNavList home\">\r\n <a href=\"#\" onclick=\"goBack();\">HOME</a>\r\n </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/forecastmaps\">FORECAST</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"/\">Local</a> </li> <li> <a href=\"http://graphical.weather.gov\">Graphical</a> </li> <li> <a href=\"http://www.aviationweather.gov/\">Aviation</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/marine/home.htm\">Marine</a> </li> <li> <a href=\"http://water.weather.gov/ahps/\">Rivers and Lakes</a> </li> <li> <a href=\"http://www.nhc.noaa.gov/\">Hurricanes</a> </li> <li> <a href=\"http://www.spc.noaa.gov/\">Severe Weather</a> </li> <li> <a href=\"http://www.srh.noaa.gov/ridge2/fire/\">Fire Weather</a> </li> <li> <a href=\"http://aa.usno.navy.mil/data/docs/RS_OneDay.php\">Sun/Moon</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Long Range Forecasts</a> </li> <li> <a href=\"http://www.cpc.ncep.noaa.gov\">Climate Prediction</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.nws.noaa.gov/climate\">PAST WEATHER</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Past Weather</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Heating/Cooling Days</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Monthly Temperatures</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Records</a> </li> <li> <a href=\"http://aa.usno.navy.mil/\">Astronomical Data</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/safety\">WEATHER SAFETY</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"http://www.nws.noaa.gov/com/weatherreadynation\">Weather-Ready Nation</a> </li> <li> <a href=\"http://www.nws.noaa.gov/nwr/\">NOAA Weather Radio</a> </li> <li> <a href=\"http://www.nws.noaa.gov/stormready/\">StormReady</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/heat/index.shtml\">Heat</a> </li> <li> <a href=\"http://www.lightningsafety.noaa.gov/\">Lightning</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/hurricane/index.shtml\">Hurricanes</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/severeweather/index.shtml\">Thunderstorms, Tornadoes, Floods</a> </li> <li> <a href=\"http://www.ripcurrents.noaa.gov/\">Rip Currents</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/winter/index.shtml\">Winter Weather</a> </li> <li> <a href=\"http://www.nws.noaa.gov/os/uv/\">Ultra Violet Radiation</a> </li> <li> <a href=\"http://www.nws.noaa.gov/airquality/\">Air Quality</a> </li> <li> <a href=\"http://www.nws.noaa.gov/os/water/tadd/\">Turn Around, Don't Drown</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/hazstats.shtml\">Damage/Fatality/Injury Statistics</a> </li> <li> <a href=\"http://www.redcross.org/\">Red Cross</a> </li> <li> <a href=\"http://www.fema.gov\">Federal Emergency Management Agency (FEMA)</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/brochures.shtml\">Brochures</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/informationcenter\">INFORMATION CENTER</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"http://www.noaawatch.gov/briefing.php\">Daily Briefing </a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/marine/home.htm\">Marine</a> </li> <li> <a href=\"http://www.nws.noaa.gov/climate/\">Climate </a> </li> <li> <a href=\"http://www.spaceweather.gov\">Space Weather</a> </li> <li> <a href=\"http://radar.srh.noaa.gov/fire/\">Fire Weather</a> </li> <li> <a href=\"http://www.aviationweather.gov/\">Aviation</a> </li> <li> <a href=\"http://www.tsunami.gov\">Tsunami</a> </li> <li> <a href=\"http://mag.ncep.noaa.gov/NCOMAGWEB/appcontroller\">Forecast Models</a> </li> <li> <a href=\"http://water.weather.gov/ahps/\">Water</a> </li> <li> <a href=\"http://www.nws.noaa.gov/gis\">GIS</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/coop/\">Cooperative Observers</a> </li> <li> <a href=\"http://www.nws.noaa.gov/skywarn/\">Storm Spotters</a> </li> <li> <a href=\"http://wiki.citizen.apps.gov/nws_developers/index.php/Main_Page\">For Developers</a> </li> <li> <a href=\"http://economics.noaa.gov\">Facts and Figures</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/news\">NEWS</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"/news\">NWS News</a> </li> <li> <a href=\"http://www.nws.noaa.gov/com/weatherreadynation/calendar.html\">Events</a> </li> <li> <a href=\"http://www.weather.gov/socialmedia\">Social Media</a> </li> <li> <a href=\"http://www.nws.noaa.gov/om/brochures.shtml\">Pubs/Brochures/Booklets </a> </li> <li> <a href=\"http://www.nws.noaa.gov/pa/nws_contacts.php\">NWS Media Contacts</a> </li></ul> </div>\r\n </li>\r\n <li>\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/search\">SEARCH</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul class=\"no-links\">\r\n <li><!-- Begin search code -->\r\n <div id=\"site-search\">\r\n <form method=\"get\" action=\"http://search.usa.gov/search\" style=\"margin-bottom: 0; margin-top: 0;\">\r\n <input type=\"hidden\" name=\"v:project\" value=\"firstgov\" /> \r\n <label for=\"query\">Search For</label> \r\n <input type=\"text\" name=\"query\" id=\"query\" size=\"12\" /> \r\n <input type=\"submit\" value=\"Go\" />\r\n <p>\r\n <input type=\"radio\" name=\"affiliate\" checked=\"checked\" value=\"nws.noaa.gov\" id=\"nws\" /> \r\n <label for=\"nws\" class=\"search-scope\">NWS</label> \r\n <input type=\"radio\" name=\"affiliate\" value=\"noaa.gov\" id=\"noaa\" /> \r\n <label for=\"noaa\" class=\"search-scope\">All NOAA</label>\r\n </p>\r\n </form>\r\n </div>\r\n </li>\r\n </ul> </div>\r\n </li>\r\n <li class=\"last\">\t\r\n <div class=\"topMenuNavList section-link\">\r\n \t<a href=\"http://www.weather.gov/about\">ABOUT</a> </div>\r\n <div style=\"opacity: 0;\" class=\"sub\">\r\n <ul> <li> <a href=\"http://www.weather.gov/about\">About NWS</a> </li> <li> <a href=\"http://www.weather.gov/organization\">Organization</a> </li> <li> <a href=\"http://www.nws.noaa.gov/sp\">Strategic Plan</a> </li> <li> <a href=\"https://sites.google.com/a/noaa.gov/nws-best-practices/\">For NWS Employees</a> </li> <li> <a href=\"http://www.nws.noaa.gov/ia/home.htm\">International</a> </li> <li> <a href=\"http://www.weather.gov/organization\">National Centers</a> </li> <li> <a href=\"http://www.nws.noaa.gov/tg\">Products and Services</a> </li> <li> <a href=\"http://www.weather.gov/contact\">Contact Us</a> </li> <li> <a href=\"http://www.nws.noaa.gov/glossary\">Glossary</a> </li></ul> </div>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n \r\n\t\r\n\t<div class=\"center-content\">\r\n\t\t\r\n\t\t\t\t<div class=\"one-sixth-first\">\r\n\t\t\t<div id=\"forecast-lookup\">\r\n\t\t\t\t<form name=\"getForecast\" id=\"getForecast\" action=\"http://forecast.weather.gov/zipcity.php\" method=\"get\">\r\n <label for=\"inputstring\">Local forecast by <br>\"City, St\" or ZIP code</label>\r\n <input id=\"inputstring\" name=\"inputstring\" type=\"text\" value=\"Enter location ...\" onclick=\"this.value=''\" />\r\n <input name=\"btnSearch\" id=\"btnSearch\" type=\"submit\" value=\"Go\" />\r\n <div id=\"txtError\">\r\n <div id=\"errorNoResults\" style=\"display:none;\">Sorry, the location you searched for was not found. Please try another search.</div>\r\n <div id=\"errorMultipleResults\" style=\"display:none\">Multiple locations were found. Please select one of the following:</div>\r\n <div id=\"errorChoices\" style=\"display:none\"></div>\r\n <input id=\"btnCloseError\" type=\"button\" value=\"Close\" style=\"display:none\" />\r\n </div>\r\n <div id=\"txtHelp\"><a style=\"text-decoration: underline;\" href=\"javascript:void(window.open('http://weather.gov/ForecastSearchHelp.html','locsearchhelp','status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=1,scrollbars=1,height=500,width=530').focus());\">Location Help</a></div>\r\n </form>\r\n\r\n\t\t\t</div><!-- <div id=\"forecast-lookup\"> -->\r\n\t\t</div><!-- <div class=\"one-sixth-first\"> -->\r\n\t\r\n\t\t<div class=\"five-sixth-last\"><div id=\"topnews\"><h1 style='font-size:11pt;'>Major Winter Storm Continues to Impact Northeast</h1><p>The major winter storm that has brought more than two feet of snow strong winds across parts of the Northeast and New England continues to impact the region Saturday morning. Heavy snow, along with strong wind gusts, are expected to continue across much of New England early Saturday morning, before beginning to slowly taper off from west to east later in the morning and into the afternoon. <br /><a href='http://1.usa.gov/11qoD8L' target='_blank'>Read More...</a></p></div></div>\r\n\t\t\r\n \t<script language=javascript>document.title =' 7-Day Forecast for Latitude 34.1\\u00B0N and Longitude 118.42\\u00B0W (Elev. 774 ft)';</script><script type=\"text/javascript\" src=\"JavaScript/google_map.js\"></script><script type=\"text/javascript\"> var smap=1; var gmsite = 'lox'; var gmscale =10; var gmsi=0; var gmlng=''; var gmtype = 'text';</script><div class=\"one-fourth-last\"></div><div class=\"div-full locationHeader\">\n\t<div class=\"five-sixth-first point-forecast-area-title\">4 Miles W Hollywood CA</div>\n\t<div class=\"one-sixth-last locationheader-options\"><a href=\"http://forecast.weather.gov/MapClick.php?lat=34.10&lon=-118.41&FcstType=textr&unit=0&lg=sp\"><b>En Español</b></a></div>\n</div>\n<div class=\"full-width-borderbottom current-conditions\">\n\t<div class=\"one-third-first\">\n\t\t<div class=\"div-half\">\n\t\t\t<p class=\"feature\"><img src=\"/images/wtf/large/sct.png\" alt=\"\" width=\"134\" height=\"134\" /></p>\n\t\t</div>\n\t\t<div class=\"div-half-right\">\n\t\t\t<p class=\"myforecast-current\">Fair</p>\n\t\t\t<p class=\"myforecast-current-lrg\">52°F</p>\n\t\t\t<p><span class=\"myforecast-current-sm\">11°C</span></p>\n\t\t</div>\n\t</div>\n\t<div class=\"one-third-first\">\n\t\t<ul class=\"current-conditions-detail\">\n\t\t\t<li><span class=\"label\">Humidity</span>59%</li>\n\t\t\t<li><span class=\"label\">Wind Speed</span>E 5 MPH</li>\n\t\t\t<li><span class=\"label\">Barometer</span>30.05 in (1017.7 mb)</li>\n\t\t\t<li><span class=\"label\">Dewpoint</span>38°F (3°C)</li>\n\t\t\t<li><span class=\"label\">Visibility</span>10.00 mi</li>\n\t\t</ul>\n<p class=\"current-conditions-timestamp\">Last Update on 09 Feb 9:51 am PST </p><br>\t</div>\n\t<div class=\"one-third-last\">\n\t\t<p style=\"font-size: 8pt;\">Current conditions at</p>\n\t\t<p class=\"current-conditions-location\">Santa Monica, Santa Monica Municipal Airport (KSMO)</p>\n\t\t<p> Lat: 34.01583 Lon: -118.45139 Elev: 174ft.<br /></p>\n\t\t<div class=\"current-conditions-extra\">\n\t\t\t<p><a href=\"http://www.wrh.noaa.gov/total_forecast/other_obs.php?wfo=lox&zone=CAZ041\">More Local Wx</a> | <a href=\"http://www.wrh.noaa.gov/mesowest/getobext.php?wfo=lox&sid=KSMO&num=72&raw=0\">3 Day History</a> | <a href=http://mobile.weather.gov/index.php?lat=34.01583&lon=-118.45139>Mobile Weather</a></p>\n\t\t</div>\n<!-- AddThis Button BEGIN -->\n\t\t<div class=\"addthis_toolbox addthis_default_style \">\n\t\t\t<a href=\"http://www.addthis.com/bookmark.php?v=250&pubid=xa-4b05b2d91f18c9cc\" class=\"addthis_button_compact\">Share</a>\n\t\t\t<span class=\"addthis_separator\">|</span>\n\t\t\t<a class=\"addthis_button_preferred_1\"></a>\n\t\t\t<a class=\"addthis_button_preferred_2\"></a>\n\t\t\t<a class=\"addthis_button_preferred_3\"></a>\n\t\t\t<a class=\"addthis_button_preferred_4\"></a>\n\t\t\t<a class=\"addthis_button_preferred_5\"></a>\n\t\t</div>\n\t\t<script type=\"text/javascript\" src=\"http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4b05b2d91f18c9cc\"></script>\n<!-- AddThis Button END -->\n\t</div>\n</div>\n<div class=\"partial-width-borderbottom point-forecast-icons\">\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Today<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 55 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Tonight<br><br></p>\n <p><img src=\"/images/wtf/medium/nfew.png\" width=\"86\" height=\"86\" alt=\"Mostly Clear\" title=\"Mostly Clear\" /></p>\n <p>Mostly<br>Clear<br></p>\n <p class=\"point-forecast-icons-low\">Low: 42 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Sunday<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 58 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Sunday<br>Night</p>\n <p><img src=\"/images/wtf/medium/nfew.png\" width=\"86\" height=\"86\" alt=\"Mostly Clear\" title=\"Mostly Clear\" /></p>\n <p>Mostly<br>Clear<br></p>\n <p class=\"point-forecast-icons-low\">Low: 44 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Monday<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 60 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Monday<br>Night</p>\n <p><img src=\"/images/wtf/medium/nfew.png\" width=\"86\" height=\"86\" alt=\"Mostly Clear\" title=\"Mostly Clear\" /></p>\n <p>Mostly<br>Clear<br></p>\n <p class=\"point-forecast-icons-low\">Low: 45 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Tuesday<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 64 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Tuesday<br>Night</p>\n <p><img src=\"/images/wtf/medium/nfew.png\" width=\"86\" height=\"86\" alt=\"Mostly Clear\" title=\"Mostly Clear\" /></p>\n <p>Mostly<br>Clear<br></p>\n <p class=\"point-forecast-icons-low\">Low: 46 °F</p>\n </div>\n <div class=\"one-ninth-first\">\n <p class=\"txt-ctr-caps\">Wednesday<br><br></p>\n <p><img src=\"/images/wtf/medium/few.png\" width=\"86\" height=\"86\" alt=\"Sunny\" title=\"Sunny\" /></p>\n <p>Sunny<br><br></p>\n <p class=\"point-forecast-icons-high\">High: 66 °F</p>\n </div>\n</div>\n<div class=\"partial-width-borderbottom\">\n\t<div class=\"two-third-first point-forecast-7-day\">\n<div class=\"hazardous-conditions\">\n<h1>Hazardous Weather Conditions</h1>\n<ul><li><a href=\"showsigwx.php?warnzone=CAZ041&warncounty=CAC037&firewxzone=CAZ241&local_place1=&product1=Hazardous+Weather+Outlook\">Hazardous Weather Outlook</a></li>\n</ul>\n</div>\n\t\t<h1>7-DAY FORECAST</h1>\n <ul class=\"point-forecast-7-day\">\n <li class=\"row-odd\"><span class=\"label\">Today</span> Sunny, with a high near 55. South wind around 5 mph. </li>\n <li class=\"row-even\"><span class=\"label\">Tonight</span> Mostly clear, with a low around 42. South wind around 5 mph becoming east after midnight. </li>\n <li class=\"row-odd\"><span class=\"label\">Sunday</span> Sunny, with a high near 58. Calm wind becoming south around 5 mph in the morning. </li>\n <li class=\"row-even\"><span class=\"label\">Sunday Night</span> Mostly clear, with a low around 44. South wind around 5 mph becoming north in the evening. </li>\n <li class=\"row-odd\"><span class=\"label\">Monday</span> Sunny, with a high near 60. North northeast wind around 5 mph becoming calm in the morning. </li>\n <li class=\"row-even\"><span class=\"label\">Monday Night</span> Mostly clear, with a low around 45.</li>\n <li class=\"row-odd\"><span class=\"label\">Tuesday</span> Sunny, with a high near 64.</li>\n <li class=\"row-even\"><span class=\"label\">Tuesday Night</span> Mostly clear, with a low around 46.</li>\n <li class=\"row-odd\"><span class=\"label\">Wednesday</span> Sunny, with a high near 66.</li>\n <li class=\"row-even\"><span class=\"label\">Wednesday Night</span> Mostly clear, with a low around 48.</li>\n <li class=\"row-odd\"><span class=\"label\">Thursday</span> Sunny, with a high near 70.</li>\n <li class=\"row-even\"><span class=\"label\">Thursday Night</span> Mostly clear, with a low around 49.</li>\n <li class=\"row-odd\"><span class=\"label\">Friday</span> Sunny, with a high near 73.</li>\n </ul>\n\t\t<p> </p>\n\t\t<h1>ADDITIONAL FORECASTS AND INFORMATION</h1>\n\t\t<p class=\"myforecast-location\"><a href=\"MapClick.php?zoneid=CAZ041\">Zone Area Forecast for Los Angeles County Coast including Downtown Los Angeles, CA</a></p>\n\t\t<div class=\"div-full\">\n\t\t\t<p> </p>\n\t\t\t<div class=\"div-third\"><a href=\"http://forecast.weather.gov/product.php?site=NWS&issuedby=LOX&product=AFD&format=CI&version=1&glossary=1\">Forecast Discussion</a><br />\n\t\t\t\t<a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=text&TextType=2\">Printable Forecast</a><br />\n\t\t\t\t<a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=text&TextType=1\">Text Only Forecast</a></div>\n\t\t\t<div class=\"div-third\"><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=graphical\">Hourly Weather Graph</a><br />\n\t\t\t\t<a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=digital\">Tabular Forecast</a><br />\n\t\t\t\t<a href=\"afm/PointClick.php?lat=34.10000&lon=-118.41000\">Quick Forecast</a></div>\n\t\t\t<div class=\"div-third\"><a href=\"http://weather.gov/aq/probe_aq_data.php?latitude=34.10000&longitude=-118.41000\">Air Quality Forecasts</a><br/><a href=\"http://forecast.weather.gov/MapClick.php?lat=34.10&lon=-118.41&FcstType=text&unit=1&lg=en\">International System of Units</a><br />\n\t\t\t\t<a href=\"http://www.srh.weather.gov/srh/jetstream/webweather/pinpoint_max.htm\">About Point Forecasts</a><br />\n\t\t\t<a href=\"http://www.wrh.noaa.gov/forecast/wxtables/index.php?lat=34.10000&lon=-118.41000\">Forecast Weather Table Interface</a>\n\t\t\t</div>\n\t\t</div>\n\t\t<div class=\"div-full\">\n\t\t\t<div class=\"div-third\"><br>\n\t\t\t<a href=\"http://www.wrh.noaa.gov/mesowest/mwmap.php?map=lox\" target=\"_self\">Observation Map (Regional)</a><br />\n\t\t\t<a href=\"http://www.wrh.noaa.gov/mesowest/mwmap.php?map=la\" target=\"_self\">Observation Map (Los Angeles)</a><br />\n\t\t\t</div>\n\t\t\t<div class=\"div-third\"><br>\n\t\t\t<a href=\"http://www.wrh.noaa.gov/warnings.php?wfo=lox\" target=\"_self\">Warnings</a><br />\n\t\t\t<a href=\"http://www.wrh.noaa.gov/forecasts/graphical/sectors/lox.php\" target=\"_self\">Experimental Graphical Forecasts</a><br />\n\t\t\t</div>\n\t\t\t<div class=\"div-third\"><br>\n\t\t\t<a href=\"http://www.wrh.noaa.gov/lox/getprod.php?pil=qps&sid=lox&format=pre\" target=\"_self\">Quantitative Precipitation Forecast</a><br />\n\t\t\t<a href=\"http://www.weather.gov/climate/index.php?wfo=lox\" target=\"_self\">Climatology</a><br />\n\t\t\t</div>\n\t\t\t<p> </p>\n\t\t</div>\n\t</div>\n\t<div class=\"one-third-last point-forecast-right\">\n\t\t<div id=\"point-forecast-info\">\n\t\t\t<h2 class=\"wfo-label\"><a href=http://www.wrh.noaa.gov/lox>NWS Los Angeles/Oxnard, CA</a></h2>\n\t\t\t<ul class=\"point-forecast-info\">\n\t\t\t\t<li><span class=\"label\">Point Forecast:</span> 4 Miles W Hollywood CA<br>34.1°N 118.42°W (Elev. 774 ft)</li>\n\t\t\t\t<li><span class=\"label\"><a href=\"http://www.weather.gov/glossary/index.php?word=Last+update\">Last Update</a>:</span> 10:21 am PST Feb 9, 2013</li>\n\t\t\t\t<li><span class=\"label\"><a href=\"http://www.weather.gov/glossary/index.php?word=forecast+valid+for\">Forecast Valid</a>:</span> 11am PST Feb 9, 2013-6pm PST Feb 15, 2013<p><a href=\"http://forecast.weather.gov/product.php?site=NWS&issuedby=LOX&product=AFD&format=CI&version=1&glossary=1\">Forecast Discussion</a></p>\n\t\t\t\t<p class=\"forecast-downloads\"><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=kml\"><img src=\"/images/wtf/kml_badge.png\" width=\"45\" height=\"17\" alt=\"Get as KML\" /></a> <a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=dwml\"><img src=\"/images/wtf/xml_badge.png\" width=\"45\" height=\"17\" alt=\"Get as XML\" /></a></p>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t</div>\n<div class='point-forecast-map'><div class='point-forecast-map-header'>Click Map for Forecast<div class='disclaimer'><a href='http://www.weather.gov/credits.php#googlemapping'>Disclaimer</a></div></div><form name=\"littleform\" method=\"post\" action=\"#\"><div id=\"gmap\"><noscript><center><br><br><b>Map function requires Javascript and a compatible browser.</b></center></noscript></div><div class=\"point-forecast-map-footer\"><img src=\"/images/wtf/maplegend.gif\" width=\"240\" height=\"16\" alt=\"Map Legend\"><p><strong>Lat/Lon:</strong> 34.1°N 118.42°W <strong>Elevation:</strong> 774 ft</p></div></form></div>\t\t<div id=\"radar\">\n\t\t\t<h2>RADAR & SATELLITE IMAGES</h2>\n\t\t\t<div class=\"div-full\"><a href=\"http://radar.weather.gov/radar.php?rid=vtx&product=N0R&overlay=11101111&loop=no\"><img src=\"http://radar.weather.gov/Thumbs/VTX_Thumb.gif\" class=\"radar-thumb\" alt=\"Link to Local Radar Data\" title=\"Link to Local Radar Data\"></a> <a href=\"http://www.wrh.noaa.gov/satellite/?wfo=lox\"><img src=\"http://sat.wrh.noaa.gov/satellite/4km/WR/IR4.thumbnail.jpg\" class=\"satellite-thumb\" alt=\"Link to Satellite Data\" title=\"Link to Satellite Data\"></a></div>\n\t\t</div>\n\t\t<div id=\"hourly\">\n\t\t\t<h2>HOURLY WEATHER GRAPH </h2>\n\t\t\t<p class=\"feature\"><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=graphical\"><img src=\"/images/wtf/medium/hourlyweather.png\" width=\"300\" height=\"158\" /></a></p>\n\t\t</div>\n\t\t<div id=\"ndfd\">\n\t\t\t<h2>NATIONAL DIGITAL FORECAST DATABASE</h2>\n\t\t\t<p><a href=\"http://www.weather.gov/forecasts/graphical/sectors/pacsouthwest.php?element=MaxT\"><img src=\"http://www.weather.gov/forecasts/graphical/images/thumbnail/latest_MaxMinT_pacsouthwest_thumbnail.png\" border=\"0\" alt=\"National Digital Forecast Database Maximum Temperature Forecast\" title=\"National Digital Forecast Database Maximum Temperature Forecast\" width=\"147\" height=\"150\"></a> <a href=\"http://www.weather.gov/forecasts/graphical/sectors/pacsouthwest.php?element=Wx\"><img src=\"http://www.weather.gov/forecasts/graphical/images/thumbnail/latest_Wx_pacsouthwest_thumbnail.png\" border=\"0\" alt=\"National Digital Forecast Database Weather Element Forecast\" title=\"National Digital Forecast Database Weather Element Forecast\" width=\"147\" height=\"150\"></a></p>\n\t\t</div>\n\t</div>\n</div>\n<script language='javascript'>window.load = load_google_map(34.10000, -118.41000, 34.084, -118.432, 34.106, -118.437, 34.11, -118.41, 34.088, -118.405, 11);</script>\r\n\r\n\t\t<!-- <div class=\"full-width-first\">\r\n\t\t\t\t\t <div class=\"full-width-first communication-links\">\r\n \t<div class =\"one-third-first nopad\">\r\n \t<div class=\"myforecast-current\" style=\"float:left;padding:0px 20px 0px 0px;\">\r\n \t<a style=\"text-decoration:none;\" href=\"http://twitter.com/usNWSgov\" target=\"_blank\">\r\n \t\t<img src=\"/css/images/twitter.png\" width=\"16\" height=\"16\" /> Follow us on Twitter\r\n \t</a>\r\n \t</div>\r\n \t<div class=\"myforecast-current\" style=\"float:left;padding:0px 20px 0px 0px;\">\r\n \t<a style=\"text-decoration:none;\" href=\"http://www.facebook.com/US.National.Weather.Service.gov\" target=\"_blank\">\r\n \t\t<img src=\"/css/images/fb.png\" width=\"16\" height=\"16\" /> Follow us on Facebook\r\n \t</a>\r\n </div>\r\n \t </div>\r\n <div class =\"one-half-last nopad\">\r\n \t<span class=\"txt-rt myforecast-current\">\r\n \t<div class=\"myforecast-current\" style=\"float:left;padding:0px 20px 0px 0px;\">\r\n \t\t<a href=\"/rss_page.php?site_name=nws\" target=\"_blank\" style=\"text-decoration:none;font-size:11px;\">\r\n\t\t\t\t\t\t\t<img src=\"/css/images/rss.png\" width=\"16\" height=\"16\" /> NWS RSS Feed\r\n\t\t\t\t\t\t</a>\r\n \t</div>\r\n \t<a href=\"http://www.weather.gov/cgi-bin/nwsexit.pl?url=https://service.govdelivery.com/service/multi_subscribe.html%3Fcode=USNWS\" class=\"icon\">\r\n \t\t\t\t<img src=\"/css/images/email.png\" title=\"Sign Up For Email Notifications\" alt=\"Sign Up For Email Notifications\" width=\"16\" height=\"16\" />\r\n \t\t\t</a> \r\n\t\t\t\t\r\n\t\t\t\t\t<form action=\"https://public.govdelivery.com/accounts/USNWS/subscribers/qualify\" class=\"govdelivery\" method=\"get\"> \r\n \t\t\t<label for=\"email\" style=\"display:none;\">Sign up for Email Notifications</label>\r\n \t\t\t<input id=\"email\" name=\"email\" type=\"text\" value=\"Sign Up for Email Notifications\" onFocus=\"this.value='';\"/>\r\n \t\t\t<input class=\"form_button\" name=\"commit\" type=\"submit\" value=\"Subscribe\" /> \r\n\t\t\t\t\t</form>\r\n \t</span>\r\n </div>\r\n </div>\r\n \t\t<div style=\"clear:both;\"></div>\r\n\t\r\n\t\t</div>\r\n\t\t-->\r\n\t\t\r\n\t\t<div style=\"clear:both;\"></div>\r\n\t\t\r\n\t</div><!-- <div class=\"center-content\"> -->\r\n\r\n</div><!-- end of <div class=\"center\"> -->\r\n\r\n<!-- sitemap area -->\r\n<div class=\"footer\">\r\n\t\t\t<style type=\"text/css\">\r\n\t\t.footer-column-head a:link, .footer-column-head a:visited {\r\n\t\tcolor: #ED7A08;\t\t\r\n\t\t}\r\n\t\t</style>\r\n\t\t<div class=\"footer-content\">\r\n\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n \t\t\t\t\t<p>\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://alerts.weather.gov\">ACTIVE ALERTS</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\" http://alerts.weather.gov\">Warnings By State</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.hpc.ncep.noaa.gov/ww.shtml\">Excessive Rainfall and Winter Weather Forecasts</a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://water.weather.gov/ahps/?current_color=flood¤t_type=all&fcst_type=obs&conus_map=d_map\">River Flooding </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov\">Latest Warnings</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.spc.noaa.gov/products/outlook/\">Thunderstorm/Tornado Outlook </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nhc.noaa.gov/\">Hurricanes </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.spc.noaa.gov/products/fire_wx/\">Fire Weather Outlooks </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.cpc.ncep.noaa.gov/products/stratosphere/uv_index/uv_alert.shtml\">UV Alerts </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.drought.gov/\">Drought </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.swpc.noaa.gov/alerts/index.html\">Space Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/nwr/\">NOAA Weather Radio </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://alerts.weather.gov/\">NWS CAP Feeds </a><br />\r\n \t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t\t\t\t\t\t<p> </p>\r\n\t\t\t\t\t<p class=\"footer-column-head\">\r\n \t\t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">PAST WEATHER</a>\r\n \t\t\t\t</p>\r\n \t\t\t\t<p>\r\n \t\t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">Past Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.cpc.ncep.noaa.gov/products/MD_index.shtml\">Climate Monitoring </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">Heating/Cooling Days </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">Monthly Temps </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/climate/\">Records </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://aa.usno.navy.mil/\">Astronomical Data </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.ncdc.noaa.gov/oa/mpp/\">Certified Weather Data </a><br />\r\n \t\t\t \t\t\t\t</p>\r\n \t\t\t\t \t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n \t\t\t\t\t<p>\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://www.weather.gov/current\">CURRENT CONDITIONS</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\" http://www.weather.gov/Radar\">Radar </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.cpc.ncep.noaa.gov/products/monitoring_and_data/\">Climate Monitoring </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://water.weather.gov/ahps/\">River Levels </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://water.weather.gov/precip/\">Observed Precipitation </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/om/osd/portal.shtml\">Surface Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://weather.noaa.gov/fax/barotrop.shtml\">Upper Air </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.ndbc.noaa.gov/\">Marine and Buoy Reports </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nohrsc.nws.gov/interactive/html/map.html\">Snow Cover </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.goes.noaa.gov\">Satellite </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.swpc.noaa.gov/\">Space Weather </a><br />\r\n \t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t\t\t\t\t\t<p> </p>\r\n\t\t\t\t\t<p class=\"footer-column-head\">\r\n \t\t\t\t\t<a href=\"http://weather.gov/forecastmaps\">FORECAST</a>\r\n \t\t\t\t</p>\r\n \t\t\t\t<p>\r\n \t\t\t\t \t\t\t\t<a href=\" http://www.weather.gov/\">Local Forecast </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.spc.noaa.gov/\">Severe Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.hpc.ncep.noaa.gov/\">Current Outlook Maps </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.cpc.ncep.noaa.gov/products/Drought\">Drought </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://radar.srh.noaa.gov/fire/\">Fire Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.hpc.ncep.noaa.gov/\">Fronts/Precipitation Maps </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/forecasts/graphical/\">Current Graphical Forecast Maps </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://water.weather.gov/ahps/forecasts.php\">Rivers </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/om/marine/home.htm\">Marine </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.opc.ncep.noaa.gov/marine_areas.php\">Offshore and High Seas</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nhc.noaa.gov/\">Hurricanes </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://aviationweather.gov\">Aviation Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.cpc.ncep.noaa.gov/products/OUTLOOKS_index.html\">Climatic Outlook </a><br />\r\n \t\t\t \t\t\t\t</p>\r\n \t\t\t\t \t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://www.weather.gov/informationcenter\">INFORMATION CENTER</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\" http://www.spaceweather.gov\">Space Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.tsunami.gov\">Tsunami</a><br />\r\n \t\t\t \t\t\t\t<a href=\"https://wiki.citizen.apps.gov/nws_developers/index.php/Main_Page\">For Developers </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/skywarn/\">Storm Spotters </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/om/coop/\">Cooperative Observers </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/gis\">GIS</a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://water.weather.gov/ahps/\">Water </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://mag.ncep.noaa.gov/NCOMAGWEB/appcontroller\">Forecast Models </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.aviationweather.gov/\">Aviation </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.weather.gov/fire\">Fire Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/climate\">Climate </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/om/marine/home.htm\">Marine </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.noaawatch.gov/briefing.php\">Daily Briefing </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.economics.noaa.gov\">Facts and Figures </a><br />\r\n \t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://weather.gov/safety\">WEATHER SAFETY</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\"http://www.weather.gov/nwr/\">NOAA Weather Radio</a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.weather.gov/stormready/\">StormReady</a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/om/heat/index.shtml\">Heat </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.lightningsafety.noaa.gov/\">Lightning </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nhc.noaa.gov/prepare/\">Hurricanes </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/severeweather/index.shtml\">Thunderstorms </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/severeweather/index.shtml\">Tornadoes </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/severeweather/index.shtml\">Severe Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.ripcurrents.noaa.gov/\">Rip Currents </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/severeweather/index.shtml\">Floods </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/winter/index.shtml\">Winter Weather </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/os/uv/\">Ultra Violet Radiation </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/airquality/\">Air Quality </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/hazstats.shtml\">Damage/Fatality/Injury Statistics </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.redcross.org/\">Red Cross </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.fema.gov/\">Federal Emergency Management Agency (FEMA) </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/brochures.shtml\">Brochures </a><br />\r\n \t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n \t\t\t\t\t<p>\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://weather.gov/news\">NEWS</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\" http://weather.gov/news\">Newsroom</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://weather.gov/socialmedia\">Social Media </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://www.nws.noaa.gov/com/weatherreadynation/calendar.html\">Events</a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/brochures.shtml\">Pubs/Brochures/Booklets </a><br />\r\n \t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t\t\t\t\t\t<p> </p>\r\n\t\t\t\t\t<p class=\"footer-column-head\">\r\n \t\t\t\t\t<a href=\"http://weather.gov/education\">EDUCATION</a>\r\n \t\t\t\t</p>\r\n \t\t\t\t<p>\r\n \t\t\t\t \t\t\t\t<a href=\" http://www.economics.noaa.gov\">NOAA Economics </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.education.noaa.gov/Weather_and_Atmosphere/\">NOAA Education Resources </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/glossary/\">Glossary </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.srh.noaa.gov/srh/jetstream/\">JetStream </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/training/\">NWS Training Portal </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.lib.noaa.gov/\">NOAA Library </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/reachout/kidspage.shtml\">Play Time for Kids </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.education.noaa.gov/Weather_and_Atmosphere/\">For Students </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.nws.noaa.gov/om/edures.shtml\">For Teachers </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/brochures.shtml\">Brochures </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/om/reachout/links.shtml\">Other Links </a><br />\r\n \t\t\t \t\t\t\t</p>\r\n \t\t\t\t \t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"footer-column\" style=\"padding:10px 10px;\">\r\n\t\t\t\t\t<span class=\"footer-column-head\">\r\n\t\t\t\t\t\t<a href=\"http://weather.gov/about\">ABOUT</a>\r\n\t\t\t\t\t</span><br />\r\n\t\t\t\t\t \t\t\t\t<a href=\"http://weather.gov/organization\">Organization </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/sp/\">Strategic Plan </a><br />\r\n \t\t\t \t\t\t\t<a href=\"https://sites.google.com/a/noaa.gov/nws-best-practices/\">For NWS Employees </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/ia/home.htm\">International </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://weather.gov/organization\">National Centers </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/tg/\">Products and Services </a><br />\r\n \t\t\t \t\t\t\t<a href=\" http://www.weather.gov/glossary/\">Glossary </a><br />\r\n \t\t\t \t\t\t\t<a href=\"http://weather.gov/contact\">Contact Us </a><br />\r\n \t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\r\n</div><!-- end of <div class=\"footer\"> -->\r\n\t\t\r\n<!-- legal footer area -->\r\n<div class=\"footer-legal\">\r\n\t\t\t<div class=\"footer-legal-content\">\r\n\t\t\t<div class=\"footer-legal-gov\">\r\n\t\t\t\t<a href=\"http://www.usa.gov\"><img src=\"/css/images/usa_gov.png\" width=\"110\" height=\"30\" /></a>\r\n\t\t\t</div> \r\n\t\t\t\r\n\t\t\t<div class=\"footer-legal-column\">\r\n \t\t\t\t<p> \r\n <a href=\"http://www.commerce.gov\">US Dept of Commerce</a><br />\r\n \t\t\t\t<a href=\"http://www.noaa.gov\">National Oceanic and Atmospheric Administration</a><br />\r\n \t\t\t\t<a href=\"http://www.weather.gov\">National Weather Service</a><br />\r\n \t\t\t\t<a href=\"http://weather.gov/lox\">Los Angeles, CA</a><br /> \t\t\t</p>\r\n \t\t\t</div>\r\n \t\t\t\r\n \t\t\t<div class=\"footer-legal-column2\">\r\n \t\t\t\t<a href=\"http://weather.gov/disclaimer\">Disclaimer</a><br />\r\n \t\t\t\t<a href=\"http://www.cio.noaa.gov/Policy_Programs/info_quality.html\">Information Quality</a><br />\r\n \t\t\t\t<a href=\"http://weather.gov/help\">Help</a><br />\r\n \t\t\t\t<a href=\"http://www.weather.gov/glossary\">Glossary</a>\r\n \t\t\t</div>\r\n\r\n \t\t\t<div class=\"footer-legal-column3\">\r\n \t\t\t\t<a href=\"http://weather.gov/privacy\">Privacy Policy</a><br />\r\n \t\t\t\t<a href=\"http://www.rdc.noaa.gov/~foia\">Freedom of Information Act (FOIA)</a><br />\r\n \t\t\t\t<a href=\"http://weather.gov/about\">About Us</a><br />\r\n \t\t\t\t<a href=\"http://weather.gov/careers\">Career Opportunities</a>\r\n \t\t\t</div>\r\n \t\t</div>\r\n\t\r\n</div><!-- end of <div class=\"footer-legal\"> -->\r\n\t\t\r\n\r\n</body>\r\n</html>"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
|
@@ -1,274 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
2
|
-
|
3
|
-
describe "Data::LocalDateTime" do
|
4
|
-
|
5
|
-
before(:each) do
|
6
|
-
@y = 2009
|
7
|
-
@mon = 5
|
8
|
-
@d = 1
|
9
|
-
@h = 12
|
10
|
-
@m = 11
|
11
|
-
@s = 10
|
12
|
-
end
|
13
|
-
|
14
|
-
describe "when initialized" do
|
15
|
-
|
16
|
-
before(:each) do
|
17
|
-
@datetime = Data::LocalDateTime.new(@y,@mon,@d)
|
18
|
-
end
|
19
|
-
|
20
|
-
it "responds to hour" do
|
21
|
-
@datetime.hour.should == 0
|
22
|
-
end
|
23
|
-
|
24
|
-
it "responds to min" do
|
25
|
-
@datetime.min.should == 0
|
26
|
-
end
|
27
|
-
|
28
|
-
it "responds to sec" do
|
29
|
-
@datetime.sec.should == 0
|
30
|
-
end
|
31
|
-
|
32
|
-
it "responds to year" do
|
33
|
-
@datetime.year.should == @y
|
34
|
-
end
|
35
|
-
|
36
|
-
it "responds to month" do
|
37
|
-
@datetime.month.should == @mon
|
38
|
-
end
|
39
|
-
|
40
|
-
it "responds to day" do
|
41
|
-
@datetime.day.should == @d
|
42
|
-
end
|
43
|
-
|
44
|
-
end
|
45
|
-
|
46
|
-
describe "conversion" do
|
47
|
-
|
48
|
-
before(:each) do
|
49
|
-
@datetime = Data::LocalDateTime.new(@y,@mon,@d,@h,@m,@s)
|
50
|
-
end
|
51
|
-
|
52
|
-
it "converts to a DateTime object" do
|
53
|
-
@datetime.is_a?(Data::LocalDateTime)
|
54
|
-
datetime = @datetime.to_dt
|
55
|
-
datetime.is_a?(DateTime).should be_true
|
56
|
-
datetime.year.should == @y
|
57
|
-
datetime.mon.should == @mon
|
58
|
-
datetime.day.should == @d
|
59
|
-
datetime.hour.should == @h
|
60
|
-
datetime.min.should == @m
|
61
|
-
datetime.sec.should == @s
|
62
|
-
end
|
63
|
-
|
64
|
-
it "converts to a Date object" do
|
65
|
-
@datetime.is_a?(Data::LocalDateTime)
|
66
|
-
date = @datetime.to_d
|
67
|
-
date.is_a?(Date).should be_true
|
68
|
-
date.year.should == @y
|
69
|
-
date.mon.should == @mon
|
70
|
-
date.day.should == @d
|
71
|
-
end
|
72
|
-
|
73
|
-
it "converts to a Time object" do
|
74
|
-
@datetime.is_a?(Data::LocalDateTime)
|
75
|
-
time = @datetime.to_t
|
76
|
-
time.is_a?(Time).should be_true
|
77
|
-
time.hour.should == @h
|
78
|
-
time.min.should == @m
|
79
|
-
time.sec.should == @s
|
80
|
-
end
|
81
|
-
|
82
|
-
end
|
83
|
-
|
84
|
-
describe "parsing" do
|
85
|
-
|
86
|
-
before(:each) do
|
87
|
-
@y = 2009
|
88
|
-
@mon = 5
|
89
|
-
@d = 1
|
90
|
-
@h = 12
|
91
|
-
@m = 11
|
92
|
-
@s = 10
|
93
|
-
@datetime = Data::LocalDateTime.new(@y,@mon,@d,@h,@m,@s)
|
94
|
-
end
|
95
|
-
|
96
|
-
it "parses a Time object" do
|
97
|
-
time = Time.local(@y,@mon,@d,@h,@m,@s)
|
98
|
-
@datetime.parse(time)
|
99
|
-
@datetime.year.should == @y
|
100
|
-
@datetime.month.should == @mon
|
101
|
-
@datetime.day.should == @d
|
102
|
-
@datetime.hour.should == @h
|
103
|
-
@datetime.min.should == @m
|
104
|
-
@datetime.sec.should == @s
|
105
|
-
end
|
106
|
-
|
107
|
-
it "parses a DateTime object" do
|
108
|
-
datetime = DateTime.new(@y,@mon,@d,@h,@m,@s)
|
109
|
-
@datetime.parse(datetime)
|
110
|
-
@datetime.year.should == @y
|
111
|
-
@datetime.month.should == @mon
|
112
|
-
@datetime.day.should == @d
|
113
|
-
@datetime.hour.should == @h
|
114
|
-
@datetime.min.should == @m
|
115
|
-
@datetime.sec.should == @s
|
116
|
-
end
|
117
|
-
|
118
|
-
it "parses a Date object" do
|
119
|
-
date = Date.civil(@y,@mon,@d)
|
120
|
-
@datetime.parse(date)
|
121
|
-
@datetime.year.should == @y
|
122
|
-
@datetime.month.should == @mon
|
123
|
-
@datetime.day.should == @d
|
124
|
-
end
|
125
|
-
|
126
|
-
it "parses a String" do
|
127
|
-
string = "#{@y}-#{@mon}-#{@d} #{@h}:#{@m}:#{@s}"
|
128
|
-
@datetime.parse(string)
|
129
|
-
@datetime.year.should == @y
|
130
|
-
@datetime.month.should == @mon
|
131
|
-
@datetime.day.should == @d
|
132
|
-
@datetime.hour.should == @h
|
133
|
-
@datetime.min.should == @m
|
134
|
-
@datetime.sec.should == @s
|
135
|
-
end
|
136
|
-
|
137
|
-
it "parses a String (using class method)" do
|
138
|
-
string = "#{@y}-#{@mon}-#{@d} #{@h}:#{@m}:#{@s}"
|
139
|
-
datetime = Data::LocalDateTime.parse(string)
|
140
|
-
datetime.year.should == @y
|
141
|
-
datetime.month.should == @mon
|
142
|
-
datetime.day.should == @d
|
143
|
-
datetime.hour.should == @h
|
144
|
-
datetime.min.should == @m
|
145
|
-
datetime.sec.should == @s
|
146
|
-
end
|
147
|
-
|
148
|
-
it "returns nil when string contains no date/time info" do
|
149
|
-
string = "Last Updated on , "
|
150
|
-
datetime = Data::LocalDateTime.parse(string)
|
151
|
-
datetime.should be_nil
|
152
|
-
end
|
153
|
-
end
|
154
|
-
|
155
|
-
describe "storing" do
|
156
|
-
|
157
|
-
before(:each) do
|
158
|
-
@datetime = Data::LocalDateTime.new(@y,@mon,@d,@h,@m,@s)
|
159
|
-
end
|
160
|
-
|
161
|
-
it "requires Fixnum (accepts nil)" do
|
162
|
-
invalid_data = "s"
|
163
|
-
valid_data = 1
|
164
|
-
lambda { @datetime.year = invalid_data }.should raise_error(ArgumentError)
|
165
|
-
lambda { @datetime.year = valid_data }.should_not raise_error(ArgumentError)
|
166
|
-
lambda { @datetime.year = nil }.should raise_error(ArgumentError)
|
167
|
-
lambda { @datetime.month = invalid_data }.should raise_error(ArgumentError)
|
168
|
-
lambda { @datetime.month = valid_data }.should_not raise_error(ArgumentError)
|
169
|
-
lambda { @datetime.month = nil }.should raise_error(ArgumentError)
|
170
|
-
lambda { @datetime.day = invalid_data }.should raise_error(ArgumentError)
|
171
|
-
lambda { @datetime.day = valid_data }.should_not raise_error(ArgumentError)
|
172
|
-
lambda { @datetime.day = nil }.should raise_error(ArgumentError)
|
173
|
-
end
|
174
|
-
|
175
|
-
it "rejects invalid dates during init" do
|
176
|
-
lambda { Data::LocalDateTime.new(2009,0,1) }.should raise_error(ArgumentError)
|
177
|
-
lambda { Data::LocalDateTime.new(2009,1,0) }.should raise_error(ArgumentError)
|
178
|
-
lambda { Data::LocalDateTime.new(2009,13,1) }.should raise_error(ArgumentError)
|
179
|
-
lambda { Data::LocalDateTime.new(2009,1,32) }.should raise_error(ArgumentError)
|
180
|
-
end
|
181
|
-
|
182
|
-
it "rejects invalid days" do
|
183
|
-
lambda { @datetime.day = nil }.should raise_error(ArgumentError)
|
184
|
-
lambda { @datetime.day = 32 }.should raise_error(ArgumentError)
|
185
|
-
lambda { @datetime.day = "a" }.should raise_error(ArgumentError)
|
186
|
-
lambda { @datetime.day = 0 }.should raise_error(ArgumentError)
|
187
|
-
end
|
188
|
-
|
189
|
-
it "rejects invalid months" do
|
190
|
-
lambda { @datetime.month = nil }.should raise_error(ArgumentError)
|
191
|
-
lambda { @datetime.month = 32 }.should raise_error(ArgumentError)
|
192
|
-
lambda { @datetime.month = "a" }.should raise_error(ArgumentError)
|
193
|
-
lambda { @datetime.month = 0 }.should raise_error(ArgumentError)
|
194
|
-
end
|
195
|
-
|
196
|
-
it "rejects invalid years" do
|
197
|
-
lambda { @datetime.year = nil }.should raise_error(ArgumentError)
|
198
|
-
lambda { @datetime.year = "a" }.should raise_error(ArgumentError)
|
199
|
-
end
|
200
|
-
|
201
|
-
end
|
202
|
-
|
203
|
-
describe "retrieving" do
|
204
|
-
|
205
|
-
before(:each) do
|
206
|
-
@datetime = Data::LocalDateTime.new(@y,@mon,@d,@h,@m,@s)
|
207
|
-
end
|
208
|
-
|
209
|
-
it "returns pretty string" do
|
210
|
-
@datetime.to_s.should == "2009-05-01"
|
211
|
-
@datetime.to_s(true).should == "2009-05-01 12:11:10 pm"
|
212
|
-
end
|
213
|
-
|
214
|
-
end
|
215
|
-
|
216
|
-
describe "comparators" do
|
217
|
-
|
218
|
-
before(:each) do
|
219
|
-
@datetime_low = Data::LocalDateTime.new(2009,5,4,0,0,1)
|
220
|
-
@datetime_mid = Data::LocalDateTime.new(2009,5,5,12,0,0)
|
221
|
-
@datetime_high = Data::LocalDateTime.new(2009,5,6,23,59,59)
|
222
|
-
end
|
223
|
-
|
224
|
-
it "counts days" do
|
225
|
-
Data::LocalDateTime.new(0,1,1,0,0,0)._total_days.should == 1
|
226
|
-
Data::LocalDateTime.new(0,2,1,0,0,0)._total_days.should == 32
|
227
|
-
Data::LocalDateTime.new(1,1,1,0,0,0)._total_days.should == 367
|
228
|
-
end
|
229
|
-
|
230
|
-
it "defines <=>" do
|
231
|
-
Data::LocalDateTime.method_defined?("<=>").should be_true
|
232
|
-
(@datetime_low <=> @datetime_high).should == -1
|
233
|
-
(@datetime_high <=> @datetime_low).should == 1
|
234
|
-
(@datetime_mid <=> @datetime_mid).should == 0
|
235
|
-
end
|
236
|
-
|
237
|
-
it "compares to a Time object" do
|
238
|
-
time = Time.local(2009,5,5,12,0,0)
|
239
|
-
(@datetime_low <=> time).should == -1
|
240
|
-
(@datetime_high <=> time).should == 1
|
241
|
-
(@datetime_mid <=> time).should == 0
|
242
|
-
end
|
243
|
-
|
244
|
-
it "compares to a DateTime object" do
|
245
|
-
time = DateTime.new(2009,5,5,12,0,0)
|
246
|
-
(@datetime_low <=> time).should == -1
|
247
|
-
(@datetime_high <=> time).should == 1
|
248
|
-
(@datetime_mid <=> time).should == 0
|
249
|
-
end
|
250
|
-
|
251
|
-
it "compares to a Date object" do
|
252
|
-
date = Date.civil(2009,5,5)
|
253
|
-
(@datetime_low <=> date).should == -1
|
254
|
-
(@datetime_high <=> date).should == 1
|
255
|
-
(@datetime_mid <=> date).should == 0
|
256
|
-
end
|
257
|
-
|
258
|
-
it "compares to a String object" do
|
259
|
-
time = "2009-5-5 12:00:00"
|
260
|
-
(@datetime_low <=> time).should == -1
|
261
|
-
(@datetime_high <=> time).should == 1
|
262
|
-
(@datetime_mid <=> time).should == 0
|
263
|
-
end
|
264
|
-
|
265
|
-
it "compares to a Data::LocalTime object" do
|
266
|
-
local_time = Data::LocalTime.new(12,0,0)
|
267
|
-
(@datetime_low <=> local_time).should == -1
|
268
|
-
(@datetime_high <=> local_time).should == 1
|
269
|
-
(@datetime_mid <=> local_time).should == 0
|
270
|
-
end
|
271
|
-
|
272
|
-
end
|
273
|
-
|
274
|
-
end
|