barometer 0.8.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (321) hide show
  1. data/.gitignore +2 -0
  2. data/.pelusa.yml +7 -0
  3. data/.travis.yml +6 -3
  4. data/Gemfile +11 -1
  5. data/README.md +89 -244
  6. data/Rakefile +1 -1
  7. data/barometer.gemspec +22 -24
  8. data/lib/barometer.rb +14 -65
  9. data/lib/barometer/base.rb +35 -65
  10. data/lib/barometer/data.rb +15 -20
  11. data/lib/barometer/data/attribute.rb +19 -0
  12. data/lib/barometer/data/attributes/distance.rb +11 -0
  13. data/lib/barometer/data/attributes/float.rb +11 -0
  14. data/lib/barometer/data/attributes/integer.rb +11 -0
  15. data/lib/barometer/data/attributes/location.rb +11 -0
  16. data/lib/barometer/data/attributes/pressure.rb +11 -0
  17. data/lib/barometer/data/attributes/sun.rb +15 -0
  18. data/lib/barometer/data/attributes/temperature.rb +11 -0
  19. data/lib/barometer/data/attributes/time.rb +11 -0
  20. data/lib/barometer/data/attributes/vector.rb +11 -0
  21. data/lib/barometer/data/attributes/zone.rb +11 -0
  22. data/lib/barometer/data/convertable_units.rb +145 -0
  23. data/lib/barometer/data/coordinates.rb +16 -0
  24. data/lib/barometer/data/distance.rb +14 -133
  25. data/lib/barometer/data/geo.rb +22 -59
  26. data/lib/barometer/data/location.rb +14 -20
  27. data/lib/barometer/data/pressure.rb +14 -135
  28. data/lib/barometer/data/sun.rb +24 -24
  29. data/lib/barometer/data/temperature.rb +14 -169
  30. data/lib/barometer/data/vector.rb +44 -0
  31. data/lib/barometer/data/zone.rb +109 -112
  32. data/lib/barometer/query.rb +23 -161
  33. data/lib/barometer/query/base.rb +88 -0
  34. data/lib/barometer/query/converter.rb +64 -0
  35. data/lib/barometer/query/converters/from_coordinates_to_noaa_station_id.rb +30 -0
  36. data/lib/barometer/query/converters/from_geocode_to_coordinates.rb +28 -0
  37. data/lib/barometer/query/converters/from_short_zipcode_to_zipcode.rb +28 -0
  38. data/lib/barometer/query/converters/from_weather_id_to_geocode.rb +30 -0
  39. data/lib/barometer/query/converters/from_woe_id_or_ipv4_to_geocode.rb +32 -0
  40. data/lib/barometer/query/converters/to_geocode.rb +30 -0
  41. data/lib/barometer/query/converters/to_weather_id.rb +30 -0
  42. data/lib/barometer/query/converters/to_woe_id.rb +30 -0
  43. data/lib/barometer/query/format.rb +59 -0
  44. data/lib/barometer/query/formats/base.rb +22 -0
  45. data/lib/barometer/query/formats/coordinates.rb +14 -0
  46. data/lib/barometer/query/formats/geocode.rb +15 -0
  47. data/lib/barometer/query/formats/icao.rb +35 -0
  48. data/lib/barometer/query/formats/ipv4_address.rb +19 -0
  49. data/lib/barometer/query/formats/noaa_station_id.rb +15 -0
  50. data/lib/barometer/query/formats/postalcode.rb +20 -0
  51. data/lib/barometer/query/formats/short_zipcode.rb +15 -0
  52. data/lib/barometer/{translations → query/formats/translations}/icao_country_codes.yml +0 -0
  53. data/lib/barometer/{translations → query/formats/translations}/weather_country_codes.yml +0 -0
  54. data/lib/barometer/query/formats/unknown.rb +14 -0
  55. data/lib/barometer/query/formats/weather_id.rb +33 -0
  56. data/lib/barometer/query/formats/woe_id.rb +28 -0
  57. data/lib/barometer/query/formats/zipcode.rb +15 -0
  58. data/lib/barometer/query/service.rb +13 -0
  59. data/lib/barometer/query/services/apis/geonames_timezone.rb +26 -0
  60. data/lib/barometer/query/services/apis/google_geocode.rb +35 -0
  61. data/lib/barometer/query/services/apis/noaa_station.rb +31 -0
  62. data/lib/barometer/query/services/apis/weather_id.rb +35 -0
  63. data/lib/barometer/query/services/apis/wunderground_timezone.rb +26 -0
  64. data/lib/barometer/query/services/apis/yahoo_placefinder.rb +35 -0
  65. data/lib/barometer/query/services/apis/yahoo_weather.rb +31 -0
  66. data/lib/barometer/query/services/from_weather_id.rb +64 -0
  67. data/lib/barometer/query/services/geonames_timezone.rb +18 -0
  68. data/lib/barometer/query/services/google_geocode.rb +106 -0
  69. data/lib/barometer/query/services/noaa_station_id.rb +28 -0
  70. data/lib/barometer/query/services/to_weather_id.rb +25 -0
  71. data/lib/barometer/query/services/to_woe_id.rb +29 -0
  72. data/lib/barometer/query/services/wunderground_timezone.rb +18 -0
  73. data/lib/barometer/query/services/yahoo_geocode.rb +69 -0
  74. data/lib/barometer/response.rb +12 -0
  75. data/lib/barometer/response/base.rb +57 -0
  76. data/lib/barometer/response/current.rb +27 -0
  77. data/lib/barometer/response/prediction.rb +41 -0
  78. data/lib/barometer/response/prediction_collection.rb +48 -0
  79. data/lib/barometer/utils.rb +17 -0
  80. data/lib/barometer/utils/address.rb +33 -0
  81. data/lib/barometer/utils/api.rb +30 -0
  82. data/lib/barometer/utils/config_reader.rb +40 -0
  83. data/lib/barometer/utils/get.rb +17 -0
  84. data/lib/barometer/utils/json_reader.rb +22 -0
  85. data/lib/barometer/utils/payload.rb +100 -0
  86. data/lib/barometer/utils/payload_request.rb +37 -0
  87. data/lib/barometer/utils/post.rb +24 -0
  88. data/lib/barometer/utils/time.rb +78 -0
  89. data/lib/barometer/{translations → utils/translations}/zone_codes.yml +0 -0
  90. data/lib/barometer/utils/versioned_registration.rb +70 -0
  91. data/lib/barometer/utils/xml_reader.rb +27 -0
  92. data/lib/barometer/utils/zone_code_lookup.rb +30 -0
  93. data/lib/barometer/version.rb +1 -1
  94. data/lib/barometer/weather.rb +44 -173
  95. data/lib/barometer/weather_service.rb +41 -0
  96. data/lib/barometer/weather_services/base.rb +50 -0
  97. data/lib/barometer/weather_services/forecast_io.rb +36 -0
  98. data/lib/barometer/weather_services/forecast_io/api.rb +22 -0
  99. data/lib/barometer/weather_services/forecast_io/query.rb +38 -0
  100. data/lib/barometer/weather_services/forecast_io/response.rb +31 -0
  101. data/lib/barometer/weather_services/forecast_io/response/current_weather.rb +78 -0
  102. data/lib/barometer/weather_services/forecast_io/response/forecasted_weather.rb +74 -0
  103. data/lib/barometer/weather_services/forecast_io/response/location.rb +19 -0
  104. data/lib/barometer/weather_services/forecast_io/response/timezone.rb +25 -0
  105. data/lib/barometer/weather_services/noaa.rb +21 -305
  106. data/lib/barometer/weather_services/noaa/current_api.rb +25 -0
  107. data/lib/barometer/weather_services/noaa/current_query.rb +30 -0
  108. data/lib/barometer/weather_services/noaa/current_response.rb +29 -0
  109. data/lib/barometer/weather_services/noaa/forecast_api.rb +25 -0
  110. data/lib/barometer/weather_services/noaa/forecast_query.rb +39 -0
  111. data/lib/barometer/weather_services/noaa/forecast_response.rb +28 -0
  112. data/lib/barometer/weather_services/noaa/response/current_location.rb +42 -0
  113. data/lib/barometer/weather_services/noaa/response/current_station.rb +46 -0
  114. data/lib/barometer/weather_services/noaa/response/current_weather.rb +82 -0
  115. data/lib/barometer/weather_services/noaa/response/forecasted_weather.rb +90 -0
  116. data/lib/barometer/weather_services/noaa/response/location.rb +19 -0
  117. data/lib/barometer/weather_services/noaa/response/timezone.rb +15 -0
  118. data/lib/barometer/weather_services/response.rb +9 -0
  119. data/lib/barometer/weather_services/response/location.rb +42 -0
  120. data/lib/barometer/weather_services/response/time_zone.rb +19 -0
  121. data/lib/barometer/weather_services/weather_bug.rb +24 -280
  122. data/lib/barometer/weather_services/weather_bug/current_api.rb +26 -0
  123. data/lib/barometer/weather_services/weather_bug/current_response.rb +33 -0
  124. data/lib/barometer/weather_services/weather_bug/forecast_api.rb +26 -0
  125. data/lib/barometer/weather_services/weather_bug/forecast_response.rb +29 -0
  126. data/lib/barometer/weather_services/weather_bug/query.rb +42 -0
  127. data/lib/barometer/weather_services/weather_bug/response/current_weather.rb +82 -0
  128. data/lib/barometer/weather_services/weather_bug/response/forecasted_weather.rb +67 -0
  129. data/lib/barometer/weather_services/weather_bug/response/location.rb +23 -0
  130. data/lib/barometer/weather_services/weather_bug/response/station.rb +43 -0
  131. data/lib/barometer/weather_services/weather_bug/response/sun.rb +32 -0
  132. data/lib/barometer/weather_services/weather_bug/response/time_helper.rb +52 -0
  133. data/lib/barometer/weather_services/weather_bug/response/timezone.rb +15 -0
  134. data/lib/barometer/weather_services/wunderground_v1.rb +32 -0
  135. data/lib/barometer/weather_services/wunderground_v1/current_api.rb +21 -0
  136. data/lib/barometer/weather_services/wunderground_v1/current_response.rb +31 -0
  137. data/lib/barometer/weather_services/wunderground_v1/forecast_api.rb +21 -0
  138. data/lib/barometer/weather_services/wunderground_v1/forecast_response.rb +33 -0
  139. data/lib/barometer/weather_services/wunderground_v1/query.rb +30 -0
  140. data/lib/barometer/weather_services/wunderground_v1/response/current_weather.rb +92 -0
  141. data/lib/barometer/weather_services/wunderground_v1/response/forecasted_weather.rb +87 -0
  142. data/lib/barometer/weather_services/wunderground_v1/response/full_timezone.rb +22 -0
  143. data/lib/barometer/weather_services/wunderground_v1/response/location.rb +43 -0
  144. data/lib/barometer/weather_services/wunderground_v1/response/station.rb +39 -0
  145. data/lib/barometer/weather_services/wunderground_v1/response/sun.rb +53 -0
  146. data/lib/barometer/weather_services/wunderground_v1/response/timezone.rb +15 -0
  147. data/lib/barometer/weather_services/yahoo.rb +16 -198
  148. data/lib/barometer/weather_services/yahoo/api.rb +21 -0
  149. data/lib/barometer/weather_services/yahoo/query.rb +42 -0
  150. data/lib/barometer/weather_services/yahoo/response.rb +39 -0
  151. data/lib/barometer/weather_services/yahoo/response/current_weather.rb +86 -0
  152. data/lib/barometer/weather_services/yahoo/response/forecasted_weather.rb +71 -0
  153. data/lib/barometer/weather_services/yahoo/response/location.rb +47 -0
  154. data/lib/barometer/weather_services/yahoo/response/sun.rb +43 -0
  155. data/lib/barometer/weather_services/yahoo/response/timezone.rb +15 -0
  156. data/spec/barometer_spec.rb +18 -120
  157. data/spec/base_spec.rb +114 -0
  158. data/spec/cassettes/Converter_FromCoordinatesToNoaaStationId.json +1 -0
  159. data/spec/cassettes/Converter_FromWeatherIdToGeocode.json +1 -0
  160. data/spec/cassettes/Converter_FromWoeIdOrIpv4ToGeocode.json +1 -0
  161. data/spec/cassettes/Converter_ToGeocode.json +1 -0
  162. data/spec/cassettes/Converter_ToWeatherId.json +1 -0
  163. data/spec/cassettes/Converter_ToWoeId.json +1 -0
  164. data/spec/cassettes/Service_FromWeatherId.json +1 -0
  165. data/spec/cassettes/Service_GoogleGeocode.json +1 -0
  166. data/spec/cassettes/Service_NoaaStation.json +1 -0
  167. data/spec/cassettes/Service_ToWeatherId.json +1 -0
  168. data/spec/cassettes/Service_ToWoeId.json +1 -0
  169. data/spec/cassettes/Service_YahooGeocode.json +1 -0
  170. data/spec/cassettes/WeatherService_ForecastIo.json +1 -0
  171. data/spec/cassettes/WeatherService_Noaa.json +1 -1
  172. data/spec/cassettes/WeatherService_WeatherBug.json +1 -1
  173. data/spec/cassettes/WeatherService_WundergroundV1.json +1 -0
  174. data/spec/cassettes/WeatherService_Yahoo.json +1 -1
  175. data/spec/data/attributes/distance_spec.rb +60 -0
  176. data/spec/data/attributes/location_spec.rb +41 -0
  177. data/spec/data/attributes/pressure_spec.rb +60 -0
  178. data/spec/data/attributes/sun_spec.rb +33 -0
  179. data/spec/data/attributes/temperature_spec.rb +60 -0
  180. data/spec/data/attributes/time_spec.rb +58 -0
  181. data/spec/data/attributes/vector_spec.rb +43 -0
  182. data/spec/data/attributes/zone_spec.rb +34 -0
  183. data/spec/data/convertable_units_spec.rb +299 -0
  184. data/spec/data/coordinates_spec.rb +15 -0
  185. data/spec/data/distance_spec.rb +49 -333
  186. data/spec/data/geo_spec.rb +72 -71
  187. data/spec/data/location_spec.rb +70 -65
  188. data/spec/data/pressure_spec.rb +49 -333
  189. data/spec/data/sun_spec.rb +57 -81
  190. data/spec/data/temperature_spec.rb +49 -393
  191. data/spec/data/vector_spec.rb +100 -0
  192. data/spec/data/zone_spec.rb +199 -266
  193. data/spec/query/base_spec.rb +296 -0
  194. data/spec/query/converter_spec.rb +98 -0
  195. data/spec/query/converters/from_coordinates_to_noaa_station_id_spec.rb +35 -0
  196. data/spec/query/converters/from_geocode_to_coordinates_spec.rb +25 -0
  197. data/spec/query/converters/from_short_zipcode_to_zipcode_spec.rb +31 -0
  198. data/spec/query/converters/from_weather_id_to_geocode_spec.rb +40 -0
  199. data/spec/query/converters/from_woe_id_or_ipv4_to_geocode_spec.rb +51 -0
  200. data/spec/query/converters/to_geocode_spec.rb +99 -0
  201. data/spec/query/converters/to_weather_id_spec.rb +35 -0
  202. data/spec/query/converters/to_woe_id_spec.rb +74 -0
  203. data/spec/query/formats/base_spec.rb +15 -0
  204. data/spec/query/formats/coordinates_spec.rb +13 -0
  205. data/spec/query/formats/geocode_spec.rb +9 -0
  206. data/spec/query/formats/icao_spec.rb +20 -0
  207. data/spec/query/formats/ipv4_address_spec.rb +33 -0
  208. data/spec/query/formats/noaa_station_id_spec.rb +9 -0
  209. data/spec/query/formats/postalcode_spec.rb +18 -0
  210. data/spec/query/formats/short_zipcode_spec.rb +18 -0
  211. data/spec/query/formats/unknown_spec.rb +9 -0
  212. data/spec/query/formats/weather_id_spec.rb +31 -0
  213. data/spec/query/formats/woe_id_spec.rb +45 -0
  214. data/spec/query/formats/zipcode_spec.rb +18 -0
  215. data/spec/query/formats_spec.rb +55 -0
  216. data/spec/query/services/from_weather_id_spec.rb +54 -0
  217. data/spec/query/services/google_geocode_spec.rb +60 -0
  218. data/spec/query/services/noaa_station_id_spec.rb +23 -0
  219. data/spec/query/services/to_weather_id_spec.rb +23 -0
  220. data/spec/query/services/to_woe_id_spec.rb +51 -0
  221. data/spec/query/services/yahoo_geocode_spec.rb +72 -0
  222. data/spec/response/base_spec.rb +103 -0
  223. data/spec/response/current_spec.rb +33 -0
  224. data/spec/response/predicition_spec.rb +65 -0
  225. data/spec/response/prediction_collection_spec.rb +97 -0
  226. data/spec/spec_helper.rb +14 -12
  227. data/spec/support/key_file_parser.rb +22 -0
  228. data/spec/support/matchers/formats.rb +36 -0
  229. data/spec/support/matchers/have_data.rb +46 -0
  230. data/spec/support/matchers/have_field.rb +128 -0
  231. data/spec/support/matchers/have_forecast.rb +46 -0
  232. data/spec/support/matchers/path.rb +23 -0
  233. data/spec/support/query_factory.rb +20 -0
  234. data/spec/utils/address_spec.rb +67 -0
  235. data/spec/utils/config_reader_spec.rb +157 -0
  236. data/spec/utils/get_spec.rb +22 -0
  237. data/spec/utils/payload_request_spec.rb +69 -0
  238. data/spec/utils/payload_spec.rb +168 -0
  239. data/spec/utils/post_spec.rb +20 -0
  240. data/spec/utils/time_spec.rb +93 -0
  241. data/spec/utils/versioned_registration_spec.rb +105 -0
  242. data/spec/weather_services/base_spec.rb +116 -0
  243. data/spec/weather_services/forecast_io_spec.rb +71 -0
  244. data/spec/weather_services/noaa/current_response_spec.rb +22 -0
  245. data/spec/weather_services/noaa/forecast_response_spec.rb +33 -0
  246. data/spec/weather_services/noaa_spec.rb +68 -166
  247. data/spec/weather_services/weather_bug/current_response_spec.rb +64 -0
  248. data/spec/weather_services/weather_bug/forecast_response_spec.rb +23 -0
  249. data/spec/weather_services/weather_bug_spec.rb +62 -202
  250. data/spec/weather_services/wunderground_v1/current_response_spec.rb +19 -0
  251. data/spec/weather_services/wunderground_v1/forecast_response_spec.rb +62 -0
  252. data/spec/weather_services/wunderground_v1_spec.rb +78 -0
  253. data/spec/weather_services/yahoo/response_spec.rb +73 -0
  254. data/spec/weather_services/yahoo_spec.rb +52 -135
  255. data/spec/weather_services_spec.rb +103 -0
  256. data/spec/weather_spec.rb +167 -347
  257. metadata +342 -123
  258. data/.document +0 -5
  259. data/TODO +0 -60
  260. data/bin/barometer +0 -441
  261. data/lib/barometer/data/local_datetime.rb +0 -145
  262. data/lib/barometer/data/local_time.rb +0 -134
  263. data/lib/barometer/data/speed.rb +0 -158
  264. data/lib/barometer/data/units.rb +0 -49
  265. data/lib/barometer/formats.rb +0 -13
  266. data/lib/barometer/formats/coordinates.rb +0 -57
  267. data/lib/barometer/formats/format.rb +0 -64
  268. data/lib/barometer/formats/geocode.rb +0 -60
  269. data/lib/barometer/formats/icao.rb +0 -37
  270. data/lib/barometer/formats/postalcode.rb +0 -22
  271. data/lib/barometer/formats/short_zipcode.rb +0 -17
  272. data/lib/barometer/formats/weather_id.rb +0 -92
  273. data/lib/barometer/formats/woe_id.rb +0 -150
  274. data/lib/barometer/formats/zipcode.rb +0 -31
  275. data/lib/barometer/key_file_parser.rb +0 -20
  276. data/lib/barometer/measurements/measurement.rb +0 -202
  277. data/lib/barometer/measurements/result.rb +0 -207
  278. data/lib/barometer/measurements/result_array.rb +0 -75
  279. data/lib/barometer/services.rb +0 -19
  280. data/lib/barometer/weather_services/service.rb +0 -189
  281. data/lib/barometer/weather_services/wunderground.rb +0 -264
  282. data/lib/barometer/web_services/geocode.rb +0 -34
  283. data/lib/barometer/web_services/noaa_station_id.rb +0 -53
  284. data/lib/barometer/web_services/placemaker.rb +0 -95
  285. data/lib/barometer/web_services/timezone.rb +0 -38
  286. data/lib/barometer/web_services/weather_id.rb +0 -50
  287. data/lib/barometer/web_services/web_service.rb +0 -29
  288. data/spec/cassettes/Barometer.json +0 -1
  289. data/spec/cassettes/Query.json +0 -1
  290. data/spec/cassettes/Query_Format_Coordinates.json +0 -1
  291. data/spec/cassettes/Query_Format_Geocode.json +0 -1
  292. data/spec/cassettes/Query_Format_WeatherID.json +0 -1
  293. data/spec/cassettes/Query_Format_WoeID.json +0 -1
  294. data/spec/cassettes/WeatherService.json +0 -1
  295. data/spec/cassettes/WeatherService_Wunderground.json +0 -1
  296. data/spec/cassettes/WebService_Geocode.json +0 -1
  297. data/spec/cassettes/WebService_NoaaStation.json +0 -1
  298. data/spec/data/local_datetime_spec.rb +0 -274
  299. data/spec/data/local_time_spec.rb +0 -239
  300. data/spec/data/speed_spec.rb +0 -374
  301. data/spec/data/units_spec.rb +0 -101
  302. data/spec/formats/coordinates_spec.rb +0 -166
  303. data/spec/formats/format_spec.rb +0 -74
  304. data/spec/formats/geocode_spec.rb +0 -163
  305. data/spec/formats/icao_spec.rb +0 -55
  306. data/spec/formats/postalcode_spec.rb +0 -53
  307. data/spec/formats/short_zipcode_spec.rb +0 -47
  308. data/spec/formats/weather_id_spec.rb +0 -182
  309. data/spec/formats/woe_id_spec.rb +0 -211
  310. data/spec/formats/zipcode_spec.rb +0 -103
  311. data/spec/key_file_parser_spec.rb +0 -28
  312. data/spec/measurements/measurement_spec.rb +0 -381
  313. data/spec/measurements/result_array_spec.rb +0 -150
  314. data/spec/measurements/result_spec.rb +0 -632
  315. data/spec/query_spec.rb +0 -498
  316. data/spec/weather_services/services_spec.rb +0 -135
  317. data/spec/weather_services/wunderground_spec.rb +0 -179
  318. data/spec/web_services/geocode_spec.rb +0 -31
  319. data/spec/web_services/noaa_station_id_spec.rb +0 -33
  320. data/spec/web_services/placemaker_spec.rb +0 -41
  321. data/spec/web_services/web_services_spec.rb +0 -20
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://weather.yahooapis.com/forecastrss?p=USGA0028","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Mon, 28 Oct 2013 04:12:40 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":["max-age=200, public"],"Vary":["Accept-Encoding"],"Content-Type":["text/xml;charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Server":["YTS/1.20.28"]},"body":{"encoding":"UTF-8","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>Sun, 27 Oct 2013 11:52 pm EDT</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=\"57\" direction=\"0\" speed=\"0\" />\n<yweather:atmosphere humidity=\"93\" visibility=\"10\" pressure=\"30.17\" rising=\"0\" />\n<yweather:astronomy sunrise=\"7:50 am\" sunset=\"6:49 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 11:52 pm EDT</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>Sun, 27 Oct 2013 11:52 pm EDT</pubDate>\n<yweather:condition text=\"Cloudy\" code=\"26\" temp=\"57\" date=\"Sun, 27 Oct 2013 11:52 pm EDT\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/26.gif\"/><br />\n<b>Current Conditions:</b><br />\nCloudy, 57 F<BR />\n<BR /><b>Forecast:</b><BR />\nSun - Showers. High: 70 Low: 52<br />\nMon - AM Clouds/PM Sun. High: 70 Low: 52<br />\nTue - Partly Cloudy. High: 76 Low: 51<br />\nWed - Partly Cloudy. High: 76 Low: 56<br />\nThu - Cloudy. High: 73 Low: 61<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=\"Sun\" date=\"27 Oct 2013\" low=\"52\" high=\"70\" text=\"Showers\" code=\"11\" />\n<yweather:forecast day=\"Mon\" date=\"28 Oct 2013\" low=\"52\" high=\"70\" text=\"AM Clouds/PM Sun\" code=\"30\" />\n<yweather:forecast day=\"Tue\" date=\"29 Oct 2013\" low=\"51\" high=\"76\" text=\"Partly Cloudy\" code=\"30\" />\n<yweather:forecast day=\"Wed\" date=\"30 Oct 2013\" low=\"56\" high=\"76\" text=\"Partly Cloudy\" code=\"30\" />\n<yweather:forecast day=\"Thu\" date=\"31 Oct 2013\" low=\"61\" high=\"73\" text=\"Cloudy\" code=\"26\" />\n<guid isPermaLink=\"false\">USGA0028_2013_10_31_7_00_EDT</guid>\n</item>\n</channel>\n</rss>\n\n<!-- fan1661.sports.bf1.yahoo.com Mon Oct 28 04:12:40 PST 2013 -->\n"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 04:12:40 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20woeid='615702'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine4.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 28 Oct 2013 04:55:01 GMT"],"Server":["YTS/1.20.13"],"Age":["74"],"Content-Length":["626"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-28T04:55:02Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"40\",\"latitude\":\"48.85693\",\"longitude\":\"2.3412\",\"offsetlat\":\"48.85693\",\"offsetlon\":\"2.3412\",\"radius\":\"32900\",\"name\":null,\"line1\":\"15, Pont Neuf\",\"line2\":\"75001 Paris\",\"line3\":null,\"line4\":\"France\",\"house\":\"15\",\"street\":\"Pont Neuf\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"75001\",\"neighborhood\":\"Saint-Germain l'Auxerrois\",\"city\":\"Paris\",\"county\":\"Paris\",\"state\":\"Ile-de-France\",\"country\":\"France\",\"countrycode\":\"FR\",\"statecode\":null,\"countycode\":\"75\",\"uzip\":\"75001\",\"hash\":null,\"woeid\":\"12727257\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 04:56:15 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='8.8.8.8'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine6.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 28 Oct 2013 04:38:26 GMT"],"Server":["YTS/1.20.13"],"Age":["1069"],"Content-Length":["640"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-28T04:38:26Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"60\",\"latitude\":\"37.418726\",\"longitude\":\"-122.072037\",\"offsetlat\":\"37.419201\",\"offsetlon\":\"-122.075539\",\"radius\":\"4700\",\"name\":null,\"line1\":null,\"line2\":\"Mountain View, CA 94043\",\"line3\":null,\"line4\":\"United States\",\"house\":null,\"street\":null,\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"94043\",\"neighborhood\":null,\"city\":\"Mountain View\",\"county\":\"Santa Clara County\",\"state\":\"California\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"CA\",\"countycode\":null,\"uzip\":\"94043\",\"hash\":null,\"woeid\":\"12797130\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 04:56:15 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210&region=US&sensor=false","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 26 Oct 2013 15:10:36 GMT"],"Expires":["Sun, 27 Oct 2013 15:10:36 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"],"Alternate-Protocol":["80:quic"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"UTF-8","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 County\",\n \"short_name\" : \"Los Angeles County\",\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.1354771,\n \"lng\" : -118.3867129\n },\n \"southwest\" : {\n \"lat\" : 34.065094,\n \"lng\" : -118.4423781\n }\n },\n \"location\" : {\n \"lat\" : 34.1030032,\n \"lng\" : -118.4104684\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.1354771,\n \"lng\" : -118.3867129\n },\n \"southwest\" : {\n \"lat\" : 34.065094,\n \"lng\" : -118.4423781\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:10:36 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210-5555&region=US&sensor=false","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 26 Oct 2013 15:10:36 GMT"],"Expires":["Sun, 27 Oct 2013 15:10:36 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"],"Alternate-Protocol":["80:quic"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"UTF-8","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 County\",\n \"short_name\" : \"Los Angeles County\",\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.1354771,\n \"lng\" : -118.3867129\n },\n \"southwest\" : {\n \"lat\" : 34.065094,\n \"lng\" : -118.4423781\n }\n },\n \"location\" : {\n \"lat\" : 34.1030032,\n \"lng\" : -118.4104684\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.1354771,\n \"lng\" : -118.3867129\n },\n \"southwest\" : {\n \"lat\" : 34.065094,\n \"lng\" : -118.4423781\n }\n }\n },\n \"partial_match\" : true,\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:10:36 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=40.756054,-73.986951&sensor=false","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 26 Oct 2013 15:10:37 GMT"],"Expires":["Sun, 27 Oct 2013 15:10:37 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"],"Alternate-Protocol":["80:quic"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"UTF-8","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.7566969,\n \"lng\" : -73.9864836\n },\n \"southwest\" : {\n \"lat\" : 40.756034,\n \"lng\" : -73.9869451\n }\n },\n \"location\" : {\n \"lat\" : 40.75604130000001,\n \"lng\" : -73.9869192\n },\n \"location_type\" : \"RANGE_INTERPOLATED\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7577144302915,\n \"lng\" : -73.9853653697085\n },\n \"southwest\" : {\n \"lat\" : 40.7550164697085,\n \"lng\" : -73.98806333029151\n }\n }\n },\n \"types\" : [ \"street_address\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Times Sq - 42 St\",\n \"short_name\" : \"Times Sq - 42 St\",\n \"types\" : [ \"subway_station\", \"transit_station\", \"train_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.755983,\n \"lng\" : -73.98622899999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7573319802915,\n \"lng\" : -73.98488001970848\n },\n \"southwest\" : {\n \"lat\" : 40.7546340197085,\n \"lng\" : -73.98757798029149\n }\n }\n },\n \"types\" : [ \"subway_station\", \"transit_station\", \"train_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.755676,\n \"lng\" : -73.986313\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7570249802915,\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.7641791,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.75373,\n \"lng\" : -73.9908822\n }\n },\n \"location\" : {\n \"lat\" : 40.759011,\n \"lng\" : -73.9844722\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7641791,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.75373,\n \"lng\" : -73.9908822\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.768738,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.7236249,\n \"lng\" : -74.004786\n }\n },\n \"location\" : {\n \"lat\" : 40.7602619,\n \"lng\" : -73.9932872\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.768738,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.753481,\n \"lng\" : -74.004683\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.77410690000001,\n \"lng\" : -73.95889869999999\n },\n \"southwest\" : {\n \"lat\" : 40.72686849999999,\n \"lng\" : -74.0089488\n }\n },\n \"location\" : {\n \"lat\" : 40.7509915,\n \"lng\" : -73.9888797\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.77410690000001,\n \"lng\" : -73.95889869999999\n },\n \"southwest\" : {\n \"lat\" : 40.72686849999999,\n \"lng\" : -74.0089488\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"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.882214,\n \"lng\" : -73.907\n },\n \"southwest\" : {\n \"lat\" : 40.6795479,\n \"lng\" : -74.047285\n }\n },\n \"location\" : {\n \"lat\" : 40.7902778,\n \"lng\" : -73.9597222\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.820045,\n \"lng\" : -73.90331300000001\n },\n \"southwest\" : {\n \"lat\" : 40.698078,\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\" : [ \"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.8792779,\n \"lng\" : -73.907\n },\n \"southwest\" : {\n \"lat\" : 40.6795929,\n \"lng\" : -74.04726289999999\n }\n },\n \"location\" : {\n \"lat\" : 40.7830603,\n \"lng\" : -73.9712488\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.8792779,\n \"lng\" : -73.907\n },\n \"southwest\" : {\n \"lat\" : 40.6795929,\n \"lng\" : -74.04726289999999\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"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.91525559999999,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959961,\n \"lng\" : -74.2590879\n }\n },\n \"location\" : {\n \"lat\" : 40.7143528,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91525559999999,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.496006,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"ニュー・ヨーク=ノーザン・ニュー・ジャージー=ロング・アイランド\",\n \"short_name\" : \"ニュー・ヨーク=ノーザン・ニュー・ジャージー=ロング・アイランド\",\n \"types\" : [ \"political\" ]\n },\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\" : 41.6018065,\n \"lng\" : -71.85621399999999\n },\n \"southwest\" : {\n \"lat\" : 39.49853299999999,\n \"lng\" : -75.3585939\n }\n },\n \"location\" : {\n \"lat\" : 40.9590293,\n \"lng\" : -74.0300122\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 41.6018065,\n \"lng\" : -71.85621399999999\n },\n \"southwest\" : {\n \"lat\" : 39.49853299999999,\n \"lng\" : -75.3585939\n }\n }\n },\n \"types\" : [ \"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.015865,\n \"lng\" : -71.85626429999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959961,\n \"lng\" : -79.76214379999999\n }\n },\n \"location\" : {\n \"lat\" : 43.2994285,\n \"lng\" : -74.21793260000001\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 45.0156269,\n \"lng\" : -71.85626429999999\n },\n \"southwest\" : {\n \"lat\" : 40.4960191,\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\" : 90,\n \"lng\" : 180\n },\n \"southwest\" : {\n \"lat\" : -90,\n \"lng\" : -180\n }\n },\n \"location\" : {\n \"lat\" : 37.09024,\n \"lng\" : -95.712891\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.38,\n \"lng\" : -66.94\n },\n \"southwest\" : {\n \"lat\" : 25.82,\n \"lng\" : -124.39\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:10:37 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=T5B%204M9&region=CA&sensor=false","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 26 Oct 2013 15:10:37 GMT"],"Expires":["Sun, 27 Oct 2013 15:10:37 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"],"Alternate-Protocol":["80:quic"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"UTF-8","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.5753686,\n \"lng\" : -113.4531119\n },\n \"southwest\" : {\n \"lat\" : 53.5704143,\n \"lng\" : -113.4589398\n }\n },\n \"location\" : {\n \"lat\" : 53.5721719,\n \"lng\" : -113.4551835\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 53.5753686,\n \"lng\" : -113.4531119\n },\n \"southwest\" : {\n \"lat\" : 53.5704143,\n \"lng\" : -113.4589398\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:10:37 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=Paris,%20France&sensor=false","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 26 Oct 2013 15:10:37 GMT"],"Expires":["Sun, 27 Oct 2013 15:10:37 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"],"Alternate-Protocol":["80:quic"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"UTF-8","string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Paris\",\n \"short_name\" : \"Paris\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Paris\",\n \"short_name\" : \"75\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Île-de-France\",\n \"short_name\" : \"IDF\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"France\",\n \"short_name\" : \"FR\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Paris, France\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 48.9021449,\n \"lng\" : 2.4699208\n },\n \"southwest\" : {\n \"lat\" : 48.815573,\n \"lng\" : 2.224199\n }\n },\n \"location\" : {\n \"lat\" : 48.856614,\n \"lng\" : 2.3522219\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 48.9021449,\n \"lng\" : 2.4699208\n },\n \"southwest\" : {\n \"lat\" : 48.815573,\n \"lng\" : 2.224199\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:10:37 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO&region=US&sensor=false","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 26 Oct 2013 15:10:37 GMT"],"Expires":["Sun, 27 Oct 2013 15:10:37 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"],"Alternate-Protocol":["80:quic"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"UTF-8","string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco International Airport\",\n \"short_name\" : \"San Francisco International Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"SF\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo County\",\n \"short_name\" : \"San Mateo County\",\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 International Airport (SFO), San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.6397017,\n \"lng\" : -122.3549197\n },\n \"southwest\" : {\n \"lat\" : 37.604291,\n \"lng\" : -122.4015428\n }\n },\n \"location\" : {\n \"lat\" : 37.615223,\n \"lng\" : -122.389979\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.6397017,\n \"lng\" : -122.3549197\n },\n \"southwest\" : {\n \"lat\" : 37.604291,\n \"lng\" : -122.4015428\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:10:37 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://xoap.weather.com/search/search?where=New%20York,%20NY","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache"],"Svrname":["data3x29"],"Cache-Control":["max-age=300"],"Content-Type":["application/xml;charset=UTF-8"],"Content-Length":["848"],"Accept-Ranges":["bytes"],"Date":["Sun, 07 Apr 2013 16:29:40 GMT"],"X-Varnish":["1333113893 1332628357"],"Age":["144"],"Via":["1.1 varnish"],"Connection":["keep-alive"],"X-Cache-Hits":["34"]},"body":{"encoding":"US-ASCII","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"},"http_version":null},"recorded_at":"Sun, 07 Apr 2013 16:29:42 GMT"},{"request":{"method":"get","uri":"http://xoap.weather.com/search/search?where=Paris,%20France","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache"],"Svrname":["data2x22"],"Cache-Control":["max-age=300"],"Content-Type":["application/xml;charset=UTF-8"],"Content-Length":["911"],"Accept-Ranges":["bytes"],"Date":["Sun, 05 May 2013 21:31:29 GMT"],"X-Varnish":["1958195555 1958127980"],"Age":["50"],"Via":["1.1 varnish"],"Connection":["keep-alive"],"X-Cache-Hits":["1"]},"body":{"encoding":"US-ASCII","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=\"FRXX0076\" type=\"1\">Paris, France</loc>\r\n <loc id=\"FRBO0939\" type=\"1\">Paris-l'Hopital, France</loc>\r\n <loc id=\"FRBR2141\" type=\"1\">Petit Paris, France</loc>\r\n <loc id=\"FRRA3239\" type=\"1\">Les Paris, France</loc>\r\n <loc id=\"FRIF1055\" type=\"1\">Le Petit-Paris, France</loc>\r\n <loc id=\"FRIF1165\" type=\"1\">Paris 01 Louvre, France</loc>\r\n <loc id=\"FRIF1166\" type=\"1\">Paris 02 Bourse, France</loc>\r\n <loc id=\"FRIF1167\" type=\"1\">Paris 03 Temple, France</loc>\r\n <loc id=\"FRIF1169\" type=\"1\">Paris 05 Pantheon, France</loc>\r\n <loc id=\"FRIF1170\" type=\"1\">Paris 06 Luxembourg, France</loc>\r\n</search>\r\n\r\n"},"http_version":null},"recorded_at":"Sun, 05 May 2013 21:31:34 GMT"},{"request":{"method":"get","uri":"http://wxdata.weather.com/wxdata/search/search?where=Paris,%20France","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache-Coyote/1.1"],"Content-Type":["text/xml;charset=UTF-8"],"X-Varnish":["10275300"],"X-Cache-Hits":["0"],"Cache-Control":["max-age=180"],"Date":["Sat, 26 Oct 2013 15:05:02 GMT"],"Content-Length":["590"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"<search ver=\"3.0\">\n <loc id=\"FRXX0076\" type=\"1\">Paris, 75, France</loc><loc id=\"FRDO0206\" type=\"1\">Parisot, 24, France</loc><loc id=\"FRLG0038\" type=\"1\">Parisot, 47, France</loc><loc id=\"FRMP1691\" type=\"1\">Parisot, 81, France</loc><loc id=\"FRMP1692\" type=\"1\">Parisot, 82, France</loc><loc id=\"FRXX2071\" type=\"1\">Paris 09, 75, France</loc><loc id=\"FRXX6513\" type=\"1\">Paris 07, 75, France</loc><loc id=\"FRBR2141\" type=\"1\">Petit Paris, 29, France</loc><loc id=\"FRRA3239\" type=\"1\">Les Paris, 73, France</loc><loc id=\"FRFN0175\" type=\"1\">Le Petit Paris, 29, France</loc>\n </search>"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:05:02 GMT"},{"request":{"method":"get","uri":"http://wxdata.weather.com/wxdata/search/search?where=New%20York,%20NY","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache-Coyote/1.1"],"Content-Type":["text/xml;charset=UTF-8"],"X-Varnish":["10276369"],"X-Cache-Hits":["0"],"Cache-Control":["max-age=213"],"Date":["Sat, 26 Oct 2013 15:05:02 GMT"],"Content-Length":["93"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"<search ver=\"3.0\">\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\n </search>"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:05:02 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='90210'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine5.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Sun, 27 Oct 2013 23:44:16 GMT"],"Server":["YTS/1.20.13"],"Age":["2160"],"Content-Length":["670"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-27T23:44:16Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"60\",\"latitude\":\"34.09818\",\"longitude\":\"-118.415734\",\"offsetlat\":\"34.103149\",\"offsetlon\":\"-118.416252\",\"radius\":\"4600\",\"name\":null,\"line1\":\"1472 Donhill Dr\",\"line2\":\"Los Angeles, CA 90210\",\"line3\":null,\"line4\":\"United States\",\"house\":\"1472\",\"street\":\"Donhill Dr\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"90210\",\"neighborhood\":\"Bel Air-Beverly Crest\",\"city\":\"Los Angeles\",\"county\":\"Los Angeles\",\"state\":\"California\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"CA\",\"countycode\":null,\"uzip\":\"90210\",\"hash\":null,\"woeid\":\"12795711\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 00:20:16 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='10001-5555'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine6.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 28 Oct 2013 00:20:16 GMT"],"Server":["YTS/1.20.13"],"Age":["1"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-28T00:20:17Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"60\",\"latitude\":\"40.749779\",\"longitude\":\"-73.995552\",\"offsetlat\":\"40.749779\",\"offsetlon\":\"-73.995552\",\"radius\":\"1400\",\"name\":null,\"line1\":\"300 W 30th St\",\"line2\":\"New York, NY 10001\",\"line3\":null,\"line4\":\"United States\",\"house\":\"300\",\"street\":\"W 30th St\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"10001\",\"neighborhood\":\"Chelsea\",\"city\":\"New York\",\"county\":\"New York\",\"state\":\"New York\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"NY\",\"countycode\":\"NY\",\"uzip\":\"10001\",\"hash\":null,\"woeid\":\"12761333\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 00:20:17 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='40.756054,-73.986951'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine5.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 28 Oct 2013 00:07:10 GMT"],"Server":["YTS/1.20.13"],"Age":["787"],"Content-Length":["696"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-28T00:07:10Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"87\",\"latitude\":\"40.756054\",\"longitude\":\"-73.986951\",\"offsetlat\":\"40.756054\",\"offsetlon\":\"-73.986951\",\"radius\":\"400\",\"name\":\"40.756054,-73.986951\",\"line1\":\"601 7th Ave\",\"line2\":\"New York, NY 10036\",\"line3\":null,\"line4\":\"United States\",\"house\":\"601\",\"street\":\"7th Ave\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"10036\",\"neighborhood\":\"Theater District-Times Square\",\"city\":\"New York\",\"county\":\"New York County\",\"state\":\"New York\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"NY\",\"countycode\":\"NY\",\"uzip\":\"10036\",\"hash\":\"AC013DD2F1F6EAB9\",\"woeid\":\"12761367\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 00:20:18 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='Paris,%20France'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine4.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 28 Oct 2013 00:07:10 GMT"],"Server":["YTS/1.20.13"],"Age":["788"],"Content-Length":["626"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-28T00:07:10Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"40\",\"latitude\":\"48.85693\",\"longitude\":\"2.3412\",\"offsetlat\":\"48.85693\",\"offsetlon\":\"2.3412\",\"radius\":\"13700\",\"name\":null,\"line1\":\"15, Pont Neuf\",\"line2\":\"75001 Paris\",\"line3\":null,\"line4\":\"France\",\"house\":\"15\",\"street\":\"Pont Neuf\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"75001\",\"neighborhood\":\"Saint-Germain l'Auxerrois\",\"city\":\"Paris\",\"county\":\"Paris\",\"state\":\"Ile-de-France\",\"country\":\"France\",\"countrycode\":\"FR\",\"statecode\":null,\"countycode\":\"75\",\"uzip\":\"75001\",\"hash\":null,\"woeid\":\"12727257\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 00:20:18 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='T5B%204M9'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine4.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 28 Oct 2013 00:08:13 GMT"],"Server":["YTS/1.20.13"],"Age":["725"],"Content-Length":["623"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-28T00:08:13Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"60\",\"latitude\":\"53.57049\",\"longitude\":\"-113.458122\",\"offsetlat\":\"53.570492\",\"offsetlon\":\"-113.458122\",\"radius\":\"200\",\"name\":null,\"line1\":\"7556 118 Ave NW\",\"line2\":\"Edmonton, AB T5B\",\"line3\":null,\"line4\":\"Canada\",\"house\":\"7556\",\"street\":\"118 Ave NW\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"T5B\",\"neighborhood\":\"Montrose\",\"city\":\"Edmonton\",\"county\":\"Alberta\",\"state\":\"Alberta\",\"country\":\"Canada\",\"countrycode\":\"CA\",\"statecode\":\"AB\",\"countycode\":\"AB\",\"uzip\":\"T5B\",\"hash\":null,\"woeid\":\"12698082\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 00:20:19 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='New%20York,%20NY'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine3.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 28 Oct 2013 00:08:13 GMT"],"Server":["YTS/1.20.13"],"Age":["726"],"Content-Length":["639"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-28T00:08:14Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"40\",\"latitude\":\"40.71455\",\"longitude\":\"-74.00712\",\"offsetlat\":\"40.71455\",\"offsetlon\":\"-74.00712\",\"radius\":\"14400\",\"name\":null,\"line1\":\"85 Chambers St\",\"line2\":\"New York, NY 10007\",\"line3\":null,\"line4\":\"United States\",\"house\":\"85\",\"street\":\"Chambers St\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"10007\",\"neighborhood\":\"Tribeca\",\"city\":\"New York\",\"county\":\"New York\",\"state\":\"New York\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"NY\",\"countycode\":\"NY\",\"uzip\":\"10007\",\"hash\":null,\"woeid\":\"12761339\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 00:20:19 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://weather.yahooapis.com/forecastrss?p=USNY0996","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Mon, 28 Oct 2013 04:13:23 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":["max-age=200, public"],"Vary":["Accept-Encoding"],"Content-Type":["text/xml;charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Server":["YTS/1.20.28"]},"body":{"encoding":"UTF-8","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 - New York, NY</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/New_York__NY/*http://weather.yahoo.com/forecast/USNY0996_f.html</link>\n<description>Yahoo! Weather for New York, NY</description>\n<language>en-us</language>\n<lastBuildDate>Sun, 27 Oct 2013 11:50 pm EDT</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"New York\" region=\"NY\" country=\"US\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"47\" direction=\"280\" speed=\"6\" />\n<yweather:atmosphere humidity=\"46\" visibility=\"10\" pressure=\"30.15\" rising=\"1\" />\n<yweather:astronomy sunrise=\"7:18 am\" sunset=\"5:56 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 New York, NY at 11:50 pm EDT</title>\n<geo:lat>40.67</geo:lat>\n<geo:long>-73.94</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/New_York__NY/*http://weather.yahoo.com/forecast/USNY0996_f.html</link>\n<pubDate>Sun, 27 Oct 2013 11:50 pm EDT</pubDate>\n<yweather:condition text=\"Fair\" code=\"33\" temp=\"49\" date=\"Sun, 27 Oct 2013 11:50 pm EDT\" />\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, 49 F<BR />\n<BR /><b>Forecast:</b><BR />\nSun - Clear. High: 56 Low: 39<br />\nMon - Sunny. High: 62 Low: 40<br />\nTue - Mostly Sunny. High: 53 Low: 44<br />\nWed - Partly Cloudy. High: 58 Low: 45<br />\nThu - Mostly Cloudy. High: 64 Low: 58<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/New_York__NY/*http://weather.yahoo.com/forecast/USNY0996_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=\"Sun\" date=\"27 Oct 2013\" low=\"39\" high=\"56\" text=\"Clear\" code=\"31\" />\n<yweather:forecast day=\"Mon\" date=\"28 Oct 2013\" low=\"40\" high=\"62\" text=\"Sunny\" code=\"32\" />\n<yweather:forecast day=\"Tue\" date=\"29 Oct 2013\" low=\"44\" high=\"53\" text=\"Mostly Sunny\" code=\"34\" />\n<yweather:forecast day=\"Wed\" date=\"30 Oct 2013\" low=\"45\" high=\"58\" text=\"Partly Cloudy\" code=\"30\" />\n<yweather:forecast day=\"Thu\" date=\"31 Oct 2013\" low=\"58\" high=\"64\" text=\"Mostly Cloudy\" code=\"28\" />\n<guid isPermaLink=\"false\">USNY0996_2013_10_31_7_00_EDT</guid>\n</item>\n</channel>\n</rss>\n\n<!-- fan1697.sports.bf1.yahoo.com Mon Oct 28 04:13:23 PST 2013 -->\n"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 04:13:23 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210&region=US&sensor=false","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 26 Oct 2013 14:59:49 GMT"],"Expires":["Sun, 27 Oct 2013 14:59:49 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"],"Alternate-Protocol":["80:quic"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"UTF-8","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 County\",\n \"short_name\" : \"Los Angeles County\",\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.1354771,\n \"lng\" : -118.3867129\n },\n \"southwest\" : {\n \"lat\" : 34.065094,\n \"lng\" : -118.4423781\n }\n },\n \"location\" : {\n \"lat\" : 34.1030032,\n \"lng\" : -118.4104684\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.1354771,\n \"lng\" : -118.3867129\n },\n \"southwest\" : {\n \"lat\" : 34.065094,\n \"lng\" : -118.4423781\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:59:49 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20NY&sensor=false","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 26 Oct 2013 14:59:49 GMT"],"Expires":["Sun, 27 Oct 2013 14:59:49 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"],"Alternate-Protocol":["80:quic"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"UTF-8","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.91525559999999,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959961,\n \"lng\" : -74.2590879\n }\n },\n \"location\" : {\n \"lat\" : 40.7143528,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91525559999999,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.496006,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:59:49 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=47,-114&sensor=false","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 26 Oct 2013 14:59:49 GMT"],"Expires":["Sun, 27 Oct 2013 14:59:49 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"],"Alternate-Protocol":["80:quic"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"UTF-8","string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Snow Bowl Road\",\n \"short_name\" : \"Snow Bowl Rd\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"Lolo National Forest\",\n \"short_name\" : \"Lolo National Forest\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"Missoula\",\n \"short_name\" : \"Missoula\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Missoula\",\n \"short_name\" : \"Missoula\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Montana\",\n \"short_name\" : \"MT\",\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\" : \"59808\",\n \"short_name\" : \"59808\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"Snow Bowl Road, Lolo National Forest, Missoula, MT 59808, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 47.0136638,\n \"lng\" : -113.9942235\n },\n \"southwest\" : {\n \"lat\" : 46.9874241,\n \"lng\" : -114.0159023\n }\n },\n \"location\" : {\n \"lat\" : 47.000623,\n \"lng\" : -114.0016495\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 47.0136638,\n \"lng\" : -113.9942235\n },\n \"southwest\" : {\n \"lat\" : 46.9874241,\n \"lng\" : -114.0159023\n }\n }\n },\n \"types\" : [ \"route\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"59808\",\n \"short_name\" : \"59808\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Missoula\",\n \"short_name\" : \"Missoula\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Montana\",\n \"short_name\" : \"MT\",\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\" : \"Missoula, MT 59808, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 47.13832,\n \"lng\" : -113.8741011\n },\n \"southwest\" : {\n \"lat\" : 46.856217,\n \"lng\" : -114.276711\n }\n },\n \"location\" : {\n \"lat\" : 46.9870522,\n \"lng\" : -114.1335617\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 47.13832,\n \"lng\" : -113.9710231\n },\n \"southwest\" : {\n \"lat\" : 46.856217,\n \"lng\" : -114.276711\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Missoula\",\n \"short_name\" : \"Missoula\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Montana\",\n \"short_name\" : \"MT\",\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\" : \"Missoula, MT, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 47.600538,\n \"lng\" : -113.3024131\n },\n \"southwest\" : {\n \"lat\" : 46.63153,\n \"lng\" : -114.7972351\n }\n },\n \"location\" : {\n \"lat\" : 47.0240503,\n \"lng\" : -113.6869923\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 47.600538,\n \"lng\" : -113.3024131\n },\n \"southwest\" : {\n \"lat\" : 46.63153,\n \"lng\" : -114.7972351\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Missoula\",\n \"short_name\" : \"Missoula\",\n \"types\" : [ \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Missoula, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 47.600517,\n \"lng\" : -113.3024131\n },\n \"southwest\" : {\n \"lat\" : 46.631695,\n \"lng\" : -114.7972351\n }\n },\n \"location\" : {\n \"lat\" : 47.0240503,\n \"lng\" : -113.6869923\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 47.600517,\n \"lng\" : -113.3024131\n },\n \"southwest\" : {\n \"lat\" : 46.631695,\n \"lng\" : -114.7972351\n }\n }\n },\n \"types\" : [ \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Montana\",\n \"short_name\" : \"MT\",\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\" : \"Montana, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 49.00139,\n \"lng\" : -104.039563\n },\n \"southwest\" : {\n \"lat\" : 44.3582089,\n \"lng\" : -116.050003\n }\n },\n \"location\" : {\n \"lat\" : 46.8796822,\n \"lng\" : -110.3625658\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.00139,\n \"lng\" : -104.039563\n },\n \"southwest\" : {\n \"lat\" : 44.3582089,\n \"lng\" : -116.050003\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\" : 90,\n \"lng\" : 180\n },\n \"southwest\" : {\n \"lat\" : -90,\n \"lng\" : -180\n }\n },\n \"location\" : {\n \"lat\" : 37.09024,\n \"lng\" : -95.712891\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.38,\n \"lng\" : -66.94\n },\n \"southwest\" : {\n \"lat\" : 25.82,\n \"lng\" : -124.39\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:59:49 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://forecast.weather.gov/MapClick.php?textField1=34.10&textField2=-118.41","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache/2.2.15 (Red Hat)"],"Content-Type":["text/html; charset=UTF-8"],"Expires":["Sat, 26 Oct 2013 15:00:22 GMT"],"Cache-Control":["max-age=0, no-cache, no-store"],"Pragma":["no-cache"],"Date":["Sat, 26 Oct 2013 15:00:22 GMT"],"Transfer-Encoding":["chunked"],"Connection":["Transfer-Encoding","keep-alive"],"Set-Cookie":["PHPSESSID=vqdufnetk6qp6m89ilvlffc1a3; path=/"]},"body":{"encoding":"UTF-8","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<script type=\"text/javascript\" src=\"/js/federated-analytics.js\"></script>\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\" alt=\"National Weather Service\"/></a>\r\n\t\t\t<a href=\"http://www.commerce.gov\" class=\"header-doc\"><img src=\"/css/images/header_doc.png\" alt=\"United States Department of Commerce\"/></a>\r\n <a href=\"http://www.noaa.gov\" class=\"header-noaa\" title=\"National Oceanic and Atmospheric Administration\"></a>\r\n </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://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;'>Cold Continues Across Eastern U.S., Rain Forecast from Four Corners to Southern Plains</h1><p>Unseasonably cold conditions will continue through the weekend across the central and eastern U.S., with temperatures 10-20 degrees below normal for many locations east of the Mississippi. Meanwhile, rain is forecast into the weekend from the Four Corners region to the southern Plains. <br /><a href='http://go.usa.gov/RRX' target='_blank'>Read More...</a></p></div></div>\r\n\t\t\r\n \t<script type=\"text/javascript\">$.get(\"siteNews.php\", {a:\"lox\"},function(response){ if (response !== \"false\") $(\"#topnews\").html($(response).find(\"#topnews\").html()); });</script><script language=javascript>document.title =' 7-Day Forecast for Latitude 34.1&deg;N and Longitude 118.42&deg;W (Elev. 774 ft)';</script><script type=\"text/javascript\" src=\"JavaScript/json.js\"></script><script type=\"text/javascript\" src=\"JavaScript/google_map.js\"></script><div class=\"div-full hazardous-conditions\"><h1>Hazardous Weather Conditions</h1><ul><li><a href=\"showsigwx.php?warnzone=CAZ041&warncounty=CAC037&firewxzone=CAZ241&local_place1=&product1=Dense+Fog+Advisory\">Dense Fog Advisory is in effect until October 26, 09:00 AM PDT</a></li><li><a href=\"showsigwx.php?warnzone=CAZ041&warncounty=CAC037&firewxzone=CAZ241&local_place1=&product1=Special+Weather+Statement\">Special Weather Statement is in effect </a></li></ul></div><div class=\"div-full forecast-section current-conditions\" ><div class=\"three-fifth-first\"><h1>Current Conditions</h1></div><!-- end of div class three-fifth-first --><div class=\"two-fifth-last forecast-section-options\"><p><a href=\"http://forecast-md.weather.gov/MapClick.php?lat=34.10&lon=-118.41&FcstType=textr&unit=0&lg=sp\"><b>En Espa&ntilde;ol</b></a></p><!-- AddThis Button BEGIN -->\r\n\t<div class=\"addthis_toolbox addthis_default_style \">\r\n\t<a href=\"http://www.addthis.com/bookmark.php?v=250&amp;pubid=ra-5127a6364d551d04\" class=\"addthis_button_compact\">Share</a> \r\n\t<span class=\"addthis_separator\">|</span>\r\n\t<a class=\"addthis_button_preferred_1\"></a>\r\n\t<a class=\"addthis_button_preferred_2\"></a>\r\n\t<a class=\"addthis_button_preferred_3\"></a>\r\n\t<a class=\"addthis_button_preferred_4\"></a>\r\n\t<a class=\"addthis_button_preferred_5\"></a>\r\n\t</div>\r\n\t<script type=\"text/javascript\">var addthis_config = {\"data_track_addressbar\":true};</script>\r\n\t<script type=\"text/javascript\" src=\"http://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5127a6364d551d04\"></script>\r\n\t<!-- AddThis Button END --></div><!-- end of div class two-fifth-last forecast-section-options --></div><!-- end of div class div-full forecast-section current-conditions --><div class=\"div-full current-conditions\"><div class=\"one-third-first\"><div class=\"div-half\"><p class=\"feature\"><img src=\"/images/wtf/large/nfg.png\" alt=\"\" width=\"134\" height=\"134\" /></p></div><div class=\"div-half-right\"><p class=\"myforecast-current\">Fog</p><p class=\"myforecast-current-lrg\">57&deg;F</p><p><span class=\"myforecast-current-sm\">14&deg;C</span></p></div></div><div class=\"one-third-first\"><ul class=\"current-conditions-detail\"><li><span class=\"label\">Humidity</span>96%</li><li><span class=\"label\">Wind Speed</span>calm</li><li><span class=\"label\">Barometer</span>30.08 in (1018.5 mb)</li><li><span class=\"label\">Dewpoint</span>56&deg;F (13&deg;C)</li><li><span class=\"label\">Visibility</span>0.25 mi</li></ul><p class=\"current-conditions-timestamp\">Last Update on 26 Oct 6:51 am PDT </p><br></div><div class=\"one-third-last\"><p style=\"font-size: 8pt;\">Current conditions at</p><p class=\"current-conditions-location\">Santa Monica, Santa Monica Municipal Airport (KSMO)</p><p> Lat: 34.01583 Lon: -118.45139 Elev: 174ft.<br /></p><div class=\"current-conditions-extra\"><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></div></div></div><div class=\"forecast-separator\"></div><div class=\"div-full forecast-section\"><div class=\"three-fifth-first\"><h1>4 Miles W Hollywood CA</h1><h2>7 Day Forecast</h2></div><div class=\"two-fifth-last sitename\"><p class=\"sitename-name\"><a href=\"http://www.wrh.noaa.gov/lox\">Los Angeles/Oxnard, CA</a></p><p class=\"sitename-class\">NWS Weather Forecast Office</p></div><!-- end of div class two-fifth-last sitename --></div><!-- end of div class div-full forecast-section --><div class=\"div-full point-forecast-icons\"> <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: 80 &deg;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: 59 &deg;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: 75 &deg;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/nbkn.png\" width=\"86\" height=\"86\" alt=\"Increasing Clouds\" title=\"Increasing Clouds\" /></p>\n <p>Increasing<br>Clouds<br></p>\n <p class=\"point-forecast-icons-low\">Low: 56 &deg;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/shra40.png\" width=\"86\" height=\"86\" alt=\"Chance Showers Chance for Measurable Precipitation 40%\" title=\"Chance Showers Chance for Measurable Precipitation 40%\" /></p>\n <p>Chance<br>Showers<br></p>\n <p class=\"point-forecast-icons-high\">High: 63 &deg;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/nshra50.png\" width=\"86\" height=\"86\" alt=\"Chance Showers Chance for Measurable Precipitation 50%\" title=\"Chance Showers Chance for Measurable Precipitation 50%\" /></p>\n <p>Chance<br>Showers<br></p>\n <p class=\"point-forecast-icons-low\">Low: 52 &deg;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/hi_shwrs20.png\" width=\"86\" height=\"86\" alt=\"Slight Chance Showers Chance for Measurable Precipitation 20%\" title=\"Slight Chance Showers Chance for Measurable Precipitation 20%\" /></p>\n <p>Slight Chc<br>Showers<br></p>\n <p class=\"point-forecast-icons-high\">High: 63 &deg;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: 53 &deg;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: 69 &deg;F</p>\n </div>\n</div><div class=\"partial-width-borderbottom\"><div class=\"two-third-first point-forecast-7-day\"> <ul class=\"point-forecast-7-day\">\n <li class=\"row-odd\"><span class=\"label\">Today</span> Sunny, with a high near 80. Northwest wind around 5 mph becoming calm in the afternoon. </li>\n <li class=\"row-even\"><span class=\"label\">Tonight</span> Mostly clear, with a low around 59. West southwest wind 5 to 10 mph becoming light and variable in the evening. </li>\n <li class=\"row-odd\"><span class=\"label\">Sunday</span> Sunny, with a high near 75. Light and variable wind becoming south southwest 5 to 10 mph in the afternoon. </li>\n <li class=\"row-even\"><span class=\"label\">Sunday Night</span> Increasing clouds, with a low around 56. South wind 5 to 10 mph becoming light southeast in the evening. Winds could gust as high as 15 mph. </li>\n <li class=\"row-odd\"><span class=\"label\">Monday</span> A 40 percent chance of showers, mainly after 11am. Mostly cloudy, with a high near 63. Southwest wind 5 to 15 mph becoming south southeast in the morning. Winds could gust as high as 20 mph. </li>\n <li class=\"row-even\"><span class=\"label\">Monday Night</span> A 50 percent chance of showers. Mostly cloudy, with a low around 52.</li>\n <li class=\"row-odd\"><span class=\"label\">Tuesday</span> A 20 percent chance of showers before 11am. Mostly sunny, with a high near 63.</li>\n <li class=\"row-even\"><span class=\"label\">Tuesday Night</span> Mostly clear, with a low around 53.</li>\n <li class=\"row-odd\"><span class=\"label\">Wednesday</span> Sunny, with a high near 69.</li>\n <li class=\"row-even\"><span class=\"label\">Wednesday Night</span> Mostly clear, with a low around 54.</li>\n <li class=\"row-odd\"><span class=\"label\">Thursday</span> Sunny, with a high near 73.</li>\n <li class=\"row-even\"><span class=\"label\">Thursday Night</span> Mostly clear, with a low around 56.</li>\n <li class=\"row-odd\"><span class=\"label\">Friday</span> Sunny, with a high near 78.</li>\n </ul>\n<p>&nbsp;</p><h1>Additional Forecasts and Information</h1><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><div class=\"div-full\"><p>&nbsp;</p><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 /><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=text&TextType=2\">Printable Forecast</a><br /><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=text&TextType=1\">Text Only Forecast</a></div><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 /><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=digital\">Tabular Forecast</a><br /><a href=\"afm/PointClick.php?lat=34.10000&lon=-118.41000\">Quick Forecast</a></div><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-md.weather.gov/MapClick.php?lat=34.10&lon=-118.41&FcstType=text&unit=1&lg=en\">International System of Units</a><br /><a href=\"http://www.srh.weather.gov/srh/jetstream/webweather/pinpoint_max.htm\">About Point Forecasts</a><br /><a href=\"http://www.wrh.noaa.gov/forecast/wxtables/index.php?lat=34.10000&lon=-118.41000\">Forecast Weather Table Interface</a></div></div><div class=\"div-full\"><div class=\"div-third\"><br><a href=\"http://www.wrh.noaa.gov/mesowest/mwmap.php?map=lox\" target=\"_self\">Observation Map (Regional)</a><br /><a href=\"http://www.wrh.noaa.gov/mesowest/mwmap.php?map=la\" target=\"_self\">Observation Map (Los Angeles)</a><br /><a href=\"http://www.wrh.noaa.gov/warnings.php?wfo=lox\" target=\"_self\">Warnings</a><br /></div><div class=\"div-third\"><br><a href=\"http://www.wrh.noaa.gov/forecasts/graphical/sectors/lox.php\" target=\"_self\">Experimental Graphical Forecasts</a><br /><a href=\"http://www.wrh.noaa.gov/lox/getprod.php?pil=qps&sid=lox&format=pre\" target=\"_self\">Quantitative Precipitation Forecast</a><br /><a href=\"http://www.weather.gov/climate/index.php?wfo=lox\" target=\"_self\">Climatology</a><br /></div><div class=\"div-third\"><br><a href=\"http://www.nws.noaa.gov/wtf/udaf/area/?site=lox\" target=\"_self\">User Defined Area</a><br /></div><p>&nbsp;</p></div></div><div class=\"one-third-last point-forecast-right\"><div id=\"point-forecast-info\"><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&deg;N 118.42&deg;W&nbsp;&nbsp; <strong>Elevation:</strong> 774 ft</p></div></form></div><h2>FORECAST DETAILS</h2><ul class=\"point-forecast-info\"><li><span class=\"label\">Point Forecast:</span> <b>Point Forecast:</b> 4 Miles W Hollywood CA<br>&nbsp;34.1&deg;N 118.42&deg;W (Elev. 774 ft)</li><li><span class=\"label\"><a href=\"http://www.weather.gov/glossary/index.php?word=Last+update\">Last Update</a>:</span> 7:10 am PDT Oct 26, 2013</li><li><span class=\"label\"><a href=\"http://www.weather.gov/glossary/index.php?word=forecast+valid+for\">Forecast Valid</a>:</span> 9am PDT Oct 26, 2013-6pm PDT Nov 1, 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><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></li></ul></div><div id=\"radar\"><h2>RADAR &amp; SATELLITE IMAGES</h2><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>&nbsp;<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></div><div id=\"hourly\"><h2>HOURLY WEATHER GRAPH </h2><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></div><div id=\"ndfd\"><h2>NATIONAL DIGITAL FORECAST DATABASE</h2><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>&nbsp;<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></div></div></div><script language='javascript'>window.load = load_google_map('{\"centroid_lat\":\"34.10000\",\"centroid_lon\":\"-118.41000\",\"lat1\":\"34.084\",\"lon1\":\"-118.432\",\"lat2\":\"34.106\",\"lon2\":\"-118.437\",\"lat3\":\"34.11\",\"lon3\":\"-118.41\",\"lat4\":\"34.088\",\"lon4\":\"-118.405\"}', 11, '', 'http://forecast.weather.gov');</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\" alt=\"Follow us on Twitter\" height=\"16\" />&nbsp;&nbsp;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\" alt=\"Follow us on Facebook\" />&nbsp;&nbsp;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\" alt=\"NWS RSS Feed\" />&nbsp;&nbsp;NWS RSS Feed\r\n\t\t\t\t\t\t</a>\r\n \t</div>\r\n \t\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 <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&amp;current_type=all&amp;fcst_type=obs&amp;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>&nbsp;</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 <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.noaa.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>&nbsp;</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://www.weather.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.noaawatch.gov/briefing.php\">Daily Briefing </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.nws.noaa.gov/climate\">Climate </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.aviationweather.gov/\">Aviation </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://water.weather.gov/ahps/\">Water </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://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/skywarn/\">Storm Spotters </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=\"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 <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>&nbsp;</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\r\n\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\r\n\t\t\t<div class=\"footer-legal-column\">\r\n\t\t\t\t<p>\r\n\t\t\t\t\t<a href=\"http://www.commerce.gov\">US Dept of Commerce</a><br />\r\n\t\t\t\t\t<a href=\"http://www.noaa.gov\">National Oceanic and Atmospheric Administration</a><br />\r\n\t\t\t\t\t<a href=\"http://www.weather.gov\">National Weather Service</a><br />\r\n \t\t\t\t<a href=\"http://www.weather.gov/lox\">Los Angeles, CA</a><br /> \t\t\t</p>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"footer-legal-column2\">\r\n\t\t\t\t<a href=\"http://www.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://www.weather.gov/help\">Help</a><br />\r\n\t\t\t\t<a href=\"http://www.weather.gov/glossary\">Glossary</a></div>\r\n\r\n\t\t\t<div class=\"footer-legal-column3\">\r\n\t\t\t\t<a href=\"http://www.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://www.weather.gov/about\">About Us</a><br />\r\n\t\t\t\t<a href=\"http://www.weather.gov/careers\">Career Opportunities</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t\r\n</div><!-- end of <div class=\"footer-legal\"> -->\r\n\t\t\r\n\r\n</body>\r\n</html>"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:00:22 GMT"},{"request":{"method":"get","uri":"http://forecast.weather.gov/MapClick.php?textField1=34.10&textField2=-118.41","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache/2.2.15 (Red Hat)"],"Content-Type":["text/html; charset=UTF-8"],"Expires":["Sat, 26 Oct 2013 15:00:23 GMT"],"Cache-Control":["max-age=0, no-cache, no-store"],"Pragma":["no-cache"],"Date":["Sat, 26 Oct 2013 15:00:23 GMT"],"Transfer-Encoding":["chunked"],"Connection":["Transfer-Encoding","keep-alive"],"Set-Cookie":["PHPSESSID=gklo5u71jti0tvn75kno21j8c7; path=/"]},"body":{"encoding":"UTF-8","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<script type=\"text/javascript\" src=\"/js/federated-analytics.js\"></script>\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\" alt=\"National Weather Service\"/></a>\r\n\t\t\t<a href=\"http://www.commerce.gov\" class=\"header-doc\"><img src=\"/css/images/header_doc.png\" alt=\"United States Department of Commerce\"/></a>\r\n <a href=\"http://www.noaa.gov\" class=\"header-noaa\" title=\"National Oceanic and Atmospheric Administration\"></a>\r\n </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://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;'>Cold Continues Across Eastern U.S., Rain Forecast from Four Corners to Southern Plains</h1><p>Unseasonably cold conditions will continue through the weekend across the central and eastern U.S., with temperatures 10-20 degrees below normal for many locations east of the Mississippi. Meanwhile, rain is forecast into the weekend from the Four Corners region to the southern Plains. <br /><a href='http://go.usa.gov/RRX' target='_blank'>Read More...</a></p></div></div>\r\n\t\t\r\n \t<script type=\"text/javascript\">$.get(\"siteNews.php\", {a:\"lox\"},function(response){ if (response !== \"false\") $(\"#topnews\").html($(response).find(\"#topnews\").html()); });</script><script language=javascript>document.title =' 7-Day Forecast for Latitude 34.1&deg;N and Longitude 118.42&deg;W (Elev. 774 ft)';</script><script type=\"text/javascript\" src=\"JavaScript/json.js\"></script><script type=\"text/javascript\" src=\"JavaScript/google_map.js\"></script><div class=\"div-full hazardous-conditions\"><h1>Hazardous Weather Conditions</h1><ul><li><a href=\"showsigwx.php?warnzone=CAZ041&warncounty=CAC037&firewxzone=CAZ241&local_place1=&product1=Dense+Fog+Advisory\">Dense Fog Advisory is in effect until October 26, 09:00 AM PDT</a></li><li><a href=\"showsigwx.php?warnzone=CAZ041&warncounty=CAC037&firewxzone=CAZ241&local_place1=&product1=Special+Weather+Statement\">Special Weather Statement is in effect </a></li></ul></div><div class=\"div-full forecast-section current-conditions\" ><div class=\"three-fifth-first\"><h1>Current Conditions</h1></div><!-- end of div class three-fifth-first --><div class=\"two-fifth-last forecast-section-options\"><p><a href=\"http://forecast-md.weather.gov/MapClick.php?lat=34.10&lon=-118.41&FcstType=textr&unit=0&lg=sp\"><b>En Espa&ntilde;ol</b></a></p><!-- AddThis Button BEGIN -->\r\n\t<div class=\"addthis_toolbox addthis_default_style \">\r\n\t<a href=\"http://www.addthis.com/bookmark.php?v=250&amp;pubid=ra-5127a6364d551d04\" class=\"addthis_button_compact\">Share</a> \r\n\t<span class=\"addthis_separator\">|</span>\r\n\t<a class=\"addthis_button_preferred_1\"></a>\r\n\t<a class=\"addthis_button_preferred_2\"></a>\r\n\t<a class=\"addthis_button_preferred_3\"></a>\r\n\t<a class=\"addthis_button_preferred_4\"></a>\r\n\t<a class=\"addthis_button_preferred_5\"></a>\r\n\t</div>\r\n\t<script type=\"text/javascript\">var addthis_config = {\"data_track_addressbar\":true};</script>\r\n\t<script type=\"text/javascript\" src=\"http://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5127a6364d551d04\"></script>\r\n\t<!-- AddThis Button END --></div><!-- end of div class two-fifth-last forecast-section-options --></div><!-- end of div class div-full forecast-section current-conditions --><div class=\"div-full current-conditions\"><div class=\"one-third-first\"><div class=\"div-half\"><p class=\"feature\"><img src=\"/images/wtf/large/nfg.png\" alt=\"\" width=\"134\" height=\"134\" /></p></div><div class=\"div-half-right\"><p class=\"myforecast-current\">Fog</p><p class=\"myforecast-current-lrg\">57&deg;F</p><p><span class=\"myforecast-current-sm\">14&deg;C</span></p></div></div><div class=\"one-third-first\"><ul class=\"current-conditions-detail\"><li><span class=\"label\">Humidity</span>96%</li><li><span class=\"label\">Wind Speed</span>calm</li><li><span class=\"label\">Barometer</span>30.08 in (1018.5 mb)</li><li><span class=\"label\">Dewpoint</span>56&deg;F (13&deg;C)</li><li><span class=\"label\">Visibility</span>0.25 mi</li></ul><p class=\"current-conditions-timestamp\">Last Update on 26 Oct 6:51 am PDT </p><br></div><div class=\"one-third-last\"><p style=\"font-size: 8pt;\">Current conditions at</p><p class=\"current-conditions-location\">Santa Monica, Santa Monica Municipal Airport (KSMO)</p><p> Lat: 34.01583 Lon: -118.45139 Elev: 174ft.<br /></p><div class=\"current-conditions-extra\"><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></div></div></div><div class=\"forecast-separator\"></div><div class=\"div-full forecast-section\"><div class=\"three-fifth-first\"><h1>4 Miles W Hollywood CA</h1><h2>7 Day Forecast</h2></div><div class=\"two-fifth-last sitename\"><p class=\"sitename-name\"><a href=\"http://www.wrh.noaa.gov/lox\">Los Angeles/Oxnard, CA</a></p><p class=\"sitename-class\">NWS Weather Forecast Office</p></div><!-- end of div class two-fifth-last sitename --></div><!-- end of div class div-full forecast-section --><div class=\"div-full point-forecast-icons\"> <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: 80 &deg;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: 59 &deg;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: 75 &deg;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/nbkn.png\" width=\"86\" height=\"86\" alt=\"Increasing Clouds\" title=\"Increasing Clouds\" /></p>\n <p>Increasing<br>Clouds<br></p>\n <p class=\"point-forecast-icons-low\">Low: 56 &deg;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/shra40.png\" width=\"86\" height=\"86\" alt=\"Chance Showers Chance for Measurable Precipitation 40%\" title=\"Chance Showers Chance for Measurable Precipitation 40%\" /></p>\n <p>Chance<br>Showers<br></p>\n <p class=\"point-forecast-icons-high\">High: 63 &deg;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/nshra50.png\" width=\"86\" height=\"86\" alt=\"Chance Showers Chance for Measurable Precipitation 50%\" title=\"Chance Showers Chance for Measurable Precipitation 50%\" /></p>\n <p>Chance<br>Showers<br></p>\n <p class=\"point-forecast-icons-low\">Low: 52 &deg;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/hi_shwrs20.png\" width=\"86\" height=\"86\" alt=\"Slight Chance Showers Chance for Measurable Precipitation 20%\" title=\"Slight Chance Showers Chance for Measurable Precipitation 20%\" /></p>\n <p>Slight Chc<br>Showers<br></p>\n <p class=\"point-forecast-icons-high\">High: 63 &deg;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: 53 &deg;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: 69 &deg;F</p>\n </div>\n</div><div class=\"partial-width-borderbottom\"><div class=\"two-third-first point-forecast-7-day\"> <ul class=\"point-forecast-7-day\">\n <li class=\"row-odd\"><span class=\"label\">Today</span> Sunny, with a high near 80. Northwest wind around 5 mph becoming calm in the afternoon. </li>\n <li class=\"row-even\"><span class=\"label\">Tonight</span> Mostly clear, with a low around 59. West southwest wind 5 to 10 mph becoming light and variable in the evening. </li>\n <li class=\"row-odd\"><span class=\"label\">Sunday</span> Sunny, with a high near 75. Light and variable wind becoming south southwest 5 to 10 mph in the afternoon. </li>\n <li class=\"row-even\"><span class=\"label\">Sunday Night</span> Increasing clouds, with a low around 56. South wind 5 to 10 mph becoming light southeast in the evening. Winds could gust as high as 15 mph. </li>\n <li class=\"row-odd\"><span class=\"label\">Monday</span> A 40 percent chance of showers, mainly after 11am. Mostly cloudy, with a high near 63. Southwest wind 5 to 15 mph becoming south southeast in the morning. Winds could gust as high as 20 mph. </li>\n <li class=\"row-even\"><span class=\"label\">Monday Night</span> A 50 percent chance of showers. Mostly cloudy, with a low around 52.</li>\n <li class=\"row-odd\"><span class=\"label\">Tuesday</span> A 20 percent chance of showers before 11am. Mostly sunny, with a high near 63.</li>\n <li class=\"row-even\"><span class=\"label\">Tuesday Night</span> Mostly clear, with a low around 53.</li>\n <li class=\"row-odd\"><span class=\"label\">Wednesday</span> Sunny, with a high near 69.</li>\n <li class=\"row-even\"><span class=\"label\">Wednesday Night</span> Mostly clear, with a low around 54.</li>\n <li class=\"row-odd\"><span class=\"label\">Thursday</span> Sunny, with a high near 73.</li>\n <li class=\"row-even\"><span class=\"label\">Thursday Night</span> Mostly clear, with a low around 56.</li>\n <li class=\"row-odd\"><span class=\"label\">Friday</span> Sunny, with a high near 78.</li>\n </ul>\n<p>&nbsp;</p><h1>Additional Forecasts and Information</h1><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><div class=\"div-full\"><p>&nbsp;</p><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 /><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=text&TextType=2\">Printable Forecast</a><br /><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=text&TextType=1\">Text Only Forecast</a></div><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 /><a href=\"MapClick.php?lat=34.10000&lon=-118.41&unit=0&lg=english&FcstType=digital\">Tabular Forecast</a><br /><a href=\"afm/PointClick.php?lat=34.10000&lon=-118.41000\">Quick Forecast</a></div><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-md.weather.gov/MapClick.php?lat=34.10&lon=-118.41&FcstType=text&unit=1&lg=en\">International System of Units</a><br /><a href=\"http://www.srh.weather.gov/srh/jetstream/webweather/pinpoint_max.htm\">About Point Forecasts</a><br /><a href=\"http://www.wrh.noaa.gov/forecast/wxtables/index.php?lat=34.10000&lon=-118.41000\">Forecast Weather Table Interface</a></div></div><div class=\"div-full\"><div class=\"div-third\"><br><a href=\"http://www.wrh.noaa.gov/mesowest/mwmap.php?map=lox\" target=\"_self\">Observation Map (Regional)</a><br /><a href=\"http://www.wrh.noaa.gov/mesowest/mwmap.php?map=la\" target=\"_self\">Observation Map (Los Angeles)</a><br /><a href=\"http://www.wrh.noaa.gov/warnings.php?wfo=lox\" target=\"_self\">Warnings</a><br /></div><div class=\"div-third\"><br><a href=\"http://www.wrh.noaa.gov/forecasts/graphical/sectors/lox.php\" target=\"_self\">Experimental Graphical Forecasts</a><br /><a href=\"http://www.wrh.noaa.gov/lox/getprod.php?pil=qps&sid=lox&format=pre\" target=\"_self\">Quantitative Precipitation Forecast</a><br /><a href=\"http://www.weather.gov/climate/index.php?wfo=lox\" target=\"_self\">Climatology</a><br /></div><div class=\"div-third\"><br><a href=\"http://www.nws.noaa.gov/wtf/udaf/area/?site=lox\" target=\"_self\">User Defined Area</a><br /></div><p>&nbsp;</p></div></div><div class=\"one-third-last point-forecast-right\"><div id=\"point-forecast-info\"><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&deg;N 118.42&deg;W&nbsp;&nbsp; <strong>Elevation:</strong> 774 ft</p></div></form></div><h2>FORECAST DETAILS</h2><ul class=\"point-forecast-info\"><li><span class=\"label\">Point Forecast:</span> <b>Point Forecast:</b> 4 Miles W Hollywood CA<br>&nbsp;34.1&deg;N 118.42&deg;W (Elev. 774 ft)</li><li><span class=\"label\"><a href=\"http://www.weather.gov/glossary/index.php?word=Last+update\">Last Update</a>:</span> 7:10 am PDT Oct 26, 2013</li><li><span class=\"label\"><a href=\"http://www.weather.gov/glossary/index.php?word=forecast+valid+for\">Forecast Valid</a>:</span> 9am PDT Oct 26, 2013-6pm PDT Nov 1, 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><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></li></ul></div><div id=\"radar\"><h2>RADAR &amp; SATELLITE IMAGES</h2><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>&nbsp;<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></div><div id=\"hourly\"><h2>HOURLY WEATHER GRAPH </h2><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></div><div id=\"ndfd\"><h2>NATIONAL DIGITAL FORECAST DATABASE</h2><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>&nbsp;<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></div></div></div><script language='javascript'>window.load = load_google_map('{\"centroid_lat\":\"34.10000\",\"centroid_lon\":\"-118.41000\",\"lat1\":\"34.084\",\"lon1\":\"-118.432\",\"lat2\":\"34.106\",\"lon2\":\"-118.437\",\"lat3\":\"34.11\",\"lon3\":\"-118.41\",\"lat4\":\"34.088\",\"lon4\":\"-118.405\"}', 11, '', 'http://forecast.weather.gov');</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\" alt=\"Follow us on Twitter\" height=\"16\" />&nbsp;&nbsp;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\" alt=\"Follow us on Facebook\" />&nbsp;&nbsp;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\" alt=\"NWS RSS Feed\" />&nbsp;&nbsp;NWS RSS Feed\r\n\t\t\t\t\t\t</a>\r\n \t</div>\r\n \t\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 <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&amp;current_type=all&amp;fcst_type=obs&amp;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>&nbsp;</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 <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.noaa.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>&nbsp;</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://www.weather.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.noaawatch.gov/briefing.php\">Daily Briefing </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.nws.noaa.gov/climate\">Climate </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.aviationweather.gov/\">Aviation </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://water.weather.gov/ahps/\">Water </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://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/skywarn/\">Storm Spotters </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=\"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 <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>&nbsp;</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\r\n\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\r\n\t\t\t<div class=\"footer-legal-column\">\r\n\t\t\t\t<p>\r\n\t\t\t\t\t<a href=\"http://www.commerce.gov\">US Dept of Commerce</a><br />\r\n\t\t\t\t\t<a href=\"http://www.noaa.gov\">National Oceanic and Atmospheric Administration</a><br />\r\n\t\t\t\t\t<a href=\"http://www.weather.gov\">National Weather Service</a><br />\r\n \t\t\t\t<a href=\"http://www.weather.gov/lox\">Los Angeles, CA</a><br /> \t\t\t</p>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"footer-legal-column2\">\r\n\t\t\t\t<a href=\"http://www.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://www.weather.gov/help\">Help</a><br />\r\n\t\t\t\t<a href=\"http://www.weather.gov/glossary\">Glossary</a></div>\r\n\r\n\t\t\t<div class=\"footer-legal-column3\">\r\n\t\t\t\t<a href=\"http://www.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://www.weather.gov/about\">About Us</a><br />\r\n\t\t\t\t<a href=\"http://www.weather.gov/careers\">Career Opportunities</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t\r\n</div><!-- end of <div class=\"footer-legal\"> -->\r\n\t\t\r\n\r\n</body>\r\n</html>"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:00:23 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://xoap.weather.com/search/search?where=Paris,%20France","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":301,"message":"Moved Permanently"},"headers":{"Date":["Sat, 26 Oct 2013 15:00:47 GMT"],"Server":["Apache"],"Location":["http://wxdata.weather.com/wxdata/search/search?where=Paris%252C%2520France"],"Content-Length":["347"],"Content-Type":["text/html; charset=iso-8859-1"]},"body":{"encoding":"UTF-8","string":"<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n<html><head>\n<title>301 Moved Permanently</title>\n</head><body>\n<h1>Moved Permanently</h1>\n<p>The document has moved <a href=\"http://wxdata.weather.com/wxdata/search/search?where=Paris%252C%2520France\">here</a>.</p>\n<hr>\n<address>Apache Server at xml.weather.com Port 80</address>\n</body></html>\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:00:47 GMT"},{"request":{"method":"get","uri":"http://xoap.weather.com/search/search?where=New%20York,%20NY","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":301,"message":"Moved Permanently"},"headers":{"Date":["Sat, 26 Oct 2013 15:00:47 GMT"],"Server":["Apache"],"Location":["http://wxdata.weather.com/wxdata/search/search?where=New%2520York%252C%2520NY"],"Content-Length":["350"],"Content-Type":["text/html; charset=iso-8859-1"]},"body":{"encoding":"UTF-8","string":"<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n<html><head>\n<title>301 Moved Permanently</title>\n</head><body>\n<h1>Moved Permanently</h1>\n<p>The document has moved <a href=\"http://wxdata.weather.com/wxdata/search/search?where=New%2520York%252C%2520NY\">here</a>.</p>\n<hr>\n<address>Apache Server at xml.weather.com Port 80</address>\n</body></html>\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:00:47 GMT"},{"request":{"method":"get","uri":"http://wxdata.weather.com/wxdata/search/search?where=Paris,%20France","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache-Coyote/1.1"],"Content-Type":["text/xml;charset=UTF-8"],"X-Varnish":["10275300"],"X-Cache-Hits":["0"],"Cache-Control":["max-age=300"],"Date":["Sat, 26 Oct 2013 15:03:25 GMT"],"Content-Length":["590"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"<search ver=\"3.0\">\n <loc id=\"FRXX0076\" type=\"1\">Paris, 75, France</loc><loc id=\"FRDO0206\" type=\"1\">Parisot, 24, France</loc><loc id=\"FRLG0038\" type=\"1\">Parisot, 47, France</loc><loc id=\"FRMP1691\" type=\"1\">Parisot, 81, France</loc><loc id=\"FRMP1692\" type=\"1\">Parisot, 82, France</loc><loc id=\"FRXX2071\" type=\"1\">Paris 09, 75, France</loc><loc id=\"FRXX6513\" type=\"1\">Paris 07, 75, France</loc><loc id=\"FRBR2141\" type=\"1\">Petit Paris, 29, France</loc><loc id=\"FRRA3239\" type=\"1\">Les Paris, 73, France</loc><loc id=\"FRFN0175\" type=\"1\">Le Petit Paris, 29, France</loc>\n </search>"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:03:25 GMT"},{"request":{"method":"get","uri":"http://wxdata.weather.com/wxdata/search/search?where=New%20York,%20NY","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache-Coyote/1.1"],"Content-Type":["text/xml;charset=UTF-8"],"X-Varnish":["10276369"],"X-Cache-Hits":["0"],"Cache-Control":["max-age=300"],"Date":["Sat, 26 Oct 2013 15:03:26 GMT"],"Content-Length":["93"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"<search ver=\"3.0\">\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\n </search>"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 15:03:26 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='90210'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine5.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 29 Oct 2013 00:03:59 GMT"],"Server":["YTS/1.20.13"],"Age":["1"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-29T00:04:00Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"60\",\"latitude\":\"34.09818\",\"longitude\":\"-118.415734\",\"offsetlat\":\"34.103149\",\"offsetlon\":\"-118.416252\",\"radius\":\"4600\",\"name\":null,\"line1\":\"1472 Donhill Dr\",\"line2\":\"Los Angeles, CA 90210\",\"line3\":null,\"line4\":\"United States\",\"house\":\"1472\",\"street\":\"Donhill Dr\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"90210\",\"neighborhood\":\"Bel Air-Beverly Crest\",\"city\":\"Los Angeles\",\"county\":\"Los Angeles\",\"state\":\"California\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"CA\",\"countycode\":null,\"uzip\":\"90210\",\"hash\":null,\"woeid\":\"12795711\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Tue, 29 Oct 2013 00:04:00 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='Paris,%20France'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine4.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 29 Oct 2013 00:03:59 GMT"],"Server":["YTS/1.20.13"],"Age":["1"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-29T00:04:00Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"40\",\"latitude\":\"48.85693\",\"longitude\":\"2.3412\",\"offsetlat\":\"48.85693\",\"offsetlon\":\"2.3412\",\"radius\":\"13700\",\"name\":null,\"line1\":\"15, Pont Neuf\",\"line2\":\"75001 Paris\",\"line3\":null,\"line4\":\"France\",\"house\":\"15\",\"street\":\"Pont Neuf\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"75001\",\"neighborhood\":\"Saint-Germain l'Auxerrois\",\"city\":\"Paris\",\"county\":\"Paris\",\"state\":\"Ile-de-France\",\"country\":\"France\",\"countrycode\":\"FR\",\"statecode\":null,\"countycode\":\"75\",\"uzip\":\"75001\",\"hash\":null,\"woeid\":\"12727257\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Tue, 29 Oct 2013 00:04:00 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='40.756054,-73.986951'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine3.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 29 Oct 2013 00:03:59 GMT"],"Server":["YTS/1.20.13"],"Age":["1"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-29T00:04:00Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"87\",\"latitude\":\"40.756054\",\"longitude\":\"-73.986951\",\"offsetlat\":\"40.756054\",\"offsetlon\":\"-73.986951\",\"radius\":\"400\",\"name\":\"40.756054,-73.986951\",\"line1\":\"601 7th Ave\",\"line2\":\"New York, NY 10036\",\"line3\":null,\"line4\":\"United States\",\"house\":\"601\",\"street\":\"7th Ave\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"10036\",\"neighborhood\":\"Theater District-Times Square\",\"city\":\"New York\",\"county\":\"New York County\",\"state\":\"New York\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"NY\",\"countycode\":\"NY\",\"uzip\":\"10036\",\"hash\":\"AC013DD2F1F6EAB9\",\"woeid\":\"12761367\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Tue, 29 Oct 2013 00:04:01 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='T5B%204M9'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine7.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 29 Oct 2013 00:04:00 GMT"],"Server":["YTS/1.20.13"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-29T00:04:00Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"60\",\"latitude\":\"53.57049\",\"longitude\":\"-113.458122\",\"offsetlat\":\"53.570492\",\"offsetlon\":\"-113.458122\",\"radius\":\"200\",\"name\":null,\"line1\":\"7556 118 Ave NW\",\"line2\":\"Edmonton, AB T5B\",\"line3\":null,\"line4\":\"Canada\",\"house\":\"7556\",\"street\":\"118 Ave NW\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"T5B\",\"neighborhood\":\"Montrose\",\"city\":\"Edmonton\",\"county\":\"Alberta\",\"state\":\"Alberta\",\"country\":\"Canada\",\"countrycode\":\"CA\",\"statecode\":\"AB\",\"countycode\":\"AB\",\"uzip\":\"T5B\",\"hash\":null,\"woeid\":\"12698082\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Tue, 29 Oct 2013 00:04:01 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='98.139.183.24'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine7.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 29 Oct 2013 00:04:00 GMT"],"Server":["YTS/1.20.13"],"Age":["2"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-29T00:04:01Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"60\",\"latitude\":\"43.167385\",\"longitude\":\"-78.700814\",\"offsetlat\":\"43.167488\",\"offsetlon\":\"-78.701111\",\"radius\":\"17300\",\"name\":null,\"line1\":null,\"line2\":\"Lockport, NY 14094\",\"line3\":null,\"line4\":\"United States\",\"house\":null,\"street\":null,\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"14094\",\"neighborhood\":null,\"city\":\"Lockport\",\"county\":\"Niagara County\",\"state\":\"New York\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"NY\",\"countycode\":null,\"uzip\":\"14094\",\"hash\":null,\"woeid\":\"12763119\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Tue, 29 Oct 2013 00:04:01 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='10001-5555'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine2.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Tue, 29 Oct 2013 00:04:00 GMT"],"Server":["YTS/1.20.13"],"Age":["1"],"Content-Length":["640"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-29T00:04:00Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"60\",\"latitude\":\"40.749779\",\"longitude\":\"-73.995552\",\"offsetlat\":\"40.749779\",\"offsetlon\":\"-73.995552\",\"radius\":\"1400\",\"name\":null,\"line1\":\"300 W 30th St\",\"line2\":\"New York, NY 10001\",\"line3\":null,\"line4\":\"United States\",\"house\":\"300\",\"street\":\"W 30th St\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"10001\",\"neighborhood\":\"Chelsea\",\"city\":\"New York\",\"county\":\"New York\",\"state\":\"New York\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"NY\",\"countycode\":\"NY\",\"uzip\":\"10001\",\"hash\":null,\"woeid\":\"12761333\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Tue, 29 Oct 2013 00:04:01 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20woeid='615702'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine1.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 28 Oct 2013 04:43:08 GMT"],"Server":["YTS/1.20.13"],"Age":["30"],"Content-Length":["626"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-28T04:43:08Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"40\",\"latitude\":\"48.85693\",\"longitude\":\"2.3412\",\"offsetlat\":\"48.85693\",\"offsetlon\":\"2.3412\",\"radius\":\"32900\",\"name\":null,\"line1\":\"15, Pont Neuf\",\"line2\":\"75001 Paris\",\"line3\":null,\"line4\":\"France\",\"house\":\"15\",\"street\":\"Pont Neuf\",\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"75001\",\"neighborhood\":\"Saint-Germain l'Auxerrois\",\"city\":\"Paris\",\"county\":\"Paris\",\"state\":\"Ile-de-France\",\"country\":\"France\",\"countrycode\":\"FR\",\"statecode\":null,\"countycode\":\"75\",\"uzip\":\"75001\",\"hash\":null,\"woeid\":\"12727257\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 04:43:38 GMT"},{"request":{"method":"get","uri":"http://query.yahooapis.com/v1/public/yql?format=json&q=select%20*%20from%20geo.placefinder%20where%20text='8.8.8.8'%20and%20gflags='R'","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"X-Yql-Host":["engine6.yql.bf1.yahoo.com"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["public, max-age=2591999"],"Content-Type":["application/json;charset=utf-8"],"Date":["Mon, 28 Oct 2013 04:38:26 GMT"],"Server":["YTS/1.20.13"],"Age":["317"],"Content-Length":["640"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"{\"query\":{\"count\":1,\"created\":\"2013-10-28T04:38:26Z\",\"lang\":\"en-US\",\"results\":{\"Result\":{\"quality\":\"60\",\"latitude\":\"37.418726\",\"longitude\":\"-122.072037\",\"offsetlat\":\"37.419201\",\"offsetlon\":\"-122.075539\",\"radius\":\"4700\",\"name\":null,\"line1\":null,\"line2\":\"Mountain View, CA 94043\",\"line3\":null,\"line4\":\"United States\",\"house\":null,\"street\":null,\"xstreet\":null,\"unittype\":null,\"unit\":null,\"postal\":\"94043\",\"neighborhood\":null,\"city\":\"Mountain View\",\"county\":\"Santa Clara County\",\"state\":\"California\",\"country\":\"United States\",\"countrycode\":\"US\",\"statecode\":\"CA\",\"countycode\":null,\"uzip\":\"94043\",\"hash\":null,\"woeid\":\"12797130\",\"woetype\":\"11\"}}}}"},"http_version":null},"recorded_at":"Mon, 28 Oct 2013 04:43:43 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"https://api.darkskyapp.com/v1/forecast/FORECAST_IO_APIKEY/42.7243,-73.6927?units=si","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx/1.1.19"],"Date":["Thu, 05 Sep 2013 02:31:07 GMT"],"Content-Type":["application/json; charset=utf-8"],"Content-Length":["7213"],"Connection":["close"],"X-Powered-By":["Express"],"X-Forecast-Api-Calls":["1"],"Etag":["\"-1525689390\""]},"body":{"encoding":"US-ASCII","string":"{\"hourPrecipitation\":[{\"time\":1378348262,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348322,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348382,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348442,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348502,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348562,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348622,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348682,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348742,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348802,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348862,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348922,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378348982,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349042,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349102,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349162,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349222,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349282,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349342,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349402,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349462,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349522,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349582,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349642,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349702,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349762,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349822,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349882,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378349942,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350002,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350062,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350122,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350182,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350242,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350302,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350362,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350422,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350482,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350542,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350602,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350662,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350722,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350782,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350842,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350902,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378350962,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351022,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351082,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351142,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351202,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351262,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351322,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351382,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351442,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351502,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351562,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351622,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351682,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351742,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"},{\"time\":1378351802,\"probability\":0,\"intensity\":0,\"error\":0,\"type\":\"rain\"}],\"radarStation\":\"enx\",\"dayPrecipitation\":[{\"time\":1378346400,\"probability\":0.03,\"type\":\"rain\",\"temp\":61,\"cloudCover\":0,\"relHumidity\":0.8},{\"time\":1378350000,\"probability\":0.05,\"type\":\"rain\",\"temp\":61,\"cloudCover\":0.61,\"relHumidity\":0.83},{\"time\":1378353600,\"probability\":0.08,\"type\":\"rain\",\"temp\":62,\"cloudCover\":0.63,\"relHumidity\":0.8},{\"time\":1378357200,\"probability\":0.11,\"type\":\"rain\",\"temp\":62,\"cloudCover\":0.93,\"relHumidity\":0.83},{\"time\":1378360800,\"probability\":0.27,\"type\":\"rain\",\"temp\":62,\"cloudCover\":1,\"relHumidity\":0.82},{\"time\":1378364400,\"probability\":0.32,\"type\":\"rain\",\"temp\":62,\"cloudCover\":1,\"relHumidity\":0.79},{\"time\":1378368000,\"probability\":0.2,\"type\":\"rain\",\"temp\":61,\"cloudCover\":1,\"relHumidity\":0.82},{\"time\":1378371600,\"probability\":0.17,\"type\":\"rain\",\"temp\":60,\"cloudCover\":1,\"relHumidity\":0.85},{\"time\":1378375200,\"probability\":0.13,\"type\":\"rain\",\"temp\":58,\"cloudCover\":1,\"relHumidity\":0.87},{\"time\":1378378800,\"probability\":0.11,\"type\":\"rain\",\"temp\":57,\"cloudCover\":1,\"relHumidity\":0.87},{\"time\":1378382400,\"probability\":0.08,\"type\":\"rain\",\"temp\":59,\"cloudCover\":1,\"relHumidity\":0.82},{\"time\":1378386000,\"probability\":0.06,\"type\":\"rain\",\"temp\":60,\"cloudCover\":0.8,\"relHumidity\":0.76},{\"time\":1378389600,\"probability\":0.04,\"type\":\"rain\",\"temp\":62,\"cloudCover\":0.78,\"relHumidity\":0.69},{\"time\":1378393200,\"probability\":0.03,\"type\":\"rain\",\"temp\":63,\"cloudCover\":0.47,\"relHumidity\":0.62},{\"time\":1378396800,\"probability\":0.02,\"type\":\"rain\",\"temp\":63,\"cloudCover\":0.44,\"relHumidity\":0.58},{\"time\":1378400400,\"probability\":0.02,\"type\":\"rain\",\"temp\":63,\"cloudCover\":0.21,\"relHumidity\":0.53},{\"time\":1378404000,\"probability\":0.03,\"type\":\"rain\",\"temp\":63,\"cloudCover\":0.13,\"relHumidity\":0.51},{\"time\":1378407600,\"probability\":0.01,\"type\":\"rain\",\"temp\":64,\"cloudCover\":0.12,\"relHumidity\":0.49},{\"time\":1378411200,\"probability\":0,\"type\":\"rain\",\"temp\":63,\"cloudCover\":0,\"relHumidity\":0.47},{\"time\":1378414800,\"probability\":0,\"type\":\"rain\",\"temp\":63,\"cloudCover\":0,\"relHumidity\":0.44},{\"time\":1378418400,\"probability\":0,\"type\":\"rain\",\"temp\":61,\"cloudCover\":0,\"relHumidity\":0.46},{\"time\":1378422000,\"probability\":0,\"type\":\"rain\",\"temp\":58,\"cloudCover\":0,\"relHumidity\":0.5},{\"time\":1378425600,\"probability\":0,\"type\":\"rain\",\"temp\":54,\"cloudCover\":0,\"relHumidity\":0.55},{\"time\":1378429200,\"probability\":0.01,\"type\":\"rain\",\"temp\":52,\"cloudCover\":0,\"relHumidity\":0.59},{\"time\":1378432800,\"probability\":0.02,\"type\":\"rain\",\"temp\":50,\"cloudCover\":0,\"relHumidity\":0.64}],\"currentTemp\":61,\"timezone\":\"America/New_York (EDT, -0400)\",\"currentSummary\":\"clear\",\"hourSummary\":\"clear\",\"daySummary\":\"moderate chance of rain later tonight through tomorrow morning\",\"isPrecipitating\":false,\"currentIntensity\":0,\"minutesUntilChange\":0,\"checkTimeout\":1320}"},"http_version":null},"recorded_at":"Thu, 05 Sep 2013 02:31:07 GMT"},{"request":{"method":"get","uri":"https://api.forecast.io/forecast/FORECAST_IO_APIKEY/42.7243,-73.6927?units=si","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["nginx/1.1.19"],"Date":["Sat, 26 Oct 2013 14:41:51 GMT"],"Content-Type":["application/json; charset=utf-8"],"Content-Length":["24310"],"Connection":["close"],"X-Powered-By":["Express"],"X-Forecast-Api-Calls":["2"],"Cache-Control":["max-age=9"],"Expires":["Sat, 26 Oct 2013 14:42:00 +0000"],"Etag":["\"-1234689706\""],"X-Response-Time":["426ms"]},"body":{"encoding":"UTF-8","string":"{\"latitude\":42.7243,\"longitude\":-73.6927,\"timezone\":\"America/New_York\",\"offset\":-4,\"currently\":{\"time\":1382798511,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":6.46,\"apparentTemperature\":3.43,\"dewPoint\":0.37,\"windSpeed\":4.45,\"windBearing\":220,\"cloudCover\":0.77,\"humidity\":0.65,\"pressure\":1017.95,\"visibility\":16.09,\"ozone\":289.67},\"minutely\":{\"summary\":\"Mostly cloudy for the hour.\",\"icon\":\"partly-cloudy-day\",\"data\":[{\"time\":1382798460,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382798520,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382798580,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382798640,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382798700,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382798760,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382798820,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382798880,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382798940,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799000,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799060,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799120,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799180,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799240,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799300,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799360,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799420,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799480,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799540,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799600,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799660,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799720,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799780,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799840,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799900,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382799960,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800020,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800080,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800140,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800200,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800260,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800320,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800380,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800440,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800500,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800560,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800620,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800680,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800740,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800800,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800860,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800920,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382800980,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801040,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801100,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801160,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801220,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801280,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801340,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801400,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801460,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801520,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801580,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801640,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801700,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801760,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801820,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801880,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382801940,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382802000,\"precipIntensity\":0,\"precipProbability\":0},{\"time\":1382802060,\"precipIntensity\":0,\"precipProbability\":0}]},\"hourly\":{\"summary\":\"Mostly cloudy later this morning.\",\"icon\":\"partly-cloudy-day\",\"data\":[{\"time\":1382796000,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":5.36,\"apparentTemperature\":2.24,\"dewPoint\":0.25,\"windSpeed\":4.11,\"windBearing\":209,\"cloudCover\":0.76,\"humidity\":0.7,\"pressure\":1018.34,\"visibility\":16.08,\"ozone\":290.13},{\"time\":1382799600,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":6.94,\"apparentTemperature\":3.95,\"dewPoint\":0.4,\"windSpeed\":4.6,\"windBearing\":224,\"cloudCover\":0.77,\"humidity\":0.63,\"pressure\":1017.78,\"visibility\":16.09,\"ozone\":289.47},{\"time\":1382803200,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":7.85,\"apparentTemperature\":4.74,\"dewPoint\":-0.37,\"windSpeed\":5.42,\"windBearing\":198,\"cloudCover\":0.86,\"humidity\":0.56,\"pressure\":1016.44,\"visibility\":16.09,\"ozone\":288.82},{\"time\":1382806800,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":8.72,\"apparentTemperature\":5.48,\"dewPoint\":-1.11,\"windSpeed\":6.38,\"windBearing\":192,\"cloudCover\":0.9,\"humidity\":0.5,\"pressure\":1014.34,\"visibility\":16.09,\"ozone\":288.26},{\"time\":1382810400,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":9.84,\"apparentTemperature\":6.78,\"dewPoint\":-1.38,\"windSpeed\":6.86,\"windBearing\":190,\"cloudCover\":0.83,\"humidity\":0.45,\"pressure\":1012.29,\"visibility\":16.09,\"ozone\":287.92},{\"time\":1382814000,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":10.6,\"apparentTemperature\":10.6,\"dewPoint\":-2.01,\"windSpeed\":7.17,\"windBearing\":189,\"cloudCover\":0.85,\"humidity\":0.41,\"pressure\":1008.36,\"visibility\":16.09,\"ozone\":287.93},{\"time\":1382817600,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":10.74,\"apparentTemperature\":10.74,\"dewPoint\":-1.93,\"windSpeed\":6.88,\"windBearing\":190,\"cloudCover\":0.97,\"humidity\":0.41,\"pressure\":1007.53,\"visibility\":16.09,\"ozone\":288.15},{\"time\":1382821200,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":10.26,\"apparentTemperature\":10.26,\"dewPoint\":-2.16,\"windSpeed\":6.4,\"windBearing\":187,\"cloudCover\":0.98,\"humidity\":0.42,\"pressure\":1006.85,\"visibility\":16.09,\"ozone\":288.32},{\"time\":1382824800,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":9.28,\"apparentTemperature\":6.43,\"dewPoint\":-2.09,\"windSpeed\":5.71,\"windBearing\":184,\"cloudCover\":0.99,\"humidity\":0.45,\"pressure\":1006.46,\"visibility\":16.09,\"ozone\":288.01},{\"time\":1382828400,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0.02274,\"precipProbability\":0.02,\"precipType\":\"rain\",\"temperature\":8.37,\"apparentTemperature\":5.46,\"dewPoint\":-1.82,\"windSpeed\":5.23,\"windBearing\":184,\"cloudCover\":0.99,\"humidity\":0.49,\"pressure\":1006.26,\"visibility\":16.09,\"ozone\":287.65},{\"time\":1382832000,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0.0304,\"precipProbability\":0.02,\"precipType\":\"rain\",\"temperature\":7.63,\"apparentTemperature\":4.65,\"dewPoint\":-1.44,\"windSpeed\":4.93,\"windBearing\":182,\"cloudCover\":0.99,\"humidity\":0.53,\"pressure\":1006.06,\"visibility\":16.09,\"ozone\":288.19},{\"time\":1382835600,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0.03107,\"precipProbability\":0.03,\"precipType\":\"rain\",\"temperature\":7.24,\"apparentTemperature\":4.2,\"dewPoint\":-1.24,\"windSpeed\":4.86,\"windBearing\":185,\"cloudCover\":0.99,\"humidity\":0.55,\"pressure\":1005.79,\"visibility\":16.09,\"ozone\":290.09},{\"time\":1382839200,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0.04317,\"precipProbability\":0.06,\"precipType\":\"rain\",\"temperature\":6.8,\"apparentTemperature\":3.7,\"dewPoint\":-0.93,\"windSpeed\":4.73,\"windBearing\":188,\"cloudCover\":1,\"humidity\":0.58,\"pressure\":1005.51,\"visibility\":16.09,\"ozone\":292.9},{\"time\":1382842800,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0.05013,\"precipProbability\":0.1,\"precipType\":\"rain\",\"temperature\":6.51,\"apparentTemperature\":3.48,\"dewPoint\":-0.47,\"windSpeed\":4.47,\"windBearing\":189,\"cloudCover\":1,\"humidity\":0.61,\"pressure\":1005.24,\"visibility\":16.09,\"ozone\":296.21},{\"time\":1382846400,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0.02347,\"precipProbability\":0.04,\"precipType\":\"rain\",\"temperature\":6.17,\"apparentTemperature\":3.18,\"dewPoint\":-0.18,\"windSpeed\":4.22,\"windBearing\":189,\"cloudCover\":1,\"humidity\":0.64,\"pressure\":1004.97,\"visibility\":16.09,\"ozone\":300.09},{\"time\":1382850000,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0.02554,\"precipProbability\":0.03,\"precipType\":\"rain\",\"temperature\":5.92,\"apparentTemperature\":2.96,\"dewPoint\":-0.11,\"windSpeed\":4.05,\"windBearing\":191,\"cloudCover\":1,\"humidity\":0.65,\"pressure\":1004.71,\"visibility\":16.06,\"ozone\":304.47},{\"time\":1382853600,\"summary\":\"Overcast\",\"icon\":\"cloudy\",\"precipIntensity\":0.03099,\"precipProbability\":0.03,\"precipType\":\"rain\",\"temperature\":5.52,\"apparentTemperature\":2.57,\"dewPoint\":-0.07,\"windSpeed\":3.88,\"windBearing\":194,\"cloudCover\":1,\"humidity\":0.67,\"pressure\":1004.51,\"visibility\":16.02,\"ozone\":308.73},{\"time\":1382857200,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-night\",\"precipIntensity\":0.01908,\"precipProbability\":0.02,\"precipType\":\"rain\",\"temperature\":5.07,\"apparentTemperature\":2.12,\"dewPoint\":0.21,\"windSpeed\":3.71,\"windBearing\":200,\"cloudCover\":0.9,\"humidity\":0.71,\"pressure\":1004.37,\"visibility\":15.82,\"ozone\":313.25},{\"time\":1382860800,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-night\",\"precipIntensity\":0.01741,\"precipProbability\":0.01,\"precipType\":\"rain\",\"temperature\":4.39,\"apparentTemperature\":1.42,\"dewPoint\":0.17,\"windSpeed\":3.5,\"windBearing\":203,\"cloudCover\":0.77,\"humidity\":0.74,\"pressure\":1004.3,\"visibility\":15.93,\"ozone\":317.66},{\"time\":1382864400,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":3.84,\"apparentTemperature\":0.87,\"dewPoint\":0.24,\"windSpeed\":3.34,\"windBearing\":210,\"cloudCover\":0.65,\"humidity\":0.77,\"pressure\":1004.38,\"visibility\":16.01,\"ozone\":320.19},{\"time\":1382868000,\"summary\":\"Partly Cloudy\",\"icon\":\"partly-cloudy-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":3.34,\"apparentTemperature\":0.53,\"dewPoint\":0.25,\"windSpeed\":2.98,\"windBearing\":213,\"cloudCover\":0.5,\"humidity\":0.8,\"pressure\":1004.69,\"visibility\":16.05,\"ozone\":319.93},{\"time\":1382871600,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":3.1,\"apparentTemperature\":0.38,\"dewPoint\":0.26,\"windSpeed\":2.81,\"windBearing\":211,\"cloudCover\":0.17,\"humidity\":0.82,\"pressure\":1005.14,\"visibility\":16.07,\"ozone\":317.8},{\"time\":1382875200,\"summary\":\"Partly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":3.38,\"apparentTemperature\":0.66,\"dewPoint\":0.5,\"windSpeed\":2.87,\"windBearing\":219,\"cloudCover\":0.36,\"humidity\":0.81,\"pressure\":1005.57,\"visibility\":16.09,\"ozone\":314.82},{\"time\":1382878800,\"summary\":\"Partly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":4.59,\"apparentTemperature\":1.5,\"dewPoint\":0.78,\"windSpeed\":3.75,\"windBearing\":232,\"cloudCover\":0.27,\"humidity\":0.76,\"pressure\":1005.95,\"visibility\":16.09,\"ozone\":310.7},{\"time\":1382882400,\"summary\":\"Partly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":6.38,\"apparentTemperature\":3.15,\"dewPoint\":1.11,\"windSpeed\":4.8,\"windBearing\":255,\"cloudCover\":0.35,\"humidity\":0.69,\"pressure\":1006.34,\"visibility\":16.09,\"ozone\":305.71},{\"time\":1382886000,\"summary\":\"Partly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":7.8,\"apparentTemperature\":4.56,\"dewPoint\":1.43,\"windSpeed\":5.72,\"windBearing\":263,\"cloudCover\":0.31,\"humidity\":0.64,\"pressure\":1006.67,\"visibility\":16.09,\"ozone\":301.76},{\"time\":1382889600,\"summary\":\"Partly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":8.88,\"apparentTemperature\":5.72,\"dewPoint\":1.26,\"windSpeed\":6.32,\"windBearing\":265,\"cloudCover\":0.43,\"humidity\":0.59,\"pressure\":1006.87,\"visibility\":16.09,\"ozone\":299.73},{\"time\":1382893200,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":9.53,\"apparentTemperature\":6.46,\"dewPoint\":0.64,\"windSpeed\":6.57,\"windBearing\":266,\"cloudCover\":0.64,\"humidity\":0.54,\"pressure\":1007,\"visibility\":16.09,\"ozone\":298.72},{\"time\":1382896800,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":9.72,\"apparentTemperature\":6.7,\"dewPoint\":0.06,\"windSpeed\":6.59,\"windBearing\":266,\"cloudCover\":0.8,\"humidity\":0.51,\"pressure\":1007.22,\"visibility\":16.09,\"ozone\":298.01},{\"time\":1382900400,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":9.91,\"apparentTemperature\":6.95,\"dewPoint\":0.13,\"windSpeed\":6.57,\"windBearing\":268,\"cloudCover\":0.82,\"humidity\":0.51,\"pressure\":1007.56,\"visibility\":16.09,\"ozone\":297.35},{\"time\":1382904000,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":9.43,\"apparentTemperature\":6.47,\"dewPoint\":0.33,\"windSpeed\":6.18,\"windBearing\":269,\"cloudCover\":0.78,\"humidity\":0.53,\"pressure\":1007.99,\"visibility\":16.09,\"ozone\":296.99},{\"time\":1382907600,\"summary\":\"Mostly Cloudy\",\"icon\":\"partly-cloudy-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":8.65,\"apparentTemperature\":5.61,\"dewPoint\":0.52,\"windSpeed\":5.78,\"windBearing\":270,\"cloudCover\":0.67,\"humidity\":0.57,\"pressure\":1008.54,\"visibility\":16.09,\"ozone\":296.91},{\"time\":1382911200,\"summary\":\"Partly Cloudy\",\"icon\":\"partly-cloudy-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":7.49,\"apparentTemperature\":4.44,\"dewPoint\":0.65,\"windSpeed\":5.01,\"windBearing\":268,\"cloudCover\":0.48,\"humidity\":0.62,\"pressure\":1009.3,\"visibility\":16.09,\"ozone\":297.62},{\"time\":1382914800,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":6.11,\"apparentTemperature\":3.2,\"dewPoint\":0.71,\"windSpeed\":4.04,\"windBearing\":265,\"cloudCover\":0.23,\"humidity\":0.68,\"pressure\":1010.17,\"visibility\":16.09,\"ozone\":298.63},{\"time\":1382918400,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":4.92,\"apparentTemperature\":2.25,\"dewPoint\":0.64,\"windSpeed\":3.23,\"windBearing\":260,\"cloudCover\":0.03,\"humidity\":0.74,\"pressure\":1010.92,\"visibility\":16.09,\"ozone\":298.46},{\"time\":1382922000,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":4.1,\"apparentTemperature\":1.62,\"dewPoint\":0.55,\"windSpeed\":2.76,\"windBearing\":253,\"cloudCover\":0,\"humidity\":0.78,\"pressure\":1011.45,\"visibility\":16.09,\"ozone\":296.09},{\"time\":1382925600,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":3.46,\"apparentTemperature\":1.12,\"dewPoint\":0.46,\"windSpeed\":2.45,\"windBearing\":243,\"cloudCover\":0,\"humidity\":0.81,\"pressure\":1011.87,\"visibility\":16.09,\"ozone\":292.55},{\"time\":1382929200,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":2.93,\"apparentTemperature\":0.69,\"dewPoint\":0.34,\"windSpeed\":2.25,\"windBearing\":236,\"cloudCover\":0.02,\"humidity\":0.83,\"pressure\":1012.27,\"visibility\":16.09,\"ozone\":289.46},{\"time\":1382932800,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":2.6,\"apparentTemperature\":0.38,\"dewPoint\":0.26,\"windSpeed\":2.17,\"windBearing\":232,\"cloudCover\":0.04,\"humidity\":0.85,\"pressure\":1012.67,\"visibility\":16.09,\"ozone\":287.46},{\"time\":1382936400,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":2.36,\"apparentTemperature\":0.05,\"dewPoint\":0.15,\"windSpeed\":2.22,\"windBearing\":229,\"cloudCover\":0.06,\"humidity\":0.85,\"pressure\":1013.04,\"visibility\":16.09,\"ozone\":285.91},{\"time\":1382940000,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":2.02,\"apparentTemperature\":-0.42,\"dewPoint\":-0.06,\"windSpeed\":2.29,\"windBearing\":224,\"cloudCover\":0.08,\"humidity\":0.86,\"pressure\":1013.39,\"visibility\":16.09,\"ozone\":284.61},{\"time\":1382943600,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":1.56,\"apparentTemperature\":-0.93,\"dewPoint\":-0.32,\"windSpeed\":2.26,\"windBearing\":215,\"cloudCover\":0.07,\"humidity\":0.87,\"pressure\":1013.73,\"visibility\":16.09,\"ozone\":283.42},{\"time\":1382947200,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":1.1,\"apparentTemperature\":-1.35,\"dewPoint\":-0.55,\"windSpeed\":2.15,\"windBearing\":202,\"cloudCover\":0.07,\"humidity\":0.89,\"pressure\":1014.05,\"visibility\":16.09,\"ozone\":282.48},{\"time\":1382950800,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":0.79,\"apparentTemperature\":-1.77,\"dewPoint\":-0.73,\"windSpeed\":2.2,\"windBearing\":191,\"cloudCover\":0.06,\"humidity\":0.9,\"pressure\":1014.39,\"visibility\":16.09,\"ozone\":281.89},{\"time\":1382954400,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":0.44,\"apparentTemperature\":-2.28,\"dewPoint\":-0.92,\"windSpeed\":2.29,\"windBearing\":184,\"cloudCover\":0.06,\"humidity\":0.91,\"pressure\":1014.8,\"visibility\":16.09,\"ozone\":281.81},{\"time\":1382958000,\"summary\":\"Clear\",\"icon\":\"clear-night\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":0.23,\"apparentTemperature\":-2.68,\"dewPoint\":-1.05,\"windSpeed\":2.43,\"windBearing\":179,\"cloudCover\":0.06,\"humidity\":0.91,\"pressure\":1015.22,\"visibility\":16.09,\"ozone\":282.09},{\"time\":1382961600,\"summary\":\"Clear\",\"icon\":\"clear-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":0.85,\"apparentTemperature\":-2.24,\"dewPoint\":-0.82,\"windSpeed\":2.73,\"windBearing\":179,\"cloudCover\":0.06,\"humidity\":0.89,\"pressure\":1015.57,\"visibility\":16.09,\"ozone\":282.42},{\"time\":1382965200,\"summary\":\"Clear\",\"icon\":\"clear-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":3.04,\"apparentTemperature\":-0.15,\"dewPoint\":0.01,\"windSpeed\":3.41,\"windBearing\":189,\"cloudCover\":0.04,\"humidity\":0.8,\"pressure\":1015.8,\"visibility\":16.09,\"ozone\":282.7},{\"time\":1382968800,\"summary\":\"Clear\",\"icon\":\"clear-day\",\"precipIntensity\":0,\"precipProbability\":0,\"temperature\":6.17,\"apparentTemperature\":3.08,\"dewPoint\":0.95,\"windSpeed\":4.42,\"windBearing\":205,\"cloudCover\":0.02,\"humidity\":0.69,\"pressure\":1015.95,\"visibility\":16.09,\"ozone\":283.02}]},\"daily\":{\"summary\":\"Light rain on Tuesday through Friday; temperatures bottoming out at 7° on Tuesday.\",\"icon\":\"rain\",\"data\":[{\"time\":1382760000,\"summary\":\"Mostly cloudy throughout the day.\",\"icon\":\"partly-cloudy-day\",\"sunriseTime\":1382786566,\"sunsetTime\":1382824620,\"precipIntensity\":0.01106,\"precipIntensityMax\":0,\"precipProbability\":0.41,\"precipType\":\"rain\",\"temperatureMin\":1.42,\"temperatureMinTime\":1382770800,\"temperatureMax\":10.74,\"temperatureMaxTime\":1382817600,\"apparentTemperatureMin\":-1.53,\"apparentTemperatureMinTime\":1382785200,\"apparentTemperatureMax\":10.74,\"apparentTemperatureMaxTime\":1382817600,\"dewPoint\":-0.89,\"windSpeed\":4.3,\"windBearing\":189,\"cloudCover\":0.75,\"humidity\":0.64,\"pressure\":1013.85,\"visibility\":15.95,\"ozone\":293.45},{\"time\":1382846400,\"summary\":\"Partly cloudy until evening.\",\"icon\":\"partly-cloudy-day\",\"sunriseTime\":1382873041,\"sunsetTime\":1382910935,\"precipIntensity\":0.00789,\"precipIntensityMax\":0,\"precipProbability\":0.04,\"precipType\":\"rain\",\"temperatureMin\":2.93,\"temperatureMinTime\":1382929200,\"temperatureMax\":9.91,\"temperatureMaxTime\":1382900400,\"apparentTemperatureMin\":0.38,\"apparentTemperatureMinTime\":1382871600,\"apparentTemperatureMax\":6.95,\"apparentTemperatureMaxTime\":1382900400,\"dewPoint\":0.45,\"windSpeed\":4.31,\"windBearing\":238,\"cloudCover\":0.51,\"humidity\":0.68,\"pressure\":1007.2,\"visibility\":16.06,\"ozone\":303.99},{\"time\":1382932800,\"summary\":\"Mostly cloudy starting in the afternoon.\",\"icon\":\"partly-cloudy-day\",\"sunriseTime\":1382959516,\"sunsetTime\":1382997251,\"precipIntensity\":0.00444,\"precipIntensityMax\":0,\"precipProbability\":0.01,\"precipType\":\"rain\",\"temperatureMin\":0.23,\"temperatureMinTime\":1382958000,\"temperatureMax\":12.33,\"temperatureMaxTime\":1382986800,\"apparentTemperatureMin\":-2.68,\"apparentTemperatureMinTime\":1382958000,\"apparentTemperatureMax\":12.33,\"apparentTemperatureMaxTime\":1382986800,\"dewPoint\":1.4,\"windSpeed\":3.5,\"windBearing\":235,\"cloudCover\":0.23,\"humidity\":0.75,\"pressure\":1016.4,\"visibility\":16.09,\"ozone\":284.47},{\"time\":1383019200,\"summary\":\"Light rain overnight.\",\"icon\":\"rain\",\"sunriseTime\":1383045992,\"sunsetTime\":1383083569,\"precipIntensity\":0.01291,\"precipIntensityMax\":0.14942,\"precipIntensityMaxTime\":1383102000,\"precipProbability\":0.14,\"precipType\":\"rain\",\"temperatureMin\":-1.65,\"temperatureMinTime\":1383044400,\"temperatureMax\":7.24,\"temperatureMaxTime\":1383069600,\"apparentTemperatureMin\":-4.3,\"apparentTemperatureMinTime\":1383044400,\"apparentTemperatureMax\":4.64,\"apparentTemperatureMaxTime\":1383069600,\"dewPoint\":-2.98,\"windSpeed\":2.51,\"windBearing\":310,\"cloudCover\":0.26,\"humidity\":0.7,\"pressure\":1022.49,\"visibility\":16.09,\"ozone\":290.25},{\"time\":1383105600,\"summary\":\"Light snow (1 cm) in the morning.\",\"icon\":\"snow\",\"sunriseTime\":1383132468,\"sunsetTime\":1383169888,\"precipIntensity\":0.11091,\"precipIntensityMax\":0.25996,\"precipIntensityMaxTime\":1383112800,\"precipProbability\":0.37,\"temperatureMin\":-1.45,\"temperatureMinTime\":1383130800,\"temperatureMax\":8.5,\"temperatureMaxTime\":1383156000,\"apparentTemperatureMin\":-1.45,\"apparentTemperatureMinTime\":1383130800,\"apparentTemperatureMax\":7.5,\"apparentTemperatureMaxTime\":1383156000,\"dewPoint\":-2.34,\"windSpeed\":0.84,\"windBearing\":313,\"cloudCover\":0.43,\"humidity\":0.72,\"pressure\":1024.19,\"ozone\":313.14},{\"time\":1383192000,\"summary\":\"Light rain in the evening.\",\"icon\":\"rain\",\"sunriseTime\":1383218944,\"sunsetTime\":1383256208,\"precipIntensity\":0.15089,\"precipIntensityMax\":0.50579,\"precipIntensityMaxTime\":1383274800,\"precipProbability\":0.9,\"precipType\":\"rain\",\"temperatureMin\":0.14,\"temperatureMinTime\":1383192000,\"temperatureMax\":11.88,\"temperatureMaxTime\":1383249600,\"apparentTemperatureMin\":-2.31,\"apparentTemperatureMinTime\":1383210000,\"apparentTemperatureMax\":11.88,\"apparentTemperatureMaxTime\":1383249600,\"dewPoint\":4.46,\"windSpeed\":3.39,\"windBearing\":173,\"cloudCover\":0.92,\"humidity\":0.86,\"pressure\":1018.38,\"ozone\":275.71},{\"time\":1383278400,\"summary\":\"Light rain until evening.\",\"icon\":\"rain\",\"sunriseTime\":1383305420,\"sunsetTime\":1383342530,\"precipIntensity\":0.27005,\"precipIntensityMax\":0.68623,\"precipIntensityMaxTime\":1383285600,\"precipProbability\":0.99,\"precipType\":\"rain\",\"temperatureMin\":9.61,\"temperatureMinTime\":1383361200,\"temperatureMax\":17.56,\"temperatureMaxTime\":1383328800,\"apparentTemperatureMin\":8.9,\"apparentTemperatureMinTime\":1383361200,\"apparentTemperatureMax\":17.56,\"apparentTemperatureMaxTime\":1383328800,\"dewPoint\":10.84,\"windSpeed\":3.89,\"windBearing\":226,\"cloudCover\":0.55,\"humidity\":0.88,\"pressure\":1005.09,\"ozone\":279.33},{\"time\":1383364800,\"summary\":\"Drizzle until afternoon.\",\"icon\":\"rain\",\"sunriseTime\":1383391897,\"sunsetTime\":1383428853,\"precipIntensity\":0.09392,\"precipIntensityMax\":0.1576,\"precipIntensityMaxTime\":1383404400,\"precipProbability\":0.43,\"precipType\":\"rain\",\"temperatureMin\":5.42,\"temperatureMinTime\":1383447600,\"temperatureMax\":13.63,\"temperatureMaxTime\":1383415200,\"apparentTemperatureMin\":3.48,\"apparentTemperatureMinTime\":1383447600,\"apparentTemperatureMax\":13.63,\"apparentTemperatureMaxTime\":1383415200,\"dewPoint\":6.49,\"windSpeed\":2.28,\"windBearing\":299,\"cloudCover\":0.04,\"humidity\":0.83,\"pressure\":1004.02,\"ozone\":284.98}]},\"flags\":{\"sources\":[\"isd\",\"fnmoc\",\"sref\",\"rap\",\"nam\",\"cmc\",\"gfs\",\"rtma\",\"metar\",\"lamp\",\"nwspa\",\"darksky\"],\"isd-stations\":[\"725180-14735\",\"744994-04741\",\"999999-04741\",\"999999-14735\",\"999999-14796\"],\"metar-stations\":[\"KALB\",\"KDDH\",\"KPSF\"],\"lamp-stations\":[\"KALB\",\"KDDH\",\"KPSF\"],\"darksky-stations\":[\"KENX\"],\"units\":\"si\"}}"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:41:51 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -1 +1 @@
1
- {"http_interactions":[{"request":{"uri":"http://graphical.weather.gov/xml/sample_products/browser_interface/ndfdBrowserClientByDay.php?format=24%20hourly&numDays=7&zipCodeList=90210","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:01 GMT","response":{"http_version":null,"headers":{"Cache-Control":["max-age=180"],"Content-Length":["7447"],"Server":["Apache/2.2.15 (Red Hat)"],"Content-Type":["text/xml"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:43:00 GMT"],"Expires":["Sat, 09 Feb 2013 18:46:00 GMT"]},"body":{"string":"<?xml version=\"1.0\"?>\n<dwml version=\"1.0\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"http://graphical.weather.gov/xml/DWMLgen/schema/DWML.xsd\">\n <head>\n <product srsName=\"WGS 1984\" concise-name=\"dwmlByDay\" operational-mode=\"official\">\n <title>NOAA's National Weather Service Forecast by 24 Hour Period</title>\n <field>meteorological</field>\n <category>forecast</category>\n <creation-date refresh-frequency=\"PT1H\">2013-02-09T18:43:00Z</creation-date>\n </product>\n <source>\n <more-information>http://graphical.weather.gov/xml/</more-information>\n <production-center>Meteorological Development Laboratory<sub-center>Product Generation Branch</sub-center></production-center>\n <disclaimer>http://www.nws.noaa.gov/disclaimer.html</disclaimer>\n <credit>http://www.weather.gov/</credit>\n <credit-logo>http://www.weather.gov/images/xml_logo.gif</credit-logo>\n <feedback>http://www.weather.gov/feedback.php</feedback>\n </source>\n </head>\n <data>\n <location>\n <location-key>point1</location-key>\n <point latitude=\"34.10\" longitude=\"-118.41\"/>\n </location>\n <moreWeatherInformation applicable-location=\"point1\">http://forecast.weather.gov/MapClick.php?textField1=34.10&amp;textField2=-118.41</moreWeatherInformation>\n <time-layout time-coordinate=\"local\" summarization=\"24hourly\">\n <layout-key>k-p24h-n7-1</layout-key>\n <start-valid-time>2013-02-09T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-10T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-10T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-11T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-11T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-12T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-12T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-13T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-13T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-14T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-14T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-15T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-15T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-16T06:00:00-08:00</end-valid-time>\n </time-layout>\n <time-layout time-coordinate=\"local\" summarization=\"12hourly\">\n <layout-key>k-p12h-n14-2</layout-key>\n <start-valid-time>2013-02-09T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-09T18:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-09T18:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-10T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-10T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-10T18:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-10T18:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-11T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-11T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-11T18:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-11T18:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-12T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-12T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-12T18:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-12T18:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-13T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-13T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-13T18:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-13T18:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-14T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-14T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-14T18:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-14T18:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-15T06:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-15T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-15T18:00:00-08:00</end-valid-time>\n <start-valid-time>2013-02-15T18:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-16T06:00:00-08:00</end-valid-time>\n </time-layout>\n <time-layout time-coordinate=\"local\" summarization=\"24hourly\">\n <layout-key>k-p7d-n1-3</layout-key>\n <start-valid-time>2013-02-09T06:00:00-08:00</start-valid-time>\n <end-valid-time>2013-02-16T06:00:00-08:00</end-valid-time>\n </time-layout>\n <parameters applicable-location=\"point1\">\n <temperature type=\"maximum\" units=\"Fahrenheit\" time-layout=\"k-p24h-n7-1\">\n <name>Daily Maximum Temperature</name>\n <value>55</value>\n <value>58</value>\n <value>60</value>\n <value>64</value>\n <value>66</value>\n <value>70</value>\n <value>73</value>\n </temperature>\n <temperature type=\"minimum\" units=\"Fahrenheit\" time-layout=\"k-p24h-n7-1\">\n <name>Daily Minimum Temperature</name>\n <value>42</value>\n <value>44</value>\n <value>45</value>\n <value>46</value>\n <value>48</value>\n <value>49</value>\n <value xsi:nil=\"true\"/>\n </temperature>\n <probability-of-precipitation type=\"12 hour\" units=\"percent\" time-layout=\"k-p12h-n14-2\">\n <name>12 Hourly Probability of Precipitation</name>\n <value>4</value>\n <value>3</value>\n <value>7</value>\n <value>5</value>\n <value>4</value>\n <value>0</value>\n <value>3</value>\n <value>3</value>\n <value>1</value>\n <value>2</value>\n <value>2</value>\n <value>2</value>\n <value>1</value>\n <value xsi:nil=\"true\"/>\n </probability-of-precipitation>\n <hazards time-layout=\"k-p7d-n1-3\">\n <name>Watches, Warnings, and Advisories</name>\n <hazard-conditions xsi:nil=\"true\"/>\n </hazards>\n <weather time-layout=\"k-p24h-n7-1\">\n <name>Weather Type, Coverage, and Intensity</name>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n </weather>\n <conditions-icon type=\"forecast-NWS\" time-layout=\"k-p24h-n7-1\">\n <name>Conditions Icons</name>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n </conditions-icon>\n </parameters>\n </data>\n</dwml>\n"},"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:04 GMT","response":{"http_version":null,"headers":{"Cache-Control":["max-age=883"],"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:03 GMT"],"Expires":["Sat, 09 Feb 2013 18:57:46 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&ntilde;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&deg;F</p>\n\t\t\t<p><span class=\"myforecast-current-sm\">11&deg;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&deg;F (3&deg;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&amp;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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>&nbsp;</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>&nbsp;</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>&nbsp;</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&deg;N 118.42&deg;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&deg;N 118.42&deg;W&nbsp;&nbsp; <strong>Elevation:</strong> 774 ft</p></div></form></div>\t\t<div id=\"radar\">\n\t\t\t<h2>RADAR &amp; 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>&nbsp;<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>&nbsp;<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\" />&nbsp;&nbsp;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\" />&nbsp;&nbsp;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\" />&nbsp;&nbsp;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&current_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>&nbsp;</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>&nbsp;</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>&nbsp;</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://w1.weather.gov/xml/current_obs/KSMO.xml?","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:05 GMT","response":{"http_version":null,"headers":{"Content-Length":["2249"],"Server":["Apache/2.2.15 (Red Hat)"],"Content-Type":["application/xml"],"Connection":["keep-alive"],"Last-Modified":["Sat, 09 Feb 2013 18:02:17 GMT"],"Date":["Sat, 09 Feb 2013 18:43:05 GMT"],"Accept-Ranges":["bytes"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?> \r\n<?xml-stylesheet href=\"latest_ob.xsl\" type=\"text/xsl\"?>\r\n<current_observation version=\"1.0\"\r\n\t xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\r\n\t xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\r\n\t xsi:noNamespaceSchemaLocation=\"http://www.weather.gov/view/current_observation.xsd\">\r\n\t<credit>NOAA's National Weather Service</credit>\r\n\t<credit_URL>http://weather.gov/</credit_URL>\r\n\t<image>\r\n\t\t<url>http://weather.gov/images/xml_logo.gif</url>\r\n\t\t<title>NOAA's National Weather Service</title>\r\n\t\t<link>http://weather.gov</link>\r\n\t</image>\r\n\t<suggested_pickup>15 minutes after the hour</suggested_pickup>\r\n\t<suggested_pickup_period>60</suggested_pickup_period>\n\t<location>Santa Monica Muni, CA</location>\n\t<station_id>KSMO</station_id>\n\t<latitude>34.03</latitude>\n\t<longitude>-118.45</longitude>\n\t<observation_time>Last Updated on Feb 9 2013, 9:51 am PST</observation_time>\r\n <observation_time_rfc822>Sat, 09 Feb 2013 09:51:00 -0800</observation_time_rfc822>\n\t<weather>Fair</weather>\n\t<temperature_string>52.0 F (11.1 C)</temperature_string>\r\n\t<temp_f>52.0</temp_f>\r\n\t<temp_c>11.1</temp_c>\n\t<relative_humidity>59</relative_humidity>\n\t<wind_string>East at 4.6 MPH (4 KT)</wind_string>\n\t<wind_dir>East</wind_dir>\n\t<wind_degrees>90</wind_degrees>\n\t<wind_mph>4.6</wind_mph>\n\t<wind_kt>4</wind_kt>\n\t<pressure_string>1017.7 mb</pressure_string>\n\t<pressure_mb>1017.7</pressure_mb>\n\t<pressure_in>30.05</pressure_in>\n\t<dewpoint_string>37.9 F (3.3 C)</dewpoint_string>\r\n\t<dewpoint_f>37.9</dewpoint_f>\r\n\t<dewpoint_c>3.3</dewpoint_c>\n\t<windchill_string>51 F (11 C)</windchill_string>\r\n \t<windchill_f>51</windchill_f>\r\n \t<windchill_c>11</windchill_c>\n\t<visibility_mi>10.00</visibility_mi>\n \t<icon_url_base>http://forecast.weather.gov/images/wtf/small/</icon_url_base>\n\t<two_day_history_url>http://www.weather.gov/data/obhistory/KSMO.html</two_day_history_url>\n\t<icon_url_name>skc.png</icon_url_name>\n\t<ob_url>http://www.weather.gov/data/METAR/KSMO.1.txt</ob_url>\n\t<disclaimer_url>http://weather.gov/disclaimer.html</disclaimer_url>\r\n\t<copyright_url>http://weather.gov/disclaimer.html</copyright_url>\r\n\t<privacy_policy_url>http://weather.gov/notice.html</privacy_policy_url>\r\n</current_observation>\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://forecast.weather.gov/MapClick.php?textField1=34.10&textField2=-118.41","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["max-age=883"],"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:03 GMT"],"Expires":["Sat, 09 Feb 2013 18:57:46 GMT"]},"body":{"encoding":"UTF-8","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&ntilde;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&deg;F</p>\n\t\t\t<p><span class=\"myforecast-current-sm\">11&deg;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&deg;F (3&deg;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&amp;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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 &deg;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>&nbsp;</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>&nbsp;</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>&nbsp;</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&deg;N 118.42&deg;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&deg;N 118.42&deg;W&nbsp;&nbsp; <strong>Elevation:</strong> 774 ft</p></div></form></div>\t\t<div id=\"radar\">\n\t\t\t<h2>RADAR &amp; 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>&nbsp;<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>&nbsp;<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\" />&nbsp;&nbsp;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\" />&nbsp;&nbsp;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\" />&nbsp;&nbsp;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&current_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>&nbsp;</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>&nbsp;</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>&nbsp;</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>"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 18:43:04 GMT"},{"request":{"method":"get","uri":"http://graphical.weather.gov/xml/sample_products/browser_interface/ndfdBrowserClientByDay.php?format=24%20hourly&numDays=7&zipCodeList=90210","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache/2.2.15 (Red Hat)"],"Content-Length":["7879"],"Content-Type":["text/xml"],"Cache-Control":["max-age=163"],"Expires":["Sat, 26 Oct 2013 14:45:02 GMT"],"Date":["Sat, 26 Oct 2013 14:42:19 GMT"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"<?xml version=\"1.0\"?>\n<dwml version=\"1.0\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"http://www.nws.noaa.gov/forecasts/xml/DWMLgen/schema/DWML.xsd\">\n <head>\n <product srsName=\"WGS 1984\" concise-name=\"dwmlByDay\" operational-mode=\"official\">\n <title>NOAA's National Weather Service Forecast by 24 Hour Period</title>\n <field>meteorological</field>\n <category>forecast</category>\n <creation-date refresh-frequency=\"PT1H\">2013-10-26T14:42:17Z</creation-date>\n </product>\n <source>\n <more-information>http://www.nws.noaa.gov/forecasts/xml/</more-information>\n <production-center>Meteorological Development Laboratory<sub-center>Product Generation Branch</sub-center></production-center>\n <disclaimer>http://www.nws.noaa.gov/disclaimer.html</disclaimer>\n <credit>http://www.weather.gov/</credit>\n <credit-logo>http://www.weather.gov/images/xml_logo.gif</credit-logo>\n <feedback>http://www.weather.gov/feedback.php</feedback>\n </source>\n </head>\n <data>\n <location>\n <location-key>point1</location-key>\n <point latitude=\"34.10\" longitude=\"-118.41\"/>\n </location>\n <moreWeatherInformation applicable-location=\"point1\">http://forecast.weather.gov/MapClick.php?textField1=34.10&amp;textField2=-118.41</moreWeatherInformation>\n <time-layout time-coordinate=\"local\" summarization=\"24hourly\">\n <layout-key>k-p24h-n7-1</layout-key>\n <start-valid-time>2013-10-26T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-27T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-27T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-28T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-28T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-29T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-29T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-30T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-30T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-31T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-31T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-11-01T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-11-01T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-11-02T06:00:00-07:00</end-valid-time>\n </time-layout>\n <time-layout time-coordinate=\"local\" summarization=\"12hourly\">\n <layout-key>k-p12h-n14-2</layout-key>\n <start-valid-time>2013-10-26T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-26T18:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-26T18:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-27T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-27T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-27T18:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-27T18:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-28T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-28T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-28T18:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-28T18:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-29T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-29T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-29T18:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-29T18:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-30T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-30T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-30T18:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-30T18:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-31T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-31T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-31T18:00:00-07:00</end-valid-time>\n <start-valid-time>2013-10-31T18:00:00-07:00</start-valid-time>\n <end-valid-time>2013-11-01T06:00:00-07:00</end-valid-time>\n <start-valid-time>2013-11-01T06:00:00-07:00</start-valid-time>\n <end-valid-time>2013-11-01T18:00:00-07:00</end-valid-time>\n <start-valid-time>2013-11-01T18:00:00-07:00</start-valid-time>\n <end-valid-time>2013-11-02T06:00:00-07:00</end-valid-time>\n </time-layout>\n <time-layout time-coordinate=\"local\" summarization=\"24hourly\">\n <layout-key>k-p1h-n1-3</layout-key>\n <start-valid-time>2013-10-26T08:00:00-07:00</start-valid-time>\n <end-valid-time>2013-10-26T09:00:00-07:00</end-valid-time>\n </time-layout>\n <parameters applicable-location=\"point1\">\n <temperature type=\"maximum\" units=\"Fahrenheit\" time-layout=\"k-p24h-n7-1\">\n <name>Daily Maximum Temperature</name>\n <value>80</value>\n <value>75</value>\n <value>63</value>\n <value>63</value>\n <value>69</value>\n <value>73</value>\n <value>78</value>\n </temperature>\n <temperature type=\"minimum\" units=\"Fahrenheit\" time-layout=\"k-p24h-n7-1\">\n <name>Daily Minimum Temperature</name>\n <value>59</value>\n <value>56</value>\n <value>52</value>\n <value>53</value>\n <value>54</value>\n <value>56</value>\n <value xsi:nil=\"true\"/>\n </temperature>\n <probability-of-precipitation type=\"12 hour\" units=\"percent\" time-layout=\"k-p12h-n14-2\">\n <name>12 Hourly Probability of Precipitation</name>\n <value>4</value>\n <value>4</value>\n <value>3</value>\n <value>7</value>\n <value>37</value>\n <value>48</value>\n <value>17</value>\n <value>13</value>\n <value>13</value>\n <value>6</value>\n <value>5</value>\n <value>5</value>\n <value>5</value>\n <value xsi:nil=\"true\"/>\n </probability-of-precipitation>\n <weather time-layout=\"k-p24h-n7-1\">\n <name>Weather Type, Coverage, and Intensity</name>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n <weather-conditions weather-summary=\"Partly Sunny\"/>\n <weather-conditions weather-summary=\"Chance Rain Showers\">\n <value coverage=\"chance\" intensity=\"light\" weather-type=\"rain showers\" qualifier=\"none\"/>\n </weather-conditions>\n <weather-conditions weather-summary=\"Partly Sunny\"/>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n <weather-conditions weather-summary=\"Mostly Sunny\"/>\n </weather>\n <conditions-icon type=\"forecast-NWS\" time-layout=\"k-p24h-n7-1\">\n <name>Conditions Icons</name>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/sct.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/hi_shwrs50.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/sct.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n <icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>\n </conditions-icon>\n <hazards time-layout=\"k-p1h-n1-3\">\n <name>Watches, Warnings, and Advisories</name>\n <hazard-conditions>\n <hazard hazardCode=\"FG.Y\" phenomena=\"Dense Fog\" significance=\"Advisory\" hazardType=\"long duration\">\n <hazardTextURL>http://forecast.weather.gov/wwamap/wwatxtget.php?cwa=lox&amp;wwa=Dense%20Fog%20Advisory</hazardTextURL>\n </hazard>\n </hazard-conditions>\n </hazards>\n </parameters>\n </data>\n</dwml>\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:42:19 GMT"},{"request":{"method":"get","uri":"http://w1.weather.gov/xml/current_obs/KSMO.xml","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache/2.2.15 (Red Hat)"],"Last-Modified":["Sat, 26 Oct 2013 14:02:19 GMT"],"Accept-Ranges":["bytes"],"Content-Length":["2106"],"Content-Type":["application/xml"],"Date":["Sat, 26 Oct 2013 14:42:19 GMT"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?> \r\n<?xml-stylesheet href=\"latest_ob.xsl\" type=\"text/xsl\"?>\r\n<current_observation version=\"1.0\"\r\n\t xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\r\n\t xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\r\n\t xsi:noNamespaceSchemaLocation=\"http://www.weather.gov/view/current_observation.xsd\">\r\n\t<credit>NOAA's National Weather Service</credit>\r\n\t<credit_URL>http://weather.gov/</credit_URL>\r\n\t<image>\r\n\t\t<url>http://weather.gov/images/xml_logo.gif</url>\r\n\t\t<title>NOAA's National Weather Service</title>\r\n\t\t<link>http://weather.gov</link>\r\n\t</image>\r\n\t<suggested_pickup>15 minutes after the hour</suggested_pickup>\r\n\t<suggested_pickup_period>60</suggested_pickup_period>\n\t<location>Santa Monica Muni, CA</location>\n\t<station_id>KSMO</station_id>\n\t<latitude>34.03</latitude>\n\t<longitude>-118.45</longitude>\n\t<observation_time>Last Updated on Oct 26 2013, 6:51 am PDT</observation_time>\r\n <observation_time_rfc822>Sat, 26 Oct 2013 06:51:00 -0700</observation_time_rfc822>\n\t<weather>Fog</weather>\n\t<temperature_string>57.0 F (13.9 C)</temperature_string>\r\n\t<temp_f>57.0</temp_f>\r\n\t<temp_c>13.9</temp_c>\n\t<relative_humidity>96</relative_humidity>\n\t<wind_string>Calm</wind_string>\n\t<wind_dir>North</wind_dir>\n\t<wind_degrees>0</wind_degrees>\n\t<wind_mph>0.0</wind_mph>\n\t<wind_kt>0</wind_kt>\n\t<pressure_string>1018.5 mb</pressure_string>\n\t<pressure_mb>1018.5</pressure_mb>\n\t<pressure_in>30.08</pressure_in>\n\t<dewpoint_string>55.9 F (13.3 C)</dewpoint_string>\r\n\t<dewpoint_f>55.9</dewpoint_f>\r\n\t<dewpoint_c>13.3</dewpoint_c>\n\t<visibility_mi>0.25</visibility_mi>\n \t<icon_url_base>http://forecast.weather.gov/images/wtf/small/</icon_url_base>\n\t<two_day_history_url>http://www.weather.gov/data/obhistory/KSMO.html</two_day_history_url>\n\t<icon_url_name>nfg.png</icon_url_name>\n\t<ob_url>http://www.weather.gov/data/METAR/KSMO.1.txt</ob_url>\n\t<disclaimer_url>http://weather.gov/disclaimer.html</disclaimer_url>\r\n\t<copyright_url>http://weather.gov/disclaimer.html</copyright_url>\r\n\t<privacy_policy_url>http://weather.gov/notice.html</privacy_policy_url>\r\n</current_observation>\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:42:19 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -1 +1 @@
1
- {"http_interactions":[{"request":{"method":"get","uri":"http://WEATHERBUG_CODE.api.wxbug.net/getLiveWeatherRSS.aspx?ACode=WEATHERBUG_CODE&OutputType=1&UnitType=1&zipCode=90210","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["private"],"Content-Type":["application/xml; charset=utf-8"],"Date":["Sat, 09 Feb 2013 21:44:53 GMT"],"Server":["Microsoft-IIS/7.5"],"Set-Cookie":["ASP.NET_SessionId=stlos1vltmdjt2dvzhdqgbdu; path=/; HttpOnly"],"X-Aspnet-Version":["4.0.30319"],"X-Powered-By":["ASP.NET"],"Content-Length":["4083"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"<aws:weather xmlns:aws=\"http://www.aws.com/aws\"><aws:api version=\"2.0\" /><aws:WebURL>http://weather.weatherbug.com/CA/Los Angeles-weather.html?ZCode=Z5546&amp;Units=1&amp;stat=LSNGN</aws:WebURL><aws:InputLocationURL>http://weather.weatherbug.com/CA/Beverly Hills-weather.html?ZCode=Z5546&amp;Units=1</aws:InputLocationURL><aws:ob><aws:ob-date><aws:year number=\"2013\" /><aws:month number=\"2\" text=\"February\" abbrv=\"Feb\" /><aws:day number=\"9\" text=\"Saturday\" abbrv=\"Sat\" /><aws:hour number=\"1\" hour-24=\"13\" /><aws:minute number=\"44\" /><aws:second number=\"00\" /><aws:am-pm abbrv=\"PM\" /><aws:time-zone offset=\"-8\" text=\"Pacific Standard Time (USA)\" abbrv=\"PST\" /></aws:ob-date><aws:requested-station-id /><aws:station-id>LSNGN</aws:station-id><aws:station>Alexander Hamilton Senior HS</aws:station><aws:city-state zipcode=\"90034\">Los Angeles, CA</aws:city-state><aws:country>USA</aws:country><aws:latitude>34.0336112976074</aws:latitude><aws:longitude>-118.389999389648</aws:longitude><aws:site-url>http://www.hamiltonhighschool.net/</aws:site-url><aws:aux-temp units=\"&amp;deg;C\">16</aws:aux-temp><aws:aux-temp-rate units=\"&amp;deg;C\">0.0</aws:aux-temp-rate><aws:current-condition icon=\"http://deskwx.weatherbug.com/images/Forecast/icons/cond026.gif\">Mostly Sunny</aws:current-condition><aws:dew-point units=\"&amp;deg;C\">4</aws:dew-point><aws:elevation units=\"m\">40</aws:elevation><aws:feels-like units=\"&amp;deg;C\">13</aws:feels-like><aws:gust-time><aws:year number=\"2013\" /><aws:month number=\"2\" text=\"February\" abbrv=\"Feb\" /><aws:day number=\"9\" text=\"Saturday\" abbrv=\"Sat\" /><aws:hour number=\"1\" hour-24=\"13\" /><aws:minute number=\"43\" /><aws:second number=\"00\" /><aws:am-pm abbrv=\"PM\" /><aws:time-zone offset=\"-8\" text=\"Pacific Standard Time (USA)\" abbrv=\"PST\" /></aws:gust-time><aws:gust-direction>SW</aws:gust-direction><aws:gust-direction-degrees>222</aws:gust-direction-degrees><aws:gust-speed units=\"km/h\">24</aws:gust-speed><aws:humidity units=\"%\">57</aws:humidity><aws:humidity-high units=\"%\">100</aws:humidity-high><aws:humidity-low units=\"%\">48</aws:humidity-low><aws:humidity-rate>-4</aws:humidity-rate><aws:indoor-temp units=\"&amp;deg;C\">22</aws:indoor-temp><aws:indoor-temp-rate units=\"&amp;deg;C\">0</aws:indoor-temp-rate><aws:light>15.3</aws:light><aws:light-rate>-0.2</aws:light-rate><aws:moon-phase moon-phase-img=\"http://api.wxbug.net/images/moonphase/mphase01.gif\">2</aws:moon-phase><aws:pressure units=\"mb\">1015.24</aws:pressure><aws:pressure-high units=\"mb\">1015.92</aws:pressure-high><aws:pressure-low units=\"mb\">1012.19</aws:pressure-low><aws:pressure-rate units=\"mb/h\">0.00</aws:pressure-rate><aws:rain-month units=\"mm\">0.51</aws:rain-month><aws:rain-rate units=\"mm/h\">0.00</aws:rain-rate><aws:rain-rate-max units=\"mm/h\">0.00</aws:rain-rate-max><aws:rain-today units=\"mm\">0.00</aws:rain-today><aws:rain-year units=\"mm\">24.38</aws:rain-year><aws:temp units=\"&amp;deg;C\">12.8</aws:temp><aws:temp-high units=\"&amp;deg;C\">13</aws:temp-high><aws:temp-low units=\"&amp;deg;C\">4</aws:temp-low><aws:temp-rate units=\"&amp;deg;C/h\">0.7</aws:temp-rate><aws:sunrise><aws:year number=\"2013\" /><aws:month number=\"2\" text=\"February\" abbrv=\"Feb\" /><aws:day number=\"9\" text=\"Saturday\" abbrv=\"Sat\" /><aws:hour number=\"6\" hour-24=\"06\" /><aws:minute number=\"44\" /><aws:second number=\"19\" /><aws:am-pm abbrv=\"AM\" /><aws:time-zone offset=\"-8\" text=\"Pacific Standard Time (USA)\" abbrv=\"PST\" /></aws:sunrise><aws:sunset><aws:year number=\"2013\" /><aws:month number=\"2\" text=\"February\" abbrv=\"Feb\" /><aws:day number=\"9\" text=\"Saturday\" abbrv=\"Sat\" /><aws:hour number=\"5\" hour-24=\"17\" /><aws:minute number=\"31\" /><aws:second number=\"50\" /><aws:am-pm abbrv=\"PM\" /><aws:time-zone offset=\"-8\" text=\"Pacific Standard Time (USA)\" abbrv=\"PST\" /></aws:sunset><aws:wet-bulb units=\"&amp;deg;C\">8.69</aws:wet-bulb><aws:wind-speed units=\"km/h\">18</aws:wind-speed><aws:wind-speed-avg units=\"km/h\">10</aws:wind-speed-avg><aws:wind-direction>WSW</aws:wind-direction><aws:wind-direction-degrees>235</aws:wind-direction-degrees><aws:wind-direction-avg>SW</aws:wind-direction-avg></aws:ob></aws:weather>\r\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 21:44:54 GMT"},{"request":{"method":"get","uri":"http://WEATHERBUG_CODE.api.wxbug.net/getForecastRSS.aspx?ACode=WEATHERBUG_CODE&OutputType=1&UnitType=1&zipCode=90210","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["private"],"Content-Type":["application/xml; charset=utf-8"],"Date":["Sat, 09 Feb 2013 21:44:56 GMT"],"Server":["Microsoft-IIS/7.5"],"Set-Cookie":["ASP.NET_SessionId=iisrxmqzjj3jkh1wcxrmx22e; path=/; HttpOnly"],"X-Aspnet-Version":["4.0.30319"],"X-Powered-By":["ASP.NET"],"Content-Length":["3712"],"Connection":["keep-alive"]},"body":{"encoding":"US-ASCII","string":"<aws:weather xmlns:aws=\"http://www.aws.com/aws\"><aws:api version=\"2.0\" /><aws:WebURL>http://weather.weatherbug.com/CA/Beverly Hills-weather/local-forecast/7-day-forecast.html?ZCode=Z5546&amp;Units=1</aws:WebURL><aws:forecasts type=\"Detailed\" date=\"2/9/2013 10:23:00 AM\"><aws:location><aws:city>Beverly Hills</aws:city><aws:state>CA</aws:state><aws:zip>90210</aws:zip><aws:zone>CA041</aws:zone></aws:location><aws:forecast><aws:title alttitle=\"SAT\">Saturday</aws:title><aws:short-prediction>Partly Cloudy</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond003.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond003.gif</aws:image><aws:description>Saturday</aws:description><aws:prediction>Partly cloudy. Highs in the mid to upper 50s. West winds around 15 mph in the afternoon.</aws:prediction><aws:high units=\"&amp;deg;C\">13</aws:high><aws:low units=\"&amp;deg;C\">6</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"SUN\">Sunday</aws:title><aws:short-prediction>Partly Cloudy</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond003.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond003.gif</aws:image><aws:description>Sunday</aws:description><aws:prediction>Partly cloudy in the morning...then becoming sunny. Highs in the mid 50s to lower 60s.</aws:prediction><aws:high units=\"&amp;deg;C\">14</aws:high><aws:low units=\"&amp;deg;C\">7</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"MON\">Monday</aws:title><aws:short-prediction>Sunny</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond007.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond007.gif</aws:image><aws:description>Monday</aws:description><aws:prediction>Sunny. Highs in the upper 50s to mid 60s.</aws:prediction><aws:high units=\"&amp;deg;C\">16</aws:high><aws:low units=\"&amp;deg;C\">7</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"TUE\">Tuesday</aws:title><aws:short-prediction>Mostly Sunny</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond026.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond026.gif</aws:image><aws:description>Tuesday</aws:description><aws:prediction>Mostly clear. Lows in the 40s to lower 50s. Highs in the 60s.</aws:prediction><aws:high units=\"&amp;deg;C\">18</aws:high><aws:low units=\"&amp;deg;C\">8</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"WED\">Wednesday</aws:title><aws:short-prediction>Mostly Sunny</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond026.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond026.gif</aws:image><aws:description>Wednesday</aws:description><aws:prediction>Mostly clear. Lows in the 40s to lower 50s. Highs in the 60s.</aws:prediction><aws:high units=\"&amp;deg;C\">19</aws:high><aws:low units=\"&amp;deg;C\">9</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"THU\">Thursday</aws:title><aws:short-prediction>Mostly Sunny</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond026.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond026.gif</aws:image><aws:description>Thursday</aws:description><aws:prediction>Mostly clear. Highs in the mid 60s to lower 70s. Lows in the mid 40s to lower 50s.</aws:prediction><aws:high units=\"&amp;deg;C\">21</aws:high><aws:low units=\"&amp;deg;C\">9</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"FRI\">Friday</aws:title><aws:short-prediction>Sunny</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond007.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond007.gif</aws:image><aws:description>Friday</aws:description><aws:prediction>Sunny. Highs in the upper 60s to mid 70s.</aws:prediction><aws:high units=\"&amp;deg;C\">23</aws:high><aws:low units=\"&amp;deg;C\">--</aws:low></aws:forecast></aws:forecasts></aws:weather>\r\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 21:44:57 GMT"}],"recorded_with":"VCR 2.4.0"}
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://WEATHERBUG_CODE.api.wxbug.net/getLiveWeatherRSS.aspx?ACode=WEATHERBUG_CODE&OutputType=1&UnitType=1&zipCode=90210","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["private"],"Content-Type":["application/xml; charset=utf-8"],"Date":["Sat, 26 Oct 2013 14:55:07 GMT"],"Server":["Microsoft-IIS/7.5"],"Set-Cookie":["ASP.NET_SessionId=2q2lm10ejga21x3jdps0f0rm; path=/; HttpOnly"],"X-Aspnet-Version":["4.0.30319"],"X-Powered-By":["ASP.NET"],"Content-Length":["4076"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"<aws:weather xmlns:aws=\"http://www.aws.com/aws\"><aws:api version=\"2.0\" /><aws:WebURL>http://weather.weatherbug.com/CA/Valley Village-weather.html?ZCode=Z5546&amp;Units=1&amp;stat=NRTSH</aws:WebURL><aws:InputLocationURL>http://weather.weatherbug.com/CA/Beverly Hills-weather.html?ZCode=Z5546&amp;Units=1</aws:InputLocationURL><aws:ob><aws:ob-date><aws:year number=\"2013\" /><aws:month number=\"10\" text=\"October\" abbrv=\"Oct\" /><aws:day number=\"26\" text=\"Saturday\" abbrv=\"Sat\" /><aws:hour number=\"7\" hour-24=\"07\" /><aws:minute number=\"54\" /><aws:second number=\"00\" /><aws:am-pm abbrv=\"AM\" /><aws:time-zone offset=\"-7\" text=\"Pacific Daylight Time (USA)\" abbrv=\"PDT\" /></aws:ob-date><aws:requested-station-id /><aws:station-id>NRTSH</aws:station-id><aws:station>Campbell Hall School</aws:station><aws:city-state zipcode=\"91617\">Valley Village, CA</aws:city-state><aws:country>USA</aws:country><aws:latitude>34.1536102294922</aws:latitude><aws:longitude>-118.398056030273</aws:longitude><aws:site-url>http://www.campbell.pvt.k12.ca.us/</aws:site-url><aws:aux-temp units=\"&amp;deg;C\">18</aws:aux-temp><aws:aux-temp-rate units=\"&amp;deg;C\">0.0</aws:aux-temp-rate><aws:current-condition icon=\"http://deskwx.weatherbug.com/images/Forecast/icons/cond026.gif\">Mostly Sunny</aws:current-condition><aws:dew-point units=\"&amp;deg;C\">11</aws:dew-point><aws:elevation units=\"m\">192</aws:elevation><aws:feels-like units=\"&amp;deg;C\">12</aws:feels-like><aws:gust-time><aws:year number=\"2013\" /><aws:month number=\"10\" text=\"October\" abbrv=\"Oct\" /><aws:day number=\"26\" text=\"Saturday\" abbrv=\"Sat\" /><aws:hour number=\"12\" hour-24=\"00\" /><aws:minute number=\"59\" /><aws:second number=\"00\" /><aws:am-pm abbrv=\"AM\" /><aws:time-zone offset=\"-7\" text=\"Pacific Daylight Time (USA)\" abbrv=\"PDT\" /></aws:gust-time><aws:gust-direction>S</aws:gust-direction><aws:gust-direction-degrees>174</aws:gust-direction-degrees><aws:gust-speed units=\"km/h\">2</aws:gust-speed><aws:humidity units=\"%\">97</aws:humidity><aws:humidity-high units=\"%\">97</aws:humidity-high><aws:humidity-low units=\"%\">89</aws:humidity-low><aws:humidity-rate>0</aws:humidity-rate><aws:indoor-temp units=\"&amp;deg;C\">24</aws:indoor-temp><aws:indoor-temp-rate units=\"&amp;deg;C\">0</aws:indoor-temp-rate><aws:light>0</aws:light><aws:light-rate>0</aws:light-rate><aws:moon-phase moon-phase-img=\"http://api.wxbug.net/images/moonphase/mphase19.gif\">59</aws:moon-phase><aws:pressure units=\"mb\">1017.27</aws:pressure><aws:pressure-high units=\"mb\">1017.27</aws:pressure-high><aws:pressure-low units=\"mb\">1016.60</aws:pressure-low><aws:pressure-rate units=\"mb/h\">0.68</aws:pressure-rate><aws:rain-month units=\"mm\">0.00</aws:rain-month><aws:rain-rate units=\"mm/h\">0.00</aws:rain-rate><aws:rain-rate-max units=\"mm/h\">0.00</aws:rain-rate-max><aws:rain-today units=\"mm\">0.00</aws:rain-today><aws:rain-year units=\"mm\">87.63</aws:rain-year><aws:temp units=\"&amp;deg;C\">11.9</aws:temp><aws:temp-high units=\"&amp;deg;C\">16</aws:temp-high><aws:temp-low units=\"&amp;deg;C\">11</aws:temp-low><aws:temp-rate units=\"&amp;deg;C/h\">0.6</aws:temp-rate><aws:sunrise><aws:year number=\"2013\" /><aws:month number=\"10\" text=\"October\" abbrv=\"Oct\" /><aws:day number=\"26\" text=\"Saturday\" abbrv=\"Sat\" /><aws:hour number=\"7\" hour-24=\"07\" /><aws:minute number=\"07\" /><aws:second number=\"55\" /><aws:am-pm abbrv=\"AM\" /><aws:time-zone offset=\"-7\" text=\"Pacific Daylight Time (USA)\" abbrv=\"PDT\" /></aws:sunrise><aws:sunset><aws:year number=\"2013\" /><aws:month number=\"10\" text=\"October\" abbrv=\"Oct\" /><aws:day number=\"26\" text=\"Saturday\" abbrv=\"Sat\" /><aws:hour number=\"6\" hour-24=\"18\" /><aws:minute number=\"06\" /><aws:second number=\"47\" /><aws:am-pm abbrv=\"PM\" /><aws:time-zone offset=\"-7\" text=\"Pacific Daylight Time (USA)\" abbrv=\"PDT\" /></aws:sunset><aws:wet-bulb units=\"&amp;deg;C\">11.65</aws:wet-bulb><aws:wind-speed units=\"km/h\">0</aws:wind-speed><aws:wind-speed-avg units=\"km/h\">0</aws:wind-speed-avg><aws:wind-direction>S</aws:wind-direction><aws:wind-direction-degrees>173</aws:wind-direction-degrees><aws:wind-direction-avg>S</aws:wind-direction-avg></aws:ob></aws:weather>\r\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:55:07 GMT"},{"request":{"method":"get","uri":"http://WEATHERBUG_CODE.api.wxbug.net/getForecastRSS.aspx?ACode=WEATHERBUG_CODE&OutputType=1&UnitType=1&zipCode=90210","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["private"],"Content-Type":["application/xml; charset=utf-8"],"Date":["Sat, 26 Oct 2013 14:55:07 GMT"],"Server":["Microsoft-IIS/7.5"],"Set-Cookie":["ASP.NET_SessionId=ppstsmui0taeaponkcny3cjz; path=/; HttpOnly"],"X-Aspnet-Version":["4.0.30319"],"X-Powered-By":["ASP.NET"],"Content-Length":["4096"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","string":"<aws:weather xmlns:aws=\"http://www.aws.com/aws\"><aws:api version=\"2.0\" /><aws:WebURL>http://weather.weatherbug.com/CA/Beverly Hills-weather/local-forecast/7-day-forecast.html?ZCode=Z5546&amp;Units=1</aws:WebURL><aws:forecasts type=\"Detailed\" date=\"10/26/2013 3:15:00 AM\"><aws:location><aws:city>Beverly Hills</aws:city><aws:state>CA</aws:state><aws:zip>90210</aws:zip><aws:zone>CA041</aws:zone></aws:location><aws:forecast><aws:title alttitle=\"SAT\">Saturday</aws:title><aws:short-prediction>Partly Cloudy</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond003.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond003.gif</aws:image><aws:description>Saturday</aws:description><aws:prediction>Areas of low clouds and fog in the morning then sunny. Highs from the lower to mid 70s at the beaches to around 80 inland.</aws:prediction><aws:high units=\"&amp;deg;C\">27</aws:high><aws:low units=\"&amp;deg;C\">15</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"SUN\">Sunday</aws:title><aws:short-prediction>Partly Cloudy</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond003.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond003.gif</aws:image><aws:description>Sunday</aws:description><aws:prediction>Areas of low clouds and fog in the morning then sunny. Highs from the upper 60s at the beaches to the upper 70s inland.</aws:prediction><aws:high units=\"&amp;deg;C\">26</aws:high><aws:low units=\"&amp;deg;C\">13</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"MON\">Monday</aws:title><aws:short-prediction>40% Chance Rain Shower</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond109.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond109.gif</aws:image><aws:description>Monday</aws:description><aws:prediction>Mostly cloudy. A slight chance of showers in the morning then a chance of showers in the afternoon. Highs in the 60s. Southeast winds around 15 mph in the afternoon. Chance of precipitation 40 percent.</aws:prediction><aws:high units=\"&amp;deg;C\">18</aws:high><aws:low units=\"&amp;deg;C\">11</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"TUE\">Tuesday</aws:title><aws:short-prediction>Partly Cloudy</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond003.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond003.gif</aws:image><aws:description>Tuesday</aws:description><aws:prediction>Mostly cloudy with a 20 percent chance of showers in the morning then partly cloudy in the afternoon. Highs in the lower to mid 60s.</aws:prediction><aws:high units=\"&amp;deg;C\">17</aws:high><aws:low units=\"&amp;deg;C\">12</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"WED\">Wednesday</aws:title><aws:short-prediction>Mostly Sunny</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond026.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond026.gif</aws:image><aws:description>Wednesday</aws:description><aws:prediction>Mostly clear. Highs from the mid 60s at the beaches to the mid 70s inland. Lows in the 50s.</aws:prediction><aws:high units=\"&amp;deg;C\">22</aws:high><aws:low units=\"&amp;deg;C\">12</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"THU\">Thursday</aws:title><aws:short-prediction>Mostly Sunny</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond026.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond026.gif</aws:image><aws:description>Thursday</aws:description><aws:prediction>Mostly clear. Highs from the mid 60s at the beaches to the mid 70s inland. Lows in the 50s.</aws:prediction><aws:high units=\"&amp;deg;C\">23</aws:high><aws:low units=\"&amp;deg;C\">13</aws:low></aws:forecast><aws:forecast><aws:title alttitle=\"FRI\">Friday</aws:title><aws:short-prediction>Sunny</aws:short-prediction><aws:image isNight=\"0\" icon=\"cond007.gif\">http://deskwx.weatherbug.com/images/Forecast/icons/cond007.gif</aws:image><aws:description>Friday</aws:description><aws:prediction>Sunny. Highs from around 70 at the beaches to around 80 inland.</aws:prediction><aws:high units=\"&amp;deg;C\">26</aws:high><aws:low units=\"&amp;deg;C\">--</aws:low></aws:forecast></aws:forecasts></aws:weather>\r\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:55:07 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://api.wunderground.com/auto/wui/geo/WXCurrentObXML/index.xml?query=Calgary,AB","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"X-Creationtime":["0.033"],"Cneonction":["close"],"Content-Type":["text/xml"],"Expires":["Sat, 26 Oct 2013 14:55:42 GMT"],"Cache-Control":["max-age=0, no-cache"],"Pragma":["no-cache"],"Date":["Sat, 26 Oct 2013 14:55:42 GMT"],"Content-Length":["4141"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","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 October 26, 8:00 AM MDT</observation_time>\n\t\t<observation_time_rfc822>Sat, 26 Oct 2013 14:00:00 GMT</observation_time_rfc822>\n\t\t<observation_epoch>1382796000</observation_epoch>\n\t\t<local_time>October 26, 8:55 AM MDT</local_time>\n\t\t<local_time_rfc822>Sat, 26 Oct 2013 14:55:42 GMT</local_time_rfc822>\n\t\t<local_epoch>1382799342</local_epoch>\n\t\t<weather>Partly Cloudy</weather>\n\t\t<temperature_string>43 F (6 C)</temperature_string>\n\t\t<temp_f>43</temp_f>\n\t\t<temp_c>6</temp_c>\n\t\t<relative_humidity>49%</relative_humidity>\n\t\t<wind_string>From the NNW at 2 MPH </wind_string>\n\t\t<wind_dir>NNW</wind_dir>\n\t\t<wind_degrees>340</wind_degrees>\n\t\t<wind_mph>2</wind_mph>\n\t\t<wind_gust_mph></wind_gust_mph>\n\t\t<pressure_string>30.19 in (1022 mb)</pressure_string>\r\n\t\t<pressure_mb>1022</pressure_mb>\r\n\t\t<pressure_in>30.19</pressure_in>\r\n\t\t<dewpoint_string>25 F (-4 C)</dewpoint_string>\r\n\t\t<dewpoint_f>25</dewpoint_f>\r\n\t\t<dewpoint_c>-4</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>NA</windchill_string>\r\n\t\t<windchill_f>NA</windchill_f>\r\n\t\t<windchill_c>NA</windchill_c>\r\n\t\t\r\n\t\t<visibility_mi>40.0</visibility_mi>\r\n\t\t<visibility_km>64.4</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/partlycloudy.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/partlycloudy.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/partlycloudy.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/partlycloudy.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/partlycloudy.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/partlycloudy.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/partlycloudy.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/partlycloudy.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/partlycloudy.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/partlycloudy.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>partlycloudy</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/10/26/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"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:55:42 GMT"},{"request":{"method":"get","uri":"http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml?query=Calgary,AB","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"X-Creationtime":["0.073"],"Content-Type":["text/xml"],"Expires":["Sat, 26 Oct 2013 14:55:42 GMT"],"Cache-Control":["max-age=0, no-cache"],"Pragma":["no-cache"],"Date":["Sat, 26 Oct 2013 14:55:42 GMT"],"Content-Length":["23603"],"Connection":["keep-alive"]},"body":{"encoding":"UTF-8","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>6:00 PM MDT</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>October 25, 2013</title>\n\t\t<fcttext>Clear. High 18&amp;deg;C (64&amp;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>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>October 26, 2013</title>\n\t\t<fcttext>Clear. High 12&amp;deg;C (53&amp;deg;F). Winds 10 kph ESE</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>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>October 27, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 17&amp;deg;C (62&amp;deg;F). Winds 10 kph West</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>3</period>\n\t\t<icon>rain</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/rain.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/rain.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/rain.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/rain.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/rain.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/rain.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/rain.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/rain.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/rain.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/rain.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>October 28, 2013</title>\n\t\t<fcttext>Rain. High 6&amp;deg;C (42&amp;deg;F). Winds 28 kph NE</fcttext>\n\t\t<pop>60</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>4</period>\n\t\t<icon>hazy</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/hazy.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/hazy.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/hazy.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/hazy.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/hazy.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/hazy.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/hazy.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/hazy.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/hazy.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/hazy.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>October 29, 2013</title>\n\t\t<fcttext>Fog. High -2&amp;deg;C (28&amp;deg;F). Winds 14 kph SSE</fcttext>\n\t\t<pop>10</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>October 30, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 4&amp;deg;C (39&amp;deg;F). Winds 10 kph South</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>1382842800</epoch>\n <pretty_short>9:00 PM MDT</pretty_short>\n <pretty>9:00 PM MDT on October 26, 2013</pretty>\n <day>26</day>\n <month>10</month>\n <year>2013</year>\n <yday>298</yday>\n <hour>21</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>1</isdst>\n <monthname>October</monthname>\n <weekday_short></weekday_short>\n <weekday>Saturday</weekday>\n <ampm>PM</ampm>\n <tz_short>MDT</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>63</fahrenheit>\r\n <celsius>17</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>36</fahrenheit>\r\n <celsius>2</celsius>\r\n </low>\r\n <conditions>Mostly Cloudy</conditions>\r\n <icon>mostlycloudy</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/mostlycloudy.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/mostlycloudy.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/mostlycloudy.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/mostlycloudy.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/mostlycloudy.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/mostlycloudy.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/mostlycloudy.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/mostlycloudy.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/mostlycloudy.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/mostlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</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>2</period>\r\n <date>\n <epoch>1382929200</epoch>\n <pretty_short>9:00 PM MDT</pretty_short>\n <pretty>9:00 PM MDT on October 27, 2013</pretty>\n <day>27</day>\n <month>10</month>\n <year>2013</year>\n <yday>299</yday>\n <hour>21</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>1</isdst>\n <monthname>October</monthname>\n <weekday_short></weekday_short>\n <weekday>Sunday</weekday>\n <ampm>PM</ampm>\n <tz_short>MDT</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>14</fahrenheit>\r\n <celsius>-10</celsius>\r\n </low>\r\n <conditions>Snow</conditions>\r\n <icon>snow</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/snow.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/snow.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/snow.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/snow.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/snow.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/snow.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/snow.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/snow.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/snow.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/snow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>cloudy</skyicon>\r\n\t\t\t<pop>90</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>1383015600</epoch>\n <pretty_short>9:00 PM MDT</pretty_short>\n <pretty>9:00 PM MDT on October 28, 2013</pretty>\n <day>28</day>\n <month>10</month>\n <year>2013</year>\n <yday>300</yday>\n <hour>21</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>1</isdst>\n <monthname>October</monthname>\n <weekday_short></weekday_short>\n <weekday>Monday</weekday>\n <ampm>PM</ampm>\n <tz_short>MDT</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>30</fahrenheit>\r\n <celsius>-1</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>10</fahrenheit>\r\n <celsius>-12</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>1383102000</epoch>\n <pretty_short>9:00 PM MDT</pretty_short>\n <pretty>9:00 PM MDT on October 29, 2013</pretty>\n <day>29</day>\n <month>10</month>\n <year>2013</year>\n <yday>301</yday>\n <hour>21</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>1</isdst>\n <monthname>October</monthname>\n <weekday_short></weekday_short>\n <weekday>Tuesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MDT</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>41</fahrenheit>\r\n <celsius>5</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>5</period>\r\n <date>\n <epoch>1383188400</epoch>\n <pretty_short>9:00 PM MDT</pretty_short>\n <pretty>9:00 PM MDT on October 30, 2013</pretty>\n <day>30</day>\n <month>10</month>\n <year>2013</year>\n <yday>302</yday>\n <hour>21</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>1</isdst>\n <monthname>October</monthname>\n <weekday_short></weekday_short>\n <weekday>Wednesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MDT</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>34</fahrenheit>\r\n <celsius>1</celsius>\r\n </low>\r\n <conditions>Fog</conditions>\r\n <icon>cloudy</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/cloudy.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/cloudy.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/cloudy.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/cloudy.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/cloudy.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/cloudy.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/cloudy.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/cloudy.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/cloudy.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/cloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>cloudy</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>6</period>\r\n <date>\n <epoch>1383274800</epoch>\n <pretty_short>9:00 PM MDT</pretty_short>\n <pretty>9:00 PM MDT on October 31, 2013</pretty>\n <day>31</day>\n <month>10</month>\n <year>2013</year>\n <yday>303</yday>\n <hour>21</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>1</isdst>\n <monthname>October</monthname>\n <weekday_short></weekday_short>\n <weekday>Thursday</weekday>\n <ampm>PM</ampm>\n <tz_short>MDT</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>54</fahrenheit>\r\n <celsius>12</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>28</fahrenheit>\r\n <celsius>-2</celsius>\r\n </low>\r\n <conditions>Chance of Rain</conditions>\r\n <icon>chancerain</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/chancerain.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/chancerain.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/chancerain.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/chancerain.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/chancerain.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/chancerain.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/chancerain.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/chancerain.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/chancerain.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/chancerain.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\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>53</percentIlluminated>\r\n <ageOfMoon>22</ageOfMoon>\r\n\t\t<current_time>\r\n\t\t\t<hour>8</hour>\r\n\t\t\t<minute>55</minute>\r\n\t\t</current_time>\r\n <sunset>\r\n <hour>18</hour>\r\n <minute>20</minute>\r\n </sunset>\r\n <sunrise>\r\n <hour>8</hour>\r\n <minute>18</minute>\r\n </sunrise>\r\n</moon_phase>\r\n</forecast>\r\n\r\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:55:42 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -1 +1 @@
1
- {"http_interactions":[{"request":{"uri":"http://weather.yahooapis.com/forecastrss?p=90210&u=c","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:09 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:43:08 GMT"],"Vary":["Accept-Encoding"],"Expires":["Sat, 09 Feb 2013 19:13:08 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 - Beverly Hills, CA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Beverly_Hills__CA/*http://weather.yahoo.com/forecast/USCA0090_c.html</link>\n<description>Yahoo! Weather for Beverly Hills, CA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 9:51 am PST</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Beverly Hills\" region=\"CA\" country=\"US\"/>\n<yweather:units temperature=\"C\" distance=\"km\" pressure=\"mb\" speed=\"km/h\"/>\n<yweather:wind chill=\"11\" direction=\"90\" speed=\"8.05\" />\n<yweather:atmosphere humidity=\"59\" visibility=\"16.09\" pressure=\"1017.7\" rising=\"1\" />\n<yweather:astronomy sunrise=\"6:44 am\" sunset=\"5:32 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 Beverly Hills, CA at 9:51 am PST</title>\n<geo:lat>34.08</geo:lat>\n<geo:long>-118.4</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Beverly_Hills__CA/*http://weather.yahoo.com/forecast/USCA0090_c.html</link>\n<pubDate>Sat, 09 Feb 2013 9:51 am PST</pubDate>\n<yweather:condition text=\"Fair\" code=\"34\" temp=\"11\" date=\"Sat, 09 Feb 2013 9:51 am PST\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/34.gif\"/><br />\n<b>Current Conditions:</b><br />\nFair, 11 C<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Sunny. High: 14 Low: 5<br />\nSun - Sunny. High: 15 Low: 4<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Beverly_Hills__CA/*http://weather.yahoo.com/forecast/USCA0090_c.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=\"5\" high=\"14\" text=\"Sunny\" code=\"32\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"4\" high=\"15\" text=\"Sunny\" code=\"32\" />\n<guid isPermaLink=\"false\">USCA0090_2013_02_10_7_00_PST</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api25.weather.bf1.yahoo.com Sat Feb 9 18:43:08 PST 2013 -->\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://weather.yahooapis.com/forecastrss?p=90210&u=c","body":{"encoding":"UTF-8","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 26 Oct 2013 14:56:33 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":["max-age=200, public"],"Vary":["Accept-Encoding"],"Content-Type":["text/xml;charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Server":["YTS/1.20.28"]},"body":{"encoding":"UTF-8","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 - Beverly Hills, CA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Beverly_Hills__CA/*http://weather.yahoo.com/forecast/USCA0090_c.html</link>\n<description>Yahoo! Weather for Beverly Hills, CA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 26 Oct 2013 6:52 am PDT</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Beverly Hills\" region=\"CA\" country=\"US\"/>\n<yweather:units temperature=\"C\" distance=\"km\" pressure=\"mb\" speed=\"km/h\"/>\n<yweather:wind chill=\"12\" direction=\"0\" speed=\"0\" />\n<yweather:atmosphere humidity=\"72\" visibility=\"16.09\" pressure=\"1017.1\" rising=\"0\" />\n<yweather:astronomy sunrise=\"7:07 am\" sunset=\"6:04 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 Beverly Hills, CA at 6:52 am PDT</title>\n<geo:lat>34.08</geo:lat>\n<geo:long>-118.4</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Beverly_Hills__CA/*http://weather.yahoo.com/forecast/USCA0090_c.html</link>\n<pubDate>Sat, 26 Oct 2013 6:52 am PDT</pubDate>\n<yweather:condition text=\"Fair\" code=\"33\" temp=\"12\" date=\"Sat, 26 Oct 2013 6:52 am PDT\" />\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, 12 C<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Mostly Sunny. High: 27 Low: 14<br />\nSun - Partly Cloudy. High: 25 Low: 14<br />\nMon - Few Showers. High: 17 Low: 11<br />\nTue - Few Showers. High: 16 Low: 11<br />\nWed - Sunny. High: 20 Low: 11<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Beverly_Hills__CA/*http://weather.yahoo.com/forecast/USCA0090_c.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=\"26 Oct 2013\" low=\"14\" high=\"27\" text=\"Mostly Sunny\" code=\"34\" />\n<yweather:forecast day=\"Sun\" date=\"27 Oct 2013\" low=\"14\" high=\"25\" text=\"Partly Cloudy\" code=\"30\" />\n<yweather:forecast day=\"Mon\" date=\"28 Oct 2013\" low=\"11\" high=\"17\" text=\"Few Showers\" code=\"11\" />\n<yweather:forecast day=\"Tue\" date=\"29 Oct 2013\" low=\"11\" high=\"16\" text=\"Few Showers\" code=\"11\" />\n<yweather:forecast day=\"Wed\" date=\"30 Oct 2013\" low=\"11\" high=\"20\" text=\"Sunny\" code=\"32\" />\n<guid isPermaLink=\"false\">USCA0090_2013_10_30_7_00_PDT</guid>\n</item>\n</channel>\n</rss>\n\n<!-- fan1566.sports.bf1.yahoo.com Sat Oct 26 14:56:33 PST 2013 -->\n"},"http_version":null},"recorded_at":"Sat, 26 Oct 2013 14:56:33 GMT"}],"recorded_with":"VCR 2.6.0"}
@@ -0,0 +1,60 @@
1
+ require_relative '../../spec_helper'
2
+ require 'virtus'
3
+
4
+ module Barometer
5
+ class TestClass
6
+ include Virtus.model
7
+ attribute :distance, Data::Attribute::Distance
8
+ end
9
+
10
+ describe Data::Attribute::Distance do
11
+ let(:model) { TestClass.new }
12
+
13
+ context 'when setting to nil' do
14
+ it 'resets the value' do
15
+ model.distance = Data::Distance.new(42.2)
16
+ model.distance = nil
17
+ expect( model.distance ).to be_nil
18
+ end
19
+ end
20
+
21
+ context 'when setting with data of exact values' do
22
+ it 'initializes Barometer::Data::Distance' do
23
+ model.distance = [42.2]
24
+ expect( model.distance ).to be_a Data::Distance
25
+ end
26
+
27
+ it 'prints correctly' do
28
+ model.distance = [42.2]
29
+ expect( model.distance.to_s ).to eq '42.2 km'
30
+ end
31
+ end
32
+
33
+ context 'when setting to multiple values' do
34
+ it 'initializes Barometer::Data::Distance' do
35
+ model.distance = [42.2, 26.2]
36
+ expect( model.distance ).to be_a Data::Distance
37
+ end
38
+
39
+ it 'prints correctly (as metric)' do
40
+ model.distance = [42.2, 26.2]
41
+ expect( model.distance.to_s ).to eq '42.2 km'
42
+ end
43
+
44
+ it 'prints correctly (as imperial)' do
45
+ model.distance = [:imperial, 42.2, 26.2]
46
+ expect( model.distance.to_s ).to eq '26.2 m'
47
+ end
48
+ end
49
+
50
+ context 'when setting with Barometer::Data::Distance' do
51
+ it 'uses the passed in value' do
52
+ distance = Data::Distance.new(42.2)
53
+ model.distance = distance
54
+
55
+ expect( model.distance ).to eq distance
56
+ expect( model.distance.object_id ).to eq distance.object_id
57
+ end
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,41 @@
1
+ require_relative '../../spec_helper'
2
+ require 'virtus'
3
+
4
+ module Barometer
5
+ class TestClass
6
+ include Virtus.model
7
+ attribute :location, Data::Attribute::Location
8
+ end
9
+
10
+ describe Data::Attribute::Location do
11
+ let(:model) { TestClass.new }
12
+
13
+ context 'when setting to nil' do
14
+ it 'resets the value' do
15
+ model.location = Barometer::Data::Location.new(name: 'foo')
16
+ model.location = nil
17
+
18
+ expect( model.location ).to be_a Data::Location
19
+ expect( model.location.to_s ).to be_blank
20
+ end
21
+ end
22
+
23
+ context 'when setting with invalid data' do
24
+ it 'raises an error' do
25
+ expect {
26
+ model.location = 'foo'
27
+ }.to raise_error{ ArgumentError }
28
+ end
29
+ end
30
+
31
+ context 'when setting with a location' do
32
+ it 'sets the value' do
33
+ location = Barometer::Data::Location.new(name: 'foo')
34
+ model.location = location
35
+
36
+ expect( model.location ).to eq location
37
+ expect( model.location.object_id ).to eq location.object_id
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,60 @@
1
+ require_relative '../../spec_helper'
2
+ require 'virtus'
3
+
4
+ module Barometer
5
+ class TestClass
6
+ include Virtus.model
7
+ attribute :pressure, Data::Attribute::Pressure
8
+ end
9
+
10
+ describe Data::Attribute::Pressure do
11
+ let(:model) { TestClass.new }
12
+
13
+ context 'when setting to nil' do
14
+ it 'resets the value' do
15
+ model.pressure = Data::Pressure.new(12)
16
+ model.pressure = nil
17
+ expect( model.pressure ).to be_nil
18
+ end
19
+ end
20
+
21
+ context 'when setting with data of exact values' do
22
+ it 'initializes Barometer::Data::Pressure' do
23
+ model.pressure = [12]
24
+ expect( model.pressure ).to be_a Data::Pressure
25
+ end
26
+
27
+ it 'prints correctly' do
28
+ model.pressure = [12]
29
+ expect( model.pressure.to_s ).to eq '12 mb'
30
+ end
31
+ end
32
+
33
+ context 'when setting to multiple values' do
34
+ it 'initializes Barometer::Data::Pressure' do
35
+ model.pressure = [1234, 36]
36
+ expect( model.pressure ).to be_a Data::Pressure
37
+ end
38
+
39
+ it 'prints correctly (as metric)' do
40
+ model.pressure = [1234, 36]
41
+ expect( model.pressure.to_s ).to eq '1234 mb'
42
+ end
43
+
44
+ it 'prints correctly (as imperial)' do
45
+ model.pressure = [:imperial, 1234, 36]
46
+ expect( model.pressure.to_s ).to eq '36 in'
47
+ end
48
+ end
49
+
50
+ context 'when setting with Barometer::Data::Pressure' do
51
+ it 'uses the passed in value' do
52
+ pressure = Data::Pressure.new(12)
53
+ model.pressure = pressure
54
+
55
+ expect( model.pressure ).to eq pressure
56
+ expect( model.pressure.object_id ).to eq pressure.object_id
57
+ end
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,33 @@
1
+ require_relative '../../spec_helper'
2
+ require 'virtus'
3
+
4
+ module Barometer
5
+ class TestClass
6
+ include Virtus.model
7
+ attribute :sun, Data::Attribute::Sun
8
+ end
9
+
10
+ describe Data::Attribute::Sun do
11
+ let(:model) { TestClass.new }
12
+
13
+ context 'when setting to nil' do
14
+ it 'resets the value' do
15
+ model.sun = Barometer::Data::Sun.new(rise: Time.now, set: Time.now)
16
+ model.sun = nil
17
+ expect( model.sun ).to be_nil
18
+ end
19
+ end
20
+
21
+ context 'when setting with Barometer::Data::Time' do
22
+ it 'uses the passed in value' do
23
+ rise = Time.utc(2013, 02, 10, 6, 0, 0)
24
+ set = Time.utc(2013, 02, 10, 6, 0, 0)
25
+ sun = Barometer::Data::Sun.new(rise: rise, set: set)
26
+ model.sun = sun
27
+
28
+ expect( model.sun ).to eq sun
29
+ expect( model.sun.object_id ).to eq sun.object_id
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,60 @@
1
+ require_relative '../../spec_helper'
2
+ require 'virtus'
3
+
4
+ module Barometer
5
+ class TestClass
6
+ include Virtus.model
7
+ attribute :temperature, Data::Attribute::Temperature
8
+ end
9
+
10
+ describe Data::Attribute::Temperature do
11
+ let(:model) { TestClass.new }
12
+
13
+ context 'when setting to nil' do
14
+ it 'resets the value' do
15
+ model.temperature = Data::Temperature.new(12)
16
+ model.temperature = nil
17
+ expect( model.temperature ).to be_nil
18
+ end
19
+ end
20
+
21
+ context 'when setting with data of exact values' do
22
+ it 'initializes Barometer::Data::Temperature' do
23
+ model.temperature = [12]
24
+ expect( model.temperature ).to be_a Data::Temperature
25
+ end
26
+
27
+ it 'defaults to :metric' do
28
+ model.temperature = [12]
29
+ expect( model.temperature.to_s ).to eq '12 C'
30
+ end
31
+ end
32
+
33
+ context 'when setting to multiple values' do
34
+ it 'initializes Barometer::Data::Temperature' do
35
+ model.temperature = [12, 53]
36
+ expect( model.temperature ).to be_a Data::Temperature
37
+ end
38
+
39
+ it 'prints correctly (as metric)' do
40
+ model.temperature = [12, 53]
41
+ expect( model.temperature.to_s ).to eq '12 C'
42
+ end
43
+
44
+ it 'prints correctly (as imperial)' do
45
+ model.temperature = [:imperial, 12, 53]
46
+ expect( model.temperature.to_s ).to eq '53 F'
47
+ end
48
+ end
49
+
50
+ context 'when setting with Barometer::Data::Temperature' do
51
+ it 'uses the passed in value' do
52
+ temperature = Data::Temperature.new(12)
53
+ model.temperature = temperature
54
+
55
+ expect( model.temperature ).to eq temperature
56
+ expect( model.temperature.object_id ).to eq temperature.object_id
57
+ end
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,58 @@
1
+ require_relative '../../spec_helper'
2
+ require 'virtus'
3
+
4
+ module Barometer
5
+ class TestClass
6
+ include Virtus.model
7
+ attribute :time, Data::Attribute::Time
8
+ end
9
+
10
+ describe Data::Attribute::Time do
11
+ let(:model) { TestClass.new }
12
+
13
+ context 'when nothing has been set' do
14
+ it 'returns nil' do
15
+ expect( model.time ).to be_nil
16
+ end
17
+ end
18
+
19
+ context 'when setting to nil' do
20
+ it 'resets the value' do
21
+ model.time = '2012-10-04', '%Y-%d-%m'
22
+ model.time = nil
23
+ expect( model.time ).to be_nil
24
+ end
25
+ end
26
+
27
+ context 'when setting with data to be interpretted as a time' do
28
+ it 'sets the value' do
29
+ model.time = 2012, 10, 4, 5, 30, 45
30
+ expect( model.time ).to eq ::Time.utc(2012, 10, 4, 5, 30, 45)
31
+ end
32
+ end
33
+
34
+ context 'when setting with data to parse' do
35
+ it 'sets the value' do
36
+ model.time = '2012-10-4 5:30:45 pm UTC'
37
+ expect( model.time ).to eq ::Time.utc(2012, 10, 4, 17, 30, 45)
38
+ end
39
+ end
40
+
41
+ context 'when setting with data to parse (including format)' do
42
+ it 'sets the value' do
43
+ model.time = '2012-10-04', '%Y-%d-%m'
44
+ expect( model.time ).to eq ::Time.utc(2012, 4, 10)
45
+ end
46
+ end
47
+
48
+ context 'when setting with Time' do
49
+ it 'uses the passed in value' do
50
+ time = ::Time.now.utc
51
+ model.time = time
52
+
53
+ expect( model.time ).to be_a ::Time
54
+ expect( model.time.object_id ).to eq time.object_id
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,43 @@
1
+ require_relative '../../spec_helper'
2
+ require 'virtus'
3
+
4
+ module Barometer
5
+ class TestClass
6
+ include Virtus.model
7
+ attribute :vector, Data::Attribute::Vector
8
+ end
9
+
10
+ describe Data::Attribute::Vector do
11
+ let(:model) { TestClass.new }
12
+
13
+ context 'when setting to nil' do
14
+ it 'resets the value' do
15
+ model.vector = Data::Vector.new(12, 270)
16
+ model.vector = nil
17
+ model.vector.should be_nil
18
+ end
19
+ end
20
+
21
+ context 'when setting with data of exact values' do
22
+ it 'initializes Barometer::Data::Vector' do
23
+ model.vector = [12, 270]
24
+ expect( model.vector ).to be_a Data::Vector
25
+ end
26
+
27
+ it 'prints correctly' do
28
+ model.vector = [12]
29
+ expect( model.vector.to_s ).to eq '12 kph'
30
+ end
31
+ end
32
+
33
+ context 'when setting with Barometer::Data::Vector' do
34
+ it 'uses the passed in value' do
35
+ vector = Data::Vector.new(12, 270)
36
+ model.vector = vector
37
+
38
+ expect( model.vector ).to eq vector
39
+ expect( model.vector.object_id ).to eq vector.object_id
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,34 @@
1
+ require_relative '../../spec_helper'
2
+ require 'virtus'
3
+
4
+ module Barometer
5
+ class TestClass
6
+ include Virtus.model
7
+ attribute :timezone, Data::Attribute::Zone
8
+ end
9
+
10
+ describe Data::Attribute::Zone do
11
+ let(:model) { TestClass.new }
12
+
13
+ context 'when nothing has been set' do
14
+ it 'returns nil' do
15
+ expect( model.timezone ).to be_nil
16
+ end
17
+ end
18
+
19
+ context 'when setting to nil' do
20
+ it 'resets the value' do
21
+ model.timezone = Barometer::Data::Zone.new('MST')
22
+ model.timezone = nil
23
+ expect( model.timezone ).to be_nil
24
+ end
25
+ end
26
+
27
+ context 'when setting with data to be interpretted as a time zone' do
28
+ it 'sets the value' do
29
+ model.timezone = Barometer::Data::Zone.new('PDT')
30
+ expect( model.timezone.code ).to eq 'PDT'
31
+ end
32
+ end
33
+ end
34
+ end