barometer 0.7.3 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. data/.gitignore +1 -0
  2. data/.travis.yml +7 -0
  3. data/LICENSE +1 -1
  4. data/{README.rdoc → README.md} +124 -110
  5. data/Rakefile +1 -21
  6. data/TODO +8 -9
  7. data/barometer.gemspec +20 -19
  8. data/bin/barometer +36 -83
  9. data/lib/barometer.rb +13 -11
  10. data/lib/barometer/base.rb +10 -10
  11. data/lib/barometer/data.rb +1 -1
  12. data/lib/barometer/data/distance.rb +25 -25
  13. data/lib/barometer/data/geo.rb +9 -9
  14. data/lib/barometer/data/local_datetime.rb +24 -20
  15. data/lib/barometer/data/local_time.rb +13 -13
  16. data/lib/barometer/data/location.rb +6 -6
  17. data/lib/barometer/data/pressure.rb +24 -24
  18. data/lib/barometer/data/speed.rb +28 -28
  19. data/lib/barometer/data/sun.rb +7 -7
  20. data/lib/barometer/data/temperature.rb +29 -29
  21. data/lib/barometer/data/units.rb +9 -9
  22. data/lib/barometer/data/zone.rb +19 -19
  23. data/lib/barometer/formats.rb +1 -1
  24. data/lib/barometer/formats/coordinates.rb +7 -7
  25. data/lib/barometer/formats/format.rb +6 -6
  26. data/lib/barometer/formats/geocode.rb +5 -5
  27. data/lib/barometer/formats/icao.rb +6 -6
  28. data/lib/barometer/formats/postalcode.rb +3 -3
  29. data/lib/barometer/formats/short_zipcode.rb +2 -2
  30. data/lib/barometer/formats/weather_id.rb +10 -10
  31. data/lib/barometer/formats/woe_id.rb +20 -20
  32. data/lib/barometer/formats/zipcode.rb +3 -3
  33. data/lib/barometer/key_file_parser.rb +20 -0
  34. data/lib/barometer/measurements/measurement.rb +32 -32
  35. data/lib/barometer/measurements/result.rb +39 -39
  36. data/lib/barometer/measurements/result_array.rb +12 -12
  37. data/lib/barometer/query.rb +15 -15
  38. data/lib/barometer/services.rb +3 -3
  39. data/lib/barometer/translations/icao_country_codes.yml +20 -20
  40. data/lib/barometer/translations/weather_country_codes.yml +1 -1
  41. data/lib/barometer/translations/zone_codes.yml +2 -2
  42. data/lib/barometer/version.rb +3 -0
  43. data/lib/barometer/weather.rb +27 -27
  44. data/lib/barometer/weather_services/noaa.rb +314 -3
  45. data/lib/barometer/weather_services/service.rb +32 -30
  46. data/lib/barometer/weather_services/weather_bug.rb +35 -33
  47. data/lib/barometer/weather_services/wunderground.rb +31 -29
  48. data/lib/barometer/weather_services/yahoo.rb +36 -35
  49. data/lib/barometer/web_services/geocode.rb +5 -7
  50. data/lib/barometer/web_services/noaa_station_id.rb +53 -0
  51. data/lib/barometer/web_services/placemaker.rb +11 -13
  52. data/lib/barometer/web_services/timezone.rb +5 -7
  53. data/lib/barometer/web_services/weather_id.rb +4 -6
  54. data/lib/barometer/web_services/web_service.rb +4 -4
  55. data/spec/barometer_spec.rb +25 -27
  56. data/spec/cassettes/Barometer.json +1 -0
  57. data/spec/cassettes/Query.json +1 -0
  58. data/spec/cassettes/Query_Format_Coordinates.json +1 -0
  59. data/spec/cassettes/Query_Format_Geocode.json +1 -0
  60. data/spec/cassettes/Query_Format_WeatherID.json +1 -0
  61. data/spec/cassettes/Query_Format_WoeID.json +1 -0
  62. data/spec/cassettes/WeatherService.json +1 -0
  63. data/spec/cassettes/WeatherService_Noaa.json +1 -0
  64. data/spec/cassettes/WeatherService_WeatherBug.json +1 -0
  65. data/spec/cassettes/WeatherService_Wunderground.json +1 -0
  66. data/spec/cassettes/WeatherService_Yahoo.json +1 -0
  67. data/spec/cassettes/WebService_Geocode.json +1 -0
  68. data/spec/cassettes/WebService_NoaaStation.json +1 -0
  69. data/spec/data/distance_spec.rb +60 -60
  70. data/spec/data/geo_spec.rb +23 -23
  71. data/spec/data/local_datetime_spec.rb +44 -44
  72. data/spec/data/local_time_spec.rb +47 -47
  73. data/spec/data/location_spec.rb +16 -16
  74. data/spec/data/pressure_spec.rb +61 -61
  75. data/spec/data/speed_spec.rb +69 -69
  76. data/spec/data/sun_spec.rb +25 -25
  77. data/spec/data/temperature_spec.rb +68 -68
  78. data/spec/data/units_spec.rb +21 -21
  79. data/spec/data/zone_spec.rb +35 -35
  80. data/spec/formats/coordinates_spec.rb +27 -27
  81. data/spec/formats/format_spec.rb +17 -25
  82. data/spec/formats/geocode_spec.rb +23 -31
  83. data/spec/formats/icao_spec.rb +26 -32
  84. data/spec/formats/postalcode_spec.rb +22 -28
  85. data/spec/formats/short_zipcode_spec.rb +20 -26
  86. data/spec/formats/weather_id_spec.rb +57 -67
  87. data/spec/formats/woe_id_spec.rb +59 -59
  88. data/spec/formats/zipcode_spec.rb +39 -47
  89. data/spec/key_file_parser_spec.rb +28 -0
  90. data/spec/measurements/measurement_spec.rb +79 -133
  91. data/spec/measurements/result_array_spec.rb +23 -38
  92. data/spec/measurements/result_spec.rb +100 -128
  93. data/spec/query_spec.rb +83 -100
  94. data/spec/spec_helper.rb +24 -6
  95. data/spec/weather_services/noaa_spec.rb +179 -0
  96. data/spec/weather_services/services_spec.rb +28 -36
  97. data/spec/weather_services/weather_bug_spec.rb +57 -77
  98. data/spec/weather_services/wunderground_spec.rb +36 -65
  99. data/spec/weather_services/yahoo_spec.rb +38 -60
  100. data/spec/weather_spec.rb +79 -79
  101. data/spec/web_services/geocode_spec.rb +7 -11
  102. data/spec/web_services/noaa_station_id_spec.rb +33 -0
  103. data/spec/web_services/placemaker_spec.rb +7 -12
  104. data/spec/web_services/web_services_spec.rb +3 -9
  105. metadata +214 -163
  106. data/VERSION.yml +0 -5
  107. data/lib/barometer/weather_services/google.rb +0 -142
  108. data/lib/barometer/weather_services/weather_dot_com.rb +0 -279
  109. data/spec/fakeweb_helper.rb +0 -179
  110. data/spec/fixtures/formats/weather_id/90210.xml +0 -7
  111. data/spec/fixtures/formats/weather_id/from_USGA0028.xml +0 -3
  112. data/spec/fixtures/formats/weather_id/ksfo.xml +0 -1
  113. data/spec/fixtures/formats/weather_id/manhattan.xml +0 -7
  114. data/spec/fixtures/formats/weather_id/new_york.xml +0 -1
  115. data/spec/fixtures/formats/weather_id/the_hills.xml +0 -1
  116. data/spec/fixtures/geocode/40_73_v3.json +0 -497
  117. data/spec/fixtures/geocode/90210_v3.json +0 -63
  118. data/spec/fixtures/geocode/T5B4M9_v3.json +0 -68
  119. data/spec/fixtures/geocode/atlanta_v3.json +0 -58
  120. data/spec/fixtures/geocode/calgary_ab_v3.json +0 -58
  121. data/spec/fixtures/geocode/ksfo_v3.json +0 -73
  122. data/spec/fixtures/geocode/newyork_ny_v3.json +0 -58
  123. data/spec/fixtures/services/google/calgary_ab.xml +0 -1
  124. data/spec/fixtures/services/placemaker/T5B4M9.xml +0 -65
  125. data/spec/fixtures/services/placemaker/atlanta.xml +0 -65
  126. data/spec/fixtures/services/placemaker/coords.xml +0 -65
  127. data/spec/fixtures/services/placemaker/ksfo.xml +0 -65
  128. data/spec/fixtures/services/placemaker/new_york.xml +0 -65
  129. data/spec/fixtures/services/placemaker/the_hills.xml +0 -65
  130. data/spec/fixtures/services/placemaker/w615702.xml +0 -47
  131. data/spec/fixtures/services/weather_bug/90210_current.xml +0 -93
  132. data/spec/fixtures/services/weather_bug/90210_forecast.xml +0 -76
  133. data/spec/fixtures/services/weather_dot_com/90210.xml +0 -1
  134. data/spec/fixtures/services/wunderground/current_calgary_ab.xml +0 -9
  135. data/spec/fixtures/services/wunderground/forecast_calgary_ab.xml +0 -13
  136. data/spec/fixtures/services/yahoo/90210.xml +0 -3
  137. data/spec/weather_services/google_spec.rb +0 -181
  138. data/spec/weather_services/weather_dot_com_spec.rb +0 -224
@@ -5,21 +5,21 @@ module Barometer
5
5
  # uses Google Maps Geocoding service
6
6
  #
7
7
  class WebService::Geocode < WebService
8
-
8
+
9
9
  def self.fetch(query)
10
10
  raise ArgumentError unless _is_a_query?(query)
11
11
  puts "geocoding: #{query.q}" if Barometer::debug?
12
-
12
+
13
13
  query_params = {}
14
14
  query_params[:region] = query.country_code
15
15
  query_params[:sensor] = 'false'
16
-
16
+
17
17
  if query.format == :coordinates
18
18
  query_params[:latlng] = query.q
19
19
  else
20
20
  query_params[:address] = query.q
21
21
  end
22
-
22
+
23
23
  location = self.get(
24
24
  "http://maps.googleapis.com/maps/api/geocode/json",
25
25
  :query => query_params,
@@ -29,8 +29,6 @@ module Barometer
29
29
  location = location['results'].first if (location && location['results'])
30
30
  location ? (geo = Data::Geo.new(location)) : nil
31
31
  end
32
-
32
+
33
33
  end
34
34
  end
35
-
36
-
@@ -0,0 +1,53 @@
1
+ module Barometer
2
+ #
3
+ # Web Service: NOAA Station ID
4
+ #
5
+ # uses noaa to find the closest station id
6
+ #
7
+ class WebService::NoaaStation < WebService
8
+
9
+ # get the closest station id for given coordinates
10
+ #
11
+ def self.fetch(latitude, longitude)
12
+
13
+ begin
14
+ require 'nokogiri'
15
+ rescue LoadError
16
+ puts "\n****\nTo use this functionality you will need to install Nokogiri >= 1.3.3\n****\n\n"
17
+ return nil
18
+ end
19
+
20
+ puts "fetching NOAA station ID near #{latitude}, #{longitude}" if Barometer::debug?
21
+ return nil unless latitude && longitude
22
+ _fetch_via_noaa(latitude, longitude)
23
+ end
24
+
25
+ # http://forecast.weather.gov/MapClick.php?textField1=LATITUDE&textField2=LONGITUDE
26
+ def self._fetch_via_noaa(latitude, longitude)
27
+ response = self.get(
28
+ "http://forecast.weather.gov/MapClick.php?",
29
+ :query => { :textField1 => latitude, :textField2 => longitude },
30
+ :format => :html,
31
+ :timeout => Barometer.timeout
32
+ )
33
+
34
+ # parse the station id from the given page
35
+ station_id = nil
36
+
37
+ begin
38
+ doc = Nokogiri::HTML.parse(response.body)
39
+ if doc && links = doc.search(".current-conditions-extra a")
40
+ sid_link = links.detect{|link| link.attr("href").match(/sid=(.*)&/)}
41
+ begin
42
+ station_id = sid_link.attr("href").match(/sid=(.*?)&/)[1]
43
+ rescue
44
+ end
45
+ end
46
+ rescue
47
+ puts "[ERROR] finding NOAA station near #{latitude}, #{longitude}" if Barometer::debug?
48
+ end
49
+ station_id
50
+ end
51
+
52
+ end
53
+ end
@@ -8,23 +8,23 @@ module Barometer
8
8
  # accepts: city name, coords, postal code, NOT zip code, NOT icao
9
9
  #
10
10
  class WebService::Placemaker < WebService
11
-
11
+
12
12
  # get the woe_id for a given query
13
13
  #
14
14
  def self.fetch(query)
15
-
15
+
16
16
  begin
17
17
  require 'nokogiri'
18
18
  rescue LoadError
19
19
  puts "\n****\nTo use this functionality you will need to install Nokogiri >= 1.3.3\n****\n\n"
20
20
  return nil
21
21
  end
22
-
23
- puts "fetch woe_id: #{query.q}" if Barometer::debug?
22
+
24
23
  return nil unless query
25
24
  return nil unless _has_geocode_key?
26
25
  raise ArgumentError unless _is_a_query?(query)
27
-
26
+ puts "fetch woe_id: #{query.q}" if Barometer::debug?
27
+
28
28
  # BUG: httparty doesn't seem to post correctly
29
29
  # self.post(
30
30
  # 'http://wherein.yahooapis.com/v1/document',
@@ -35,7 +35,7 @@ module Barometer
35
35
  # :appid => Barometer.yahoo_placemaker_app_id
36
36
  # }, :format => :xml, :timeout => Barometer.timeout
37
37
  # )
38
-
38
+
39
39
  # TODO: include timeout
40
40
  # :timeout => Barometer.timeout
41
41
  #
@@ -48,7 +48,7 @@ module Barometer
48
48
  'appid' => Barometer.yahoo_placemaker_app_id
49
49
  }
50
50
  )
51
-
51
+
52
52
  Nokogiri::HTML.parse(res.body)
53
53
  end
54
54
 
@@ -63,17 +63,17 @@ module Barometer
63
63
  :query => { :w => query.q },
64
64
  :format => :xml,
65
65
  :timeout => Barometer.timeout
66
- )['rss']['channel']["yweather:location"]
66
+ )['rss']['channel']["location"]
67
67
  end
68
-
68
+
69
69
  # parses a Nokogori doc object
70
70
  #
71
71
  def self.parse_woe_id(doc)
72
72
  doc.search('woeid').first.content
73
73
  end
74
-
74
+
75
75
  private
76
-
76
+
77
77
  # convert coordinates to a microformat version of coordinates
78
78
  # so that Placemaker uses them correctly
79
79
  #
@@ -93,5 +93,3 @@ module Barometer
93
93
 
94
94
  end
95
95
  end
96
-
97
-
@@ -5,7 +5,7 @@ module Barometer
5
5
  # uses geonames.org to obtain the full timezone for given coordinates
6
6
  #
7
7
  class WebService::Timezone < WebService
8
-
8
+
9
9
  # get the full timezone for given coordinates
10
10
  #
11
11
  def self.fetch(latitude, longitude)
@@ -13,17 +13,17 @@ module Barometer
13
13
  return nil unless latitude && longitude
14
14
  _fetch_via_wunderground(latitude, longitude)
15
15
  end
16
-
16
+
17
17
  def self._fetch_via_geonames(latitude, longitude)
18
18
  response = self.get(
19
19
  "http://ws.geonames.org/timezone",
20
20
  :query => { :lat => latitude, :lng => longitude },
21
21
  :format => :xml,
22
22
  :timeout => Barometer.timeout
23
- )['geonames']['timezone']
23
+ )['geonames']['timezone']
24
24
  response ? Data::Zone.new(response['timezoneId']) : nil
25
25
  end
26
-
26
+
27
27
  def self._fetch_via_wunderground(latitude, longitude)
28
28
  response = self.get(
29
29
  "http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml",
@@ -33,8 +33,6 @@ module Barometer
33
33
  )['forecast']['simpleforecast']['forecastday'].first
34
34
  response ? Data::Zone.new(response['date']['tz_long']) : nil
35
35
  end
36
-
36
+
37
37
  end
38
38
  end
39
-
40
-
@@ -5,14 +5,14 @@ module Barometer
5
5
  # uses Weather.com search to obtain a weather id
6
6
  #
7
7
  class WebService::WeatherID < WebService
8
-
8
+
9
9
  # get the weather_id for a given query
10
10
  #
11
11
  def self.fetch(query)
12
12
  puts "fetch weather_id: #{query.q}" if Barometer::debug?
13
13
  return nil unless query
14
14
  raise ArgumentError unless _is_a_query?(query)
15
-
15
+
16
16
  self.get(
17
17
  "http://xoap.weather.com/search/search",
18
18
  :query => { :where => _adjust_query(query.q) }, :format => :plain,
@@ -31,9 +31,9 @@ module Barometer
31
31
  :query => { :p => query.q },
32
32
  :format => :xml,
33
33
  :timeout => Barometer.timeout
34
- )['rss']['channel']["yweather:location"]
34
+ )['rss']['channel']["location"]
35
35
  end
36
-
36
+
37
37
  # filter out words that weather.com has trouble geo-locating
38
38
  # mostly these are icao related
39
39
  #
@@ -48,5 +48,3 @@ module Barometer
48
48
 
49
49
  end
50
50
  end
51
-
52
-
@@ -7,23 +7,23 @@ module Barometer
7
7
  #
8
8
  # This is a base class for creating web service api-consuming
9
9
  # drivers. Each driver inherits from this class.
10
- #
10
+ #
11
11
  # Basically, all a service is required to do is take a query
12
12
  # (ie "Paris") and return it corresponding data class
13
13
  #
14
14
  class WebService
15
15
  # all web_service drivers will use the HTTParty gem
16
16
  include HTTParty
17
-
17
+
18
18
  # STUB: define this method to actually retireve the data
19
19
  def self.fetch(query=nil); raise NotImplementedError; end
20
20
 
21
21
  private
22
-
22
+
23
23
  def self._is_a_query?(object=nil)
24
24
  return false unless object
25
25
  object.is_a?(Barometer::Query)
26
26
  end
27
27
 
28
28
  end
29
- end
29
+ end
@@ -1,14 +1,14 @@
1
1
  require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
2
 
3
- describe "Barometer" do
4
-
3
+ describe Barometer, :vcr => {
4
+ :cassette_name => "Barometer"
5
+ } do
5
6
  before(:each) do
6
7
  @config_hash = { 1 => [:wunderground] }
7
8
  @yahoo_key = YAHOO_KEY
8
9
  end
9
-
10
+
10
11
  describe "and class methods" do
11
-
12
12
  it "defines selection" do
13
13
  Barometer::Base.respond_to?("config").should be_true
14
14
  Barometer::Base.config.should == { 1 => [:wunderground] }
@@ -16,38 +16,42 @@ describe "Barometer" do
16
16
  Barometer::Base.config.should == { 1 => [:yahoo] }
17
17
  Barometer.config = @config_hash
18
18
  end
19
-
19
+
20
20
  it "returns a Weather Service driver" do
21
21
  Barometer.source(:wunderground).should == Barometer::WeatherService::Wunderground
22
22
  end
23
-
23
+
24
24
  it "deprecates the Google geocoding API key reader" do
25
25
  Barometer.should_receive(:warn)
26
26
  Barometer.respond_to?("google_geocode_key").should be_true
27
27
  Barometer.google_geocode_key
28
28
  end
29
-
29
+
30
30
  it "deprecates the Google geocoding API key writer" do
31
31
  Barometer.should_receive(:warn)
32
32
  Barometer.respond_to?("google_geocode_key=").should be_true
33
33
  Barometer.google_geocode_key= 'KEY'
34
34
  end
35
-
35
+
36
36
  it "sets the Placemaker Yahoo! app ID" do
37
+ cache_key = Barometer.yahoo_placemaker_app_id
38
+
37
39
  Barometer.respond_to?("yahoo_placemaker_app_id").should be_true
38
40
  Barometer.yahoo_placemaker_app_id = nil
39
41
  Barometer.yahoo_placemaker_app_id.should be_nil
40
42
  Barometer.yahoo_placemaker_app_id = @yahoo_key
41
43
  Barometer.yahoo_placemaker_app_id.should == @yahoo_key
44
+
45
+ Barometer.yahoo_placemaker_app_id = cache_key
42
46
  end
43
-
47
+
44
48
  it "forces the geocoding of queries" do
45
49
  Barometer.respond_to?("force_geocode").should be_true
46
50
  Barometer.force_geocode.should be_false
47
51
  Barometer.force_geocode = true
48
52
  Barometer.force_geocode.should be_true
49
53
  end
50
-
54
+
51
55
  it "forces the geocoding of queries" do
52
56
  Barometer.respond_to?("force_geocode!").should be_true
53
57
  Barometer.force_geocode = false
@@ -55,44 +59,42 @@ describe "Barometer" do
55
59
  Barometer.force_geocode!
56
60
  Barometer.force_geocode.should be_true
57
61
  end
58
-
62
+
59
63
  it "set the global service timeout" do
60
64
  Barometer.respond_to?("timeout").should be_true
61
65
  Barometer.timeout.should == 15
62
66
  Barometer.timeout = 5
63
67
  Barometer.timeout.should == 5
64
68
  end
65
-
66
69
  end
67
70
 
68
71
  describe "when initialized" do
69
-
70
72
  before(:each) do
71
73
  @barometer_direct = Barometer.new
72
74
  @barometer = Barometer::Base.new
73
75
  end
74
-
76
+
75
77
  it "responds to query" do
76
78
  @barometer_direct.respond_to?("query").should be_true
77
79
  @barometer.respond_to?("query").should be_true
78
80
  end
79
-
81
+
80
82
  it "sets the query" do
81
83
  query = "query"
82
84
  barometer = Barometer.new(query)
83
85
  barometer.query.is_a?(Barometer::Query)
84
86
  barometer.query.q.should == query
85
-
87
+
86
88
  barometer = Barometer::Base.new(query)
87
89
  barometer.query.is_a?(Barometer::Query)
88
90
  barometer.query.q.should == query
89
91
  end
90
-
92
+
91
93
  it "responds to weather" do
92
94
  @barometer.weather.is_a?(Barometer::Weather).should be_true
93
95
  @barometer_direct.weather.is_a?(Barometer::Weather).should be_true
94
96
  end
95
-
97
+
96
98
  it "responds to success" do
97
99
  @barometer.success.should be_false
98
100
  @barometer_direct.success.should be_false
@@ -100,36 +102,32 @@ describe "Barometer" do
100
102
  @barometer_direct.success = true
101
103
  @barometer_direct.success?.should be_true
102
104
  end
103
-
104
105
  end
105
-
106
+
106
107
  describe "when measuring" do
107
-
108
108
  before(:each) do
109
109
  query_term = "Calgary,AB"
110
110
  @barometer = Barometer::Base.new(query_term)
111
111
  @time = Time.now
112
112
  end
113
-
113
+
114
114
  it "responds to measure" do
115
115
  @barometer.respond_to?("measure").should be_true
116
116
  end
117
-
117
+
118
118
  it "returns a Barometer::Weather object" do
119
119
  @barometer.measure.is_a?(Barometer::Weather).should be_true
120
120
  end
121
-
121
+
122
122
  it "raises OutOfSources if no services successful" do
123
123
  Barometer::Base.config = { 1 => [] }
124
124
  lambda { @barometer.measure }.should raise_error(Barometer::OutOfSources)
125
125
  end
126
-
126
+
127
127
  it "sets the weight" do
128
128
  Barometer::Base.config = { 1 => {:wunderground => {:weight => 2}} }
129
129
  @barometer.measure
130
130
  @barometer.weather.measurements.first.weight.should == 2
131
131
  end
132
-
133
132
  end
134
-
135
133
  end
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=Calgary,AB&region=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:49 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:49 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:49 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Calgary\",\n \"short_name\" : \"Calgary\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Division No. 6\",\n \"short_name\" : \"Division No. 6\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Alberta\",\n \"short_name\" : \"AB\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"Canada\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Calgary, AB, Canada\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 51.183830,\n \"lng\" : -113.9056380\n },\n \"southwest\" : {\n \"lat\" : 50.84240399999999,\n \"lng\" : -114.271360\n }\n },\n \"location\" : {\n \"lat\" : 51.04532460,\n \"lng\" : -114.05810120\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 51.183830,\n \"lng\" : -113.9056380\n },\n \"southwest\" : {\n \"lat\" : 50.84240399999999,\n \"lng\" : -114.271360\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/WXCurrentObXML/index.xml?query=51.0453246,-114.0581012","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:50 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:42:50 GMT"],"X-Creationtime":["0.036"]},"body":{"string":"\t<current_observation>\n\t\t<credit>Weather Underground NOAA Weather Station</credit>\n\t\t<credit_URL>http://wunderground.com/</credit_URL>\n<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t\t<image>\n\t\t<url>http://icons-ak.wxug.com/graphics/wu2/logo_130x80.png</url>\n\t\t<title>Weather Underground</title>\n\t\t<link>http://wunderground.com/</link>\n\t\t</image>\n <display_location>\n <full>Calgary, Alberta</full>\n <city>Calgary</city>\n <state>AB</state>\n <state_name>Alberta</state_name>\n <country>CA</country>\n <country_iso3166>CA</country_iso3166>\n <zip>00000</zip>\n <latitude>51.045325</latitude>\n <longitude>-114.058101</longitude>\n <elevation>1047.00000000 ft</elevation>\n </display_location>\n\t\t<observation_location>\n\t\t<full>Calgary, </full>\n\t\t<city>Calgary</city>\n\t\t<state></state>\n\t\t<country>CA</country>\n\t\t<country_iso3166>CA</country_iso3166>\n\t\t<latitude>51.11999893</latitude>\n\t\t<longitude>-114.01999664</longitude>\n\t\t<elevation>3556 ft</elevation>\n\t\t</observation_location>\n\t\t<station_id>CYYC</station_id>\n\t\t<observation_time>Last Updated on February 9, 11:00 AM MST</observation_time>\n\t\t<observation_time_rfc822>Sat, 09 Feb 2013 18:00:00 GMT</observation_time_rfc822>\n\t\t<observation_epoch>1360432800</observation_epoch>\n\t\t<local_time>February 9, 11:42 AM MST</local_time>\n\t\t<local_time_rfc822>Sat, 09 Feb 2013 18:42:50 GMT</local_time_rfc822>\n\t\t<local_epoch>1360435370</local_epoch>\n\t\t<weather>Mostly Cloudy</weather>\n\t\t<temperature_string>36 F (2 C)</temperature_string>\n\t\t<temp_f>36</temp_f>\n\t\t<temp_c>2</temp_c>\n\t\t<relative_humidity>70%</relative_humidity>\n\t\t<wind_string>From the NW at 18 MPH Gusting to 26 MPH</wind_string>\n\t\t<wind_dir>NW</wind_dir>\n\t\t<wind_degrees>310</wind_degrees>\n\t\t<wind_mph>18</wind_mph>\n\t\t<wind_gust_mph>26</wind_gust_mph>\n\t\t<pressure_string>29.98 in (1015 mb)</pressure_string>\r\n\t\t<pressure_mb>1015</pressure_mb>\r\n\t\t<pressure_in>29.98</pressure_in>\r\n\t\t<dewpoint_string>27 F (-3 C)</dewpoint_string>\r\n\t\t<dewpoint_f>27</dewpoint_f>\r\n\t\t<dewpoint_c>-3</dewpoint_c>\r\n\t\t\r\n\t\t<heat_index_string>NA</heat_index_string>\r\n\t\t<heat_index_f>NA</heat_index_f>\r\n\t\t<heat_index_c>NA</heat_index_c>\r\n\t\t\r\n\t\t\r\n\t\t<windchill_string>25 F (-4 C)</windchill_string>\r\n\t\t<windchill_f>25</windchill_f>\r\n\t\t<windchill_c>-4</windchill_c>\r\n\t\t\r\n\t\t<visibility_mi>20.0</visibility_mi>\r\n\t\t<visibility_km>32.2</visibility_km>\r\n\t\t<icons>\r\n\t\t\t<icon_set name=\"Default\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Smiley\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Generic\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Old School\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Cartoon\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Mobile\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Simple\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Contemporary\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Helen\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Incredible\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t</icons>\r\n\t\t<icon_url_base>http://icons-ak.wxug.com/graphics/conds/</icon_url_base>\r\n\t\t<icon_url_name>.GIF</icon_url_name>\r\n\t\t<icon>mostlycloudy</icon>\r\n\t\t<forecast_url>http://www.wunderground.com/global/stations/71877.html</forecast_url>\r\n\t\t<history_url>http://www.wunderground.com/history/airport/CYYC/2013/2/9/DailyHistory.html</history_url>\r\n\t\t<ob_url>http://www.wunderground.com/cgi-bin/findweather/getForecast?query=51.11999893,-114.01999664</ob_url>\r\n\t</current_observation>\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml?query=51.0453246,-114.0581012","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:51 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:42:50 GMT"],"X-Creationtime":["0.078"]},"body":{"string":"<?xml version=\"1.0\" ?>\n<forecast>\n\t\t<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t<txt_forecast>\n <date>5:00 PM MST</date>\n <number></number>\n\t\t<forecastday>\n\t\t<period>0</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 8, 2013</title>\n\t\t<fcttext>Clear. High 6&amp;deg;C (42&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>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 9, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 4&amp;deg;C (39&amp;deg;F). Winds 10 kph WNW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>2</period>\n\t\t<icon>chancesnow</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 10, 2013</title>\n\t\t<fcttext>Chance of Snow. High 3&amp;deg;C (37&amp;deg;F). Winds 18 kph NW</fcttext>\n\t\t<pop>40</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>3</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 11, 2013</title>\n\t\t<fcttext>Clear. High 3&amp;deg;C (37&amp;deg;F). Winds 7 kph SSE</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>4</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 12, 2013</title>\n\t\t<fcttext>Clear. High 7&amp;deg;C (44&amp;deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>5</period>\n\t\t<icon>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 13, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 7&amp;deg;C (44&amp;deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t</txt_forecast>\n<simpleforecast>\n <forecastday>\n <period>1</period>\n <date>\n <epoch>1360476000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 09, 2013</pretty>\n <day>9</day>\n <month>2</month>\n <year>2013</year>\n <yday>39</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Saturday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>18</fahrenheit>\r\n <celsius>-8</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>60</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>2</period>\r\n <date>\n <epoch>1360562400</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 10, 2013</pretty>\n <day>10</day>\n <month>2</month>\n <year>2013</year>\n <yday>40</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Sunday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>36</fahrenheit>\r\n <celsius>2</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>19</fahrenheit>\r\n <celsius>-7</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>3</period>\r\n <date>\n <epoch>1360648800</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 11, 2013</pretty>\n <day>11</day>\n <month>2</month>\n <year>2013</year>\n <yday>41</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Monday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>43</fahrenheit>\r\n <celsius>6</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>4</period>\r\n <date>\n <epoch>1360735200</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 12, 2013</pretty>\n <day>12</day>\n <month>2</month>\n <year>2013</year>\n <yday>42</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Tuesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>45</fahrenheit>\r\n <celsius>7</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>5</period>\r\n <date>\n <epoch>1360821600</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 13, 2013</pretty>\n <day>13</day>\n <month>2</month>\n <year>2013</year>\n <yday>43</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Wednesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>21</fahrenheit>\r\n <celsius>-6</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>40</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>6</period>\r\n <date>\n <epoch>1360908000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 14, 2013</pretty>\n <day>14</day>\n <month>2</month>\n <year>2013</year>\n <yday>44</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Thursday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>32</fahrenheit>\r\n <celsius>0</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>16</fahrenheit>\r\n <celsius>-9</celsius>\r\n </low>\r\n <conditions>Clear</conditions>\r\n <icon>clear</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/clear.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</simpleforecast>\r\n<moon_phase>\r\n <percentIlluminated>0</percentIlluminated>\r\n <ageOfMoon>29</ageOfMoon>\r\n\t\t<current_time>\r\n\t\t\t<hour>11</hour>\r\n\t\t\t<minute>42</minute>\r\n\t\t</current_time>\r\n <sunset>\r\n <hour>17</hour>\r\n <minute>42</minute>\r\n </sunset>\r\n <sunrise>\r\n <hour>7</hour>\r\n <minute>59</minute>\r\n </sunrise>\r\n</moon_phase>\r\n</forecast>\r\n\r\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210&region=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:58 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:58 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:58 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=Beverly%20Hills,%20CA,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:58 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2269562700"],"Content-Length":["371"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:55 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x17"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USCA0090\" type=\"1\">Beverly Hills, CA</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=T5B%204M9&region=CA&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:58 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:58 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:58 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"T5B 4M9\",\n \"short_name\" : \"T5B 4M9\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Montrose\",\n \"short_name\" : \"Montrose\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Edmonton\",\n \"short_name\" : \"Edmonton\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Division No. 11\",\n \"short_name\" : \"Division No. 11\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Alberta\",\n \"short_name\" : \"AB\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"Canada\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Edmonton, AB T5B 4M9, Canada\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 53.57536860,\n \"lng\" : -113.45311190\n },\n \"southwest\" : {\n \"lat\" : 53.57041430,\n \"lng\" : -113.45893980\n }\n },\n \"location\" : {\n \"lat\" : 53.57217190,\n \"lng\" : -113.45518350\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 53.57536860,\n \"lng\" : -113.45311190\n },\n \"southwest\" : {\n \"lat\" : 53.57041430,\n \"lng\" : -113.45893980\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO&region=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:58 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:58 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=San%20Francisco,%20CA,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2992162804"],"Content-Length":["432"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:56 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x18"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USCA0987\" type=\"1\">San Francisco, CA</loc>\r\n <loc id=\"USCA1085\" type=\"1\">South San Francisco, CA</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20NY&region=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:59 GMT"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:59 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=New%20York,%20NY","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"Age":["246"],"Cache-Control":["max-age=300"],"X-Varnish":["2269563897 2269103323"],"Content-Length":["848"],"Server":["Apache"],"X-Cache-Hits":["60"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:56 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x21"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\r\n <loc id=\"USNY0011\" type=\"1\">Albany, NY</loc>\r\n <loc id=\"USNY0181\" type=\"1\">Buffalo, NY</loc>\r\n <loc id=\"USNY1232\" type=\"1\">Rochester, NY</loc>\r\n <loc id=\"USNY1434\" type=\"1\">Syracuse, NY</loc>\r\n <loc id=\"USNY1010\" type=\"1\">Niagara Falls, NY</loc>\r\n <loc id=\"USNY1630\" type=\"1\">York, NY</loc>\r\n <loc id=\"USNY0997\" type=\"1\">New York Mills, NY</loc>\r\n <loc id=\"USNY0998\" type=\"1\">New York/Central Park, NY</loc>\r\n <loc id=\"USNY0999\" type=\"1\">New York/JFK Intl Arpt, NY</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=40.756054,-73.986951&region=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:59 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:59 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"601-699\",\n \"short_name\" : \"601-699\",\n \"types\" : [ \"street_number\" ]\n },\n {\n \"long_name\" : \"7th Avenue\",\n \"short_name\" : \"7th Ave\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"601-699 7th Avenue, New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.75669690,\n \"lng\" : -73.98648360\n },\n \"southwest\" : {\n \"lat\" : 40.7560340,\n \"lng\" : -73.98694510\n }\n },\n \"location\" : {\n \"lat\" : 40.75604130000001,\n \"lng\" : -73.98691920\n },\n \"location_type\" : \"RANGE_INTERPOLATED\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75771443029150,\n \"lng\" : -73.98536536970850\n },\n \"southwest\" : {\n \"lat\" : 40.75501646970850,\n \"lng\" : -73.98806333029151\n }\n }\n },\n \"types\" : [ \"street_address\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - 7 Av\",\n \"short_name\" : \"W 42 St - 7 Av\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - 7 Av, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7563130,\n \"lng\" : -73.98739599999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75766198029149,\n \"lng\" : -73.98604701970848\n },\n \"southwest\" : {\n \"lat\" : 40.75496401970850,\n \"lng\" : -73.98874498029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Times Sq - 42 St\",\n \"short_name\" : \"Times Sq - 42 St\",\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"Times Sq - 42 St, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7559830,\n \"lng\" : -73.98622899999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75733198029150,\n \"lng\" : -73.98488001970848\n },\n \"southwest\" : {\n \"lat\" : 40.75463401970850,\n \"lng\" : -73.98757798029149\n }\n }\n },\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - Broadway\",\n \"short_name\" : \"W 42 St - Broadway\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - Broadway, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7556760,\n \"lng\" : -73.9863130\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75702498029150,\n \"lng\" : -73.98496401970849\n },\n \"southwest\" : {\n \"lat\" : 40.75432701970851,\n \"lng\" : -73.98766198029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Theater District - Times Square, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n },\n \"location\" : {\n \"lat\" : 40.7590110,\n \"lng\" : -73.98447220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.72362490,\n \"lng\" : -74.0047860\n }\n },\n \"location\" : {\n \"lat\" : 40.76026190,\n \"lng\" : -73.99328720\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.7534810,\n \"lng\" : -74.0046830\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Midtown\",\n \"short_name\" : \"Midtown\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Midtown, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n },\n \"location\" : {\n \"lat\" : 40.75099150,\n \"lng\" : -73.98887970\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n },\n \"location\" : {\n \"lat\" : 40.78306030,\n \"lng\" : -73.97124880\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Manhattan, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.8822140,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67954790,\n \"lng\" : -74.0472850\n }\n },\n \"location\" : {\n \"lat\" : 40.79027780,\n \"lng\" : -73.95972220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.8200450,\n \"lng\" : -73.90331300000001\n },\n \"southwest\" : {\n \"lat\" : 40.6980780,\n \"lng\" : -74.03514899999999\n }\n }\n },\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 45.0158650,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n },\n \"location\" : {\n \"lat\" : 43.29942850,\n \"lng\" : -74.21793260000001\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 45.01261130,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n }\n },\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"United States\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 71.3898880,\n \"lng\" : -66.94976079999999\n },\n \"southwest\" : {\n \"lat\" : 18.91106420,\n \"lng\" : 172.45469660\n }\n },\n \"location\" : {\n \"lat\" : 37.090240,\n \"lng\" : -95.7128910\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.380,\n \"lng\" : -66.940\n },\n \"southwest\" : {\n \"lat\" : 25.820,\n \"lng\" : -124.390\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=Manhattan,%20NY,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:59 GMT","response":{"http_version":null,"headers":{"Age":["4"],"Cache-Control":["max-age=300"],"X-Varnish":["2269564430 2269556268"],"Content-Length":["366"],"Server":["Apache"],"X-Cache-Hits":["1"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:56 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x27"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210&region=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:51 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:51 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:51 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://weather.yahooapis.com/forecastrss?p=USGA0028","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:52 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["public"],"Transfer-Encoding":["chunked"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Server":["YTS/1.19.11"],"Content-Type":["text/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Vary":["Accept-Encoding"],"Expires":["Sat, 09 Feb 2013 19:12:52 GMT"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Atlanta, GA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<description>Yahoo! Weather for Atlanta, GA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 12:50 pm EST</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Atlanta\" region=\"GA\" country=\"US\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"56\" direction=\"90\" speed=\"6\" />\n<yweather:atmosphere humidity=\"33\" visibility=\"10\" pressure=\"30.27\" rising=\"2\" />\n<yweather:astronomy sunrise=\"7:26 am\" sunset=\"6:15 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Atlanta, GA at 12:50 pm EST</title>\n<geo:lat>33.75</geo:lat>\n<geo:long>-84.39</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<pubDate>Sat, 09 Feb 2013 12:50 pm EST</pubDate>\n<yweather:condition text=\"Partly Cloudy\" code=\"30\" temp=\"56\" date=\"Sat, 09 Feb 2013 12:50 pm EST\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/30.gif\"/><br />\n<b>Current Conditions:</b><br />\nPartly Cloudy, 56 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Sunny. High: 60 Low: 40<br />\nSun - PM Showers. High: 60 Low: 55<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"40\" high=\"60\" text=\"Sunny\" code=\"32\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"55\" high=\"60\" text=\"PM Showers\" code=\"39\" />\n<guid isPermaLink=\"false\">USGA0028_2013_02_10_7_00_EST</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api22.weather.bf1.yahoo.com Sat Feb 9 18:42:52 PST 2013 -->\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=Atlanta,%20GA,%20US&region=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:52 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:52 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Atlanta\",\n \"short_name\" : \"Atlanta\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Fulton\",\n \"short_name\" : \"Fulton\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Georgia\",\n \"short_name\" : \"GA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Atlanta, GA, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 33.88761790,\n \"lng\" : -84.2893890\n },\n \"southwest\" : {\n \"lat\" : 33.64780790,\n \"lng\" : -84.55181890\n }\n },\n \"location\" : {\n \"lat\" : 33.74899540,\n \"lng\" : -84.38798240\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 33.88761790,\n \"lng\" : -84.2893890\n },\n \"southwest\" : {\n \"lat\" : 33.64780790,\n \"lng\" : -84.55181890\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=New%20York,%20NY&region=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:52 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=T5B%204M9&region=CA&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"T5B 4M9\",\n \"short_name\" : \"T5B 4M9\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Montrose\",\n \"short_name\" : \"Montrose\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Edmonton\",\n \"short_name\" : \"Edmonton\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Division No. 11\",\n \"short_name\" : \"Division No. 11\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Alberta\",\n \"short_name\" : \"AB\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"Canada\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Edmonton, AB T5B 4M9, Canada\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 53.57536860,\n \"lng\" : -113.45311190\n },\n \"southwest\" : {\n \"lat\" : 53.57041430,\n \"lng\" : -113.45893980\n }\n },\n \"location\" : {\n \"lat\" : 53.57217190,\n \"lng\" : -113.45518350\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 53.57536860,\n \"lng\" : -113.45311190\n },\n \"southwest\" : {\n \"lat\" : 53.57041430,\n \"lng\" : -113.45893980\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO&region=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=40.756054,-73.986951&region=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"601-699\",\n \"short_name\" : \"601-699\",\n \"types\" : [ \"street_number\" ]\n },\n {\n \"long_name\" : \"7th Avenue\",\n \"short_name\" : \"7th Ave\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"601-699 7th Avenue, New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.75669690,\n \"lng\" : -73.98648360\n },\n \"southwest\" : {\n \"lat\" : 40.7560340,\n \"lng\" : -73.98694510\n }\n },\n \"location\" : {\n \"lat\" : 40.75604130000001,\n \"lng\" : -73.98691920\n },\n \"location_type\" : \"RANGE_INTERPOLATED\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75771443029150,\n \"lng\" : -73.98536536970850\n },\n \"southwest\" : {\n \"lat\" : 40.75501646970850,\n \"lng\" : -73.98806333029151\n }\n }\n },\n \"types\" : [ \"street_address\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - 7 Av\",\n \"short_name\" : \"W 42 St - 7 Av\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - 7 Av, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7563130,\n \"lng\" : -73.98739599999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75766198029149,\n \"lng\" : -73.98604701970848\n },\n \"southwest\" : {\n \"lat\" : 40.75496401970850,\n \"lng\" : -73.98874498029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Times Sq - 42 St\",\n \"short_name\" : \"Times Sq - 42 St\",\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"Times Sq - 42 St, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7559830,\n \"lng\" : -73.98622899999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75733198029150,\n \"lng\" : -73.98488001970848\n },\n \"southwest\" : {\n \"lat\" : 40.75463401970850,\n \"lng\" : -73.98757798029149\n }\n }\n },\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - Broadway\",\n \"short_name\" : \"W 42 St - Broadway\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - Broadway, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7556760,\n \"lng\" : -73.9863130\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75702498029150,\n \"lng\" : -73.98496401970849\n },\n \"southwest\" : {\n \"lat\" : 40.75432701970851,\n \"lng\" : -73.98766198029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Theater District - Times Square, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n },\n \"location\" : {\n \"lat\" : 40.7590110,\n \"lng\" : -73.98447220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.72362490,\n \"lng\" : -74.0047860\n }\n },\n \"location\" : {\n \"lat\" : 40.76026190,\n \"lng\" : -73.99328720\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.7534810,\n \"lng\" : -74.0046830\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Midtown\",\n \"short_name\" : \"Midtown\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Midtown, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n },\n \"location\" : {\n \"lat\" : 40.75099150,\n \"lng\" : -73.98887970\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n },\n \"location\" : {\n \"lat\" : 40.78306030,\n \"lng\" : -73.97124880\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Manhattan, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.8822140,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67954790,\n \"lng\" : -74.0472850\n }\n },\n \"location\" : {\n \"lat\" : 40.79027780,\n \"lng\" : -73.95972220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.8200450,\n \"lng\" : -73.90331300000001\n },\n \"southwest\" : {\n \"lat\" : 40.6980780,\n \"lng\" : -74.03514899999999\n }\n }\n },\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 45.0158650,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n },\n \"location\" : {\n \"lat\" : 43.29942850,\n \"lng\" : -74.21793260000001\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 45.01261130,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n }\n },\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"United States\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 71.3898880,\n \"lng\" : -66.94976079999999\n },\n \"southwest\" : {\n \"lat\" : 18.91106420,\n \"lng\" : 172.45469660\n }\n },\n \"location\" : {\n \"lat\" : 37.090240,\n \"lng\" : -95.7128910\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.380,\n \"lng\" : -66.940\n },\n \"southwest\" : {\n \"lat\" : 25.820,\n \"lng\" : -124.390\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210&region=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://weather.yahooapis.com/forecastrss?p=USGA0028","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["public"],"Transfer-Encoding":["chunked"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Server":["YTS/1.19.11"],"Content-Type":["text/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Vary":["Accept-Encoding"],"Expires":["Sat, 09 Feb 2013 19:12:53 GMT"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Atlanta, GA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<description>Yahoo! Weather for Atlanta, GA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 12:50 pm EST</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Atlanta\" region=\"GA\" country=\"US\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"56\" direction=\"90\" speed=\"6\" />\n<yweather:atmosphere humidity=\"33\" visibility=\"10\" pressure=\"30.27\" rising=\"2\" />\n<yweather:astronomy sunrise=\"7:26 am\" sunset=\"6:15 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Atlanta, GA at 12:50 pm EST</title>\n<geo:lat>33.75</geo:lat>\n<geo:long>-84.39</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<pubDate>Sat, 09 Feb 2013 12:50 pm EST</pubDate>\n<yweather:condition text=\"Partly Cloudy\" code=\"30\" temp=\"56\" date=\"Sat, 09 Feb 2013 12:50 pm EST\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/30.gif\"/><br />\n<b>Current Conditions:</b><br />\nPartly Cloudy, 56 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Sunny. High: 60 Low: 40<br />\nSun - PM Showers. High: 60 Low: 55<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"40\" high=\"60\" text=\"Sunny\" code=\"32\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"55\" high=\"60\" text=\"PM Showers\" code=\"39\" />\n<guid isPermaLink=\"false\">USGA0028_2013_02_10_7_00_EST</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api30.weather.bf1.yahoo.com Sat Feb 9 18:42:53 PST 2013 -->\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=40.756054,-73.986951&region=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:53 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"601-699\",\n \"short_name\" : \"601-699\",\n \"types\" : [ \"street_number\" ]\n },\n {\n \"long_name\" : \"7th Avenue\",\n \"short_name\" : \"7th Ave\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"601-699 7th Avenue, New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.75669690,\n \"lng\" : -73.98648360\n },\n \"southwest\" : {\n \"lat\" : 40.7560340,\n \"lng\" : -73.98694510\n }\n },\n \"location\" : {\n \"lat\" : 40.75604130000001,\n \"lng\" : -73.98691920\n },\n \"location_type\" : \"RANGE_INTERPOLATED\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75771443029150,\n \"lng\" : -73.98536536970850\n },\n \"southwest\" : {\n \"lat\" : 40.75501646970850,\n \"lng\" : -73.98806333029151\n }\n }\n },\n \"types\" : [ \"street_address\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - 7 Av\",\n \"short_name\" : \"W 42 St - 7 Av\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - 7 Av, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7563130,\n \"lng\" : -73.98739599999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75766198029149,\n \"lng\" : -73.98604701970848\n },\n \"southwest\" : {\n \"lat\" : 40.75496401970850,\n \"lng\" : -73.98874498029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Times Sq - 42 St\",\n \"short_name\" : \"Times Sq - 42 St\",\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"Times Sq - 42 St, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7559830,\n \"lng\" : -73.98622899999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75733198029150,\n \"lng\" : -73.98488001970848\n },\n \"southwest\" : {\n \"lat\" : 40.75463401970850,\n \"lng\" : -73.98757798029149\n }\n }\n },\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - Broadway\",\n \"short_name\" : \"W 42 St - Broadway\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - Broadway, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7556760,\n \"lng\" : -73.9863130\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75702498029150,\n \"lng\" : -73.98496401970849\n },\n \"southwest\" : {\n \"lat\" : 40.75432701970851,\n \"lng\" : -73.98766198029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Theater District - Times Square, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n },\n \"location\" : {\n \"lat\" : 40.7590110,\n \"lng\" : -73.98447220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.72362490,\n \"lng\" : -74.0047860\n }\n },\n \"location\" : {\n \"lat\" : 40.76026190,\n \"lng\" : -73.99328720\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.7534810,\n \"lng\" : -74.0046830\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Midtown\",\n \"short_name\" : \"Midtown\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Midtown, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n },\n \"location\" : {\n \"lat\" : 40.75099150,\n \"lng\" : -73.98887970\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n },\n \"location\" : {\n \"lat\" : 40.78306030,\n \"lng\" : -73.97124880\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Manhattan, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.8822140,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67954790,\n \"lng\" : -74.0472850\n }\n },\n \"location\" : {\n \"lat\" : 40.79027780,\n \"lng\" : -73.95972220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.8200450,\n \"lng\" : -73.90331300000001\n },\n \"southwest\" : {\n \"lat\" : 40.6980780,\n \"lng\" : -74.03514899999999\n }\n }\n },\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 45.0158650,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n },\n \"location\" : {\n \"lat\" : 43.29942850,\n \"lng\" : -74.21793260000001\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 45.01261130,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n }\n },\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"United States\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 71.3898880,\n \"lng\" : -66.94976079999999\n },\n \"southwest\" : {\n \"lat\" : 18.91106420,\n \"lng\" : 172.45469660\n }\n },\n \"location\" : {\n \"lat\" : 37.090240,\n \"lng\" : -95.7128910\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.380,\n \"lng\" : -66.940\n },\n \"southwest\" : {\n \"lat\" : 25.820,\n \"lng\" : -124.390\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO&region=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:54 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:53 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"uri":"http://weather.yahooapis.com/forecastrss?p=USGA0028","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:54 GMT","response":{"http_version":null,"headers":{"Age":["1"],"Cache-Control":["public"],"Content-Length":["2312"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Server":["YTS/1.19.11"],"Content-Type":["text/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:53 GMT"],"Vary":["Accept-Encoding"],"Expires":["Sat, 09 Feb 2013 19:12:53 GMT"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Atlanta, GA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<description>Yahoo! Weather for Atlanta, GA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 12:50 pm EST</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Atlanta\" region=\"GA\" country=\"US\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"56\" direction=\"90\" speed=\"6\" />\n<yweather:atmosphere humidity=\"33\" visibility=\"10\" pressure=\"30.27\" rising=\"2\" />\n<yweather:astronomy sunrise=\"7:26 am\" sunset=\"6:15 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Atlanta, GA at 12:50 pm EST</title>\n<geo:lat>33.75</geo:lat>\n<geo:long>-84.39</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<pubDate>Sat, 09 Feb 2013 12:50 pm EST</pubDate>\n<yweather:condition text=\"Partly Cloudy\" code=\"30\" temp=\"56\" date=\"Sat, 09 Feb 2013 12:50 pm EST\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/30.gif\"/><br />\n<b>Current Conditions:</b><br />\nPartly Cloudy, 56 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Sunny. High: 60 Low: 40<br />\nSun - PM Showers. High: 60 Low: 55<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"40\" high=\"60\" text=\"Sunny\" code=\"32\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"55\" high=\"60\" text=\"PM Showers\" code=\"39\" />\n<guid isPermaLink=\"false\">USGA0028_2013_02_10_7_00_EST</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api30.weather.bf1.yahoo.com Sat Feb 9 18:42:53 PST 2013 -->\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210&region=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:54 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:54 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:54 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=Beverly%20Hills,%20CA,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2992155056"],"Content-Length":["371"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:51 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x02"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USCA0090\" type=\"1\">Beverly Hills, CA</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?latlng=40.756054,-73.986951&region=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:55 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:55 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"601-699\",\n \"short_name\" : \"601-699\",\n \"types\" : [ \"street_number\" ]\n },\n {\n \"long_name\" : \"7th Avenue\",\n \"short_name\" : \"7th Ave\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"601-699 7th Avenue, New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.75669690,\n \"lng\" : -73.98648360\n },\n \"southwest\" : {\n \"lat\" : 40.7560340,\n \"lng\" : -73.98694510\n }\n },\n \"location\" : {\n \"lat\" : 40.75604130000001,\n \"lng\" : -73.98691920\n },\n \"location_type\" : \"RANGE_INTERPOLATED\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75771443029150,\n \"lng\" : -73.98536536970850\n },\n \"southwest\" : {\n \"lat\" : 40.75501646970850,\n \"lng\" : -73.98806333029151\n }\n }\n },\n \"types\" : [ \"street_address\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - 7 Av\",\n \"short_name\" : \"W 42 St - 7 Av\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - 7 Av, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7563130,\n \"lng\" : -73.98739599999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75766198029149,\n \"lng\" : -73.98604701970848\n },\n \"southwest\" : {\n \"lat\" : 40.75496401970850,\n \"lng\" : -73.98874498029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Times Sq - 42 St\",\n \"short_name\" : \"Times Sq - 42 St\",\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"Times Sq - 42 St, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7559830,\n \"lng\" : -73.98622899999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75733198029150,\n \"lng\" : -73.98488001970848\n },\n \"southwest\" : {\n \"lat\" : 40.75463401970850,\n \"lng\" : -73.98757798029149\n }\n }\n },\n \"types\" : [ \"subway_station\", \"train_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"W 42 St - Broadway\",\n \"short_name\" : \"W 42 St - Broadway\",\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"W 42 St - Broadway, New York, NY 10036, USA\",\n \"geometry\" : {\n \"location\" : {\n \"lat\" : 40.7556760,\n \"lng\" : -73.9863130\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.75702498029150,\n \"lng\" : -73.98496401970849\n },\n \"southwest\" : {\n \"lat\" : 40.75432701970851,\n \"lng\" : -73.98766198029149\n }\n }\n },\n \"types\" : [ \"bus_station\", \"transit_station\", \"establishment\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Theater District - Times Square\",\n \"short_name\" : \"Theater District - Times Square\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Theater District - Times Square, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n },\n \"location\" : {\n \"lat\" : 40.7590110,\n \"lng\" : -73.98447220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.76417910,\n \"lng\" : -73.97907789999999\n },\n \"southwest\" : {\n \"lat\" : 40.753730,\n \"lng\" : -73.99088220\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"10036\",\n \"short_name\" : \"10036\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY 10036, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.72362490,\n \"lng\" : -74.0047860\n }\n },\n \"location\" : {\n \"lat\" : 40.76026190,\n \"lng\" : -73.99328720\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7687380,\n \"lng\" : -73.97811609999999\n },\n \"southwest\" : {\n \"lat\" : 40.7534810,\n \"lng\" : -74.0046830\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Midtown\",\n \"short_name\" : \"Midtown\",\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Midtown, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n },\n \"location\" : {\n \"lat\" : 40.75099150,\n \"lng\" : -73.98887970\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.7742650,\n \"lng\" : -73.95865209999999\n },\n \"southwest\" : {\n \"lat\" : 40.72732990,\n \"lng\" : -74.00882030\n }\n }\n },\n \"types\" : [ \"neighborhood\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n },\n \"location\" : {\n \"lat\" : 40.78306030,\n \"lng\" : -73.97124880\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.87927790,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67983780,\n \"lng\" : -74.04724610\n }\n }\n },\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Manhattan\",\n \"short_name\" : \"Manhattan\",\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Manhattan, New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.8822140,\n \"lng\" : -73.9070\n },\n \"southwest\" : {\n \"lat\" : 40.67954790,\n \"lng\" : -74.0472850\n }\n },\n \"location\" : {\n \"lat\" : 40.79027780,\n \"lng\" : -73.95972220\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.8200450,\n \"lng\" : -73.90331300000001\n },\n \"southwest\" : {\n \"lat\" : 40.6980780,\n \"lng\" : -74.03514899999999\n }\n }\n },\n \"types\" : [ \"sublocality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"New York\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, NY, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25908790\n }\n },\n \"location\" : {\n \"lat\" : 40.71435280,\n \"lng\" : -74.00597309999999\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 40.91524140,\n \"lng\" : -73.70027209999999\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -74.25573489999999\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"New York\",\n \"short_name\" : \"NY\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"New York, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 45.0158650,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n },\n \"location\" : {\n \"lat\" : 43.29942850,\n \"lng\" : -74.21793260000001\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 45.01261130,\n \"lng\" : -71.85626990\n },\n \"southwest\" : {\n \"lat\" : 40.4959080,\n \"lng\" : -79.76214379999999\n }\n }\n },\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"address_components\" : [\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"United States\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 71.3898880,\n \"lng\" : -66.94976079999999\n },\n \"southwest\" : {\n \"lat\" : 18.91106420,\n \"lng\" : 172.45469660\n }\n },\n \"location\" : {\n \"lat\" : 37.090240,\n \"lng\" : -95.7128910\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 49.380,\n \"lng\" : -66.940\n },\n \"southwest\" : {\n \"lat\" : 25.820,\n \"lng\" : -124.390\n }\n }\n },\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=Manhattan,%20NY,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2269556268"],"Content-Length":["366"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x27"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=New%20York,%20NY","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"Age":["44"],"Cache-Control":["max-age=300"],"X-Varnish":["2992155889 2992073794"],"Content-Length":["848"],"Server":["Apache"],"X-Cache-Hits":["13"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x15"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USNY0996\" type=\"1\">New York, NY</loc>\r\n <loc id=\"USNY0011\" type=\"1\">Albany, NY</loc>\r\n <loc id=\"USNY0181\" type=\"1\">Buffalo, NY</loc>\r\n <loc id=\"USNY1232\" type=\"1\">Rochester, NY</loc>\r\n <loc id=\"USNY1434\" type=\"1\">Syracuse, NY</loc>\r\n <loc id=\"USNY1010\" type=\"1\">Niagara Falls, NY</loc>\r\n <loc id=\"USNY1630\" type=\"1\">York, NY</loc>\r\n <loc id=\"USNY0997\" type=\"1\">New York Mills, NY</loc>\r\n <loc id=\"USNY0998\" type=\"1\">New York/Central Park, NY</loc>\r\n <loc id=\"USNY0999\" type=\"1\">New York/JFK Intl Arpt, NY</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO&region=US&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:42:55 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:42:55 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://xoap.weather.com/search/search?where=San%20Francisco,%20CA,%20United%20States","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:42:55 GMT","response":{"http_version":null,"headers":{"Age":["0"],"Cache-Control":["max-age=300"],"X-Varnish":["2269556818"],"Content-Length":["432"],"Server":["Apache"],"X-Cache-Hits":["0"],"Content-Type":["application/xml;charset=UTF-8"],"Connection":["keep-alive"],"Date":["Sat, 09 Feb 2013 18:42:52 GMT"],"Via":["1.1 varnish"],"Accept-Ranges":["bytes"],"Svrname":["data2x09"]},"body":{"string":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!-- This document is intended only for use by authorized licensees of The -->\r\n<!-- Weather Channel. Unauthorized use is prohibited. Copyright 1995-2013, -->\r\n<!-- The Weather Channel Interactive, Inc. All Rights Reserved. -->\r\n<search ver=\"3.0\">\r\n <loc id=\"USCA0987\" type=\"1\">San Francisco, CA</loc>\r\n <loc id=\"USCA1085\" type=\"1\">South San Francisco, CA</loc>\r\n</search>\r\n\r\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"http://weather.yahooapis.com/forecastrss?w=615702","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:42 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Cache-Control":["public"],"Expires":["Sat, 09 Feb 2013 23:01:42 GMT"],"Vary":["Accept-Encoding"],"Content-Type":["text/xml;charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Server":["YTS/1.19.11"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Paris, FR</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Paris__FR/*http://weather.yahoo.com/forecast/FRXX0076_f.html</link>\n<description>Yahoo! Weather for Paris, FR</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 10:29 pm CET</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Paris\" region=\"\" country=\"France\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"27\" direction=\"180\" speed=\"5\" />\n<yweather:atmosphere humidity=\"87\" visibility=\"6.21\" pressure=\"30.03\" rising=\"0\" />\n<yweather:astronomy sunrise=\"8:09 am\" sunset=\"6:00 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Paris, FR at 10:29 pm CET</title>\n<geo:lat>48.86</geo:lat>\n<geo:long>2.34</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Paris__FR/*http://weather.yahoo.com/forecast/FRXX0076_f.html</link>\n<pubDate>Sat, 09 Feb 2013 10:29 pm CET</pubDate>\n<yweather:condition text=\"Fair\" code=\"33\" temp=\"32\" date=\"Sat, 09 Feb 2013 10:29 pm CET\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/33.gif\"/><br />\n<b>Current Conditions:</b><br />\nFair, 32 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Partly Cloudy. High: 39 Low: 28<br />\nSun - Snow to Wintry Mix. High: 34 Low: 34<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Paris__FR/*http://weather.yahoo.com/forecast/FRXX0076_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"28\" high=\"39\" text=\"Partly Cloudy\" code=\"29\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"34\" high=\"34\" text=\"Snow to Wintry Mix\" code=\"7\" />\n<guid isPermaLink=\"false\">FRXX0076_2013_02_10_7_00_CET</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api14.weather.bf1.yahoo.com Sat Feb 9 22:31:42 PST 2013 -->\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:42 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=New+York%2C+NY&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws03.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r05.ycpi.ac4.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001427</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>12</documentLength>\n<document>\n<administrativeScope>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York, NY, US]]></name>\n<centroid>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York, NY, US]]></name>\n<centroid>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York, NY, US (Town)]]></name>\n<centroid>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</centroid>\n<southWest>\n<latitude>40.4766</latitude>\n<longitude>-74.2589</longitude>\n</southWest>\n<northEast>\n<latitude>40.9176</latitude>\n<longitude>-73.7004</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>2347591</woeId>\n<type>State</type>\n<name><![CDATA[New York]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</center>\n<southWest>\n<latitude>40.4766</latitude>\n<longitude>-74.2589</longitude>\n</southWest>\n<northEast>\n<latitude>40.9176</latitude>\n<longitude>-73.7004</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York, NY, US]]></name>\n<centroid>\n<latitude>40.7146</latitude>\n<longitude>-74.0071</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>2459115</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>12</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[New York, NY]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:43 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=90210&region=US&sensor=false","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"Expires":["Sun, 10 Feb 2013 22:31:43 GMT"],"Cache-Control":["public, max-age=86400"],"Vary":["Accept-Language"],"Access-Control-Allow-Origin":["*"],"Server":["mafe"],"X-Xss-Protection":["1; mode=block"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"US-ASCII","string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"90210\",\n \"short_name\" : \"90210\",\n \"types\" : [ \"postal_code\" ]\n },\n {\n \"long_name\" : \"Beverly Hills\",\n \"short_name\" : \"Beverly Hills\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Los Angeles\",\n \"short_name\" : \"Los Angeles\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Beverly Hills, CA 90210, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n },\n \"location\" : {\n \"lat\" : 34.10300320,\n \"lng\" : -118.41046840\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 34.13547710,\n \"lng\" : -118.38671290\n },\n \"southwest\" : {\n \"lat\" : 34.0650940,\n \"lng\" : -118.44237810\n }\n }\n },\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:43 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=Beverly+Hills%2C+CA%2C+United+States&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws02.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r08.ycpi.ac4.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001579</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>32</documentLength>\n<document>\n<administrativeScope>\n<woeId>2363796</woeId>\n<type>Town</type>\n<name><![CDATA[Beverly Hills, CA, US]]></name>\n<centroid>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>2363796</woeId>\n<type>Town</type>\n<name><![CDATA[Beverly Hills, CA, US]]></name>\n<centroid>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>2363796</woeId>\n<type>Town</type>\n<name><![CDATA[Beverly Hills, CA, US (Town)]]></name>\n<centroid>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</centroid>\n<southWest>\n<latitude>34.0541</latitude>\n<longitude>-118.427</longitude>\n</southWest>\n<northEast>\n<latitude>34.1125</latitude>\n<longitude>-118.372</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>12587688</woeId>\n<type>County</type>\n<name><![CDATA[Los Angeles]]></name>\n</ancestor>\n<ancestor>\n<woeId>2347563</woeId>\n<type>State</type>\n<name><![CDATA[California]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</center>\n<southWest>\n<latitude>34.0541</latitude>\n<longitude>-118.427</longitude>\n</southWest>\n<northEast>\n<latitude>34.1125</latitude>\n<longitude>-118.372</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>2363796</woeId>\n<type>Town</type>\n<name><![CDATA[Beverly Hills, CA, US]]></name>\n<centroid>\n<latitude>34.0735</latitude>\n<longitude>-118.4</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>2363796</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>32</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[Beverly Hills, CA, United States]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:43 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=T5B+4M9&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws14.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r11.ycpi.ac4.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001769</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>7</documentLength>\n<document>\n<administrativeScope>\n<woeId>8676</woeId>\n<type>Town</type>\n<name><![CDATA[Edmonton, Alberta, CA]]></name>\n<centroid>\n<latitude>53.5559</latitude>\n<longitude>-113.493</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>24354344</woeId>\n<type>Zip</type>\n<name><![CDATA[T5B 4M9, Edmonton, Alberta, CA]]></name>\n<centroid>\n<latitude>53.5705</latitude>\n<longitude>-113.458</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>24354344</woeId>\n<type>Zip</type>\n<name><![CDATA[T5B 4M9, Edmonton, Alberta, CA (Zip)]]></name>\n<centroid>\n<latitude>53.5705</latitude>\n<longitude>-113.458</longitude>\n</centroid>\n<southWest>\n<latitude>53.5695</latitude>\n<longitude>-113.46</longitude>\n</southWest>\n<northEast>\n<latitude>53.5715</latitude>\n<longitude>-113.456</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>8676</woeId>\n<type>Town</type>\n<name><![CDATA[Edmonton]]></name>\n</ancestor>\n<ancestor>\n<woeId>29375228</woeId>\n<type>County</type>\n<name><![CDATA[Alberta]]></name>\n</ancestor>\n<ancestor>\n<woeId>2344915</woeId>\n<type>Province/Territory</type>\n<name><![CDATA[Alberta]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424775</woeId>\n<type>Country</type>\n<name><![CDATA[Canada]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>53.5705</latitude>\n<longitude>-113.458</longitude>\n</center>\n<southWest>\n<latitude>53.5695</latitude>\n<longitude>-113.46</longitude>\n</southWest>\n<northEast>\n<latitude>53.5715</latitude>\n<longitude>-113.456</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>24354344</woeId>\n<type>Zip</type>\n<name><![CDATA[T5B 4M9, Edmonton, Alberta, CA]]></name>\n<centroid>\n<latitude>53.5705</latitude>\n<longitude>-113.458</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>7</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>24354344</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>7</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[T5B 4M9]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:43 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=%3Chtml%3E%3Cbody%3E%3Cdiv+class%3D%22geo%22%3E%3Cspan+class%3D%22latitude%22%3E40.756054%3C%2Fspan%3E%3Cspan+class%3D%22longitude%22%3E-73.986951%3C%2Fspan%3E%3C%2Fdiv%3E%3C%2Fbody%3E%3C%2Fhtml%3E&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:43 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws12.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r06.ycpi.ac4.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.00365</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>129</documentLength>\n<document>\n<administrativeScope>\n<woeId>12589342</woeId>\n<type>County</type>\n<name><![CDATA[Manhattan, New York, NY, US]]></name>\n<centroid>\n<latitude>40.7909</latitude>\n<longitude>-73.9664</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>12761349</woeId>\n<type>Zip</type>\n<name><![CDATA[10018, New York, NY, US]]></name>\n<centroid>\n<latitude>40.7565</latitude>\n<longitude>-73.9972</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>12761349</woeId>\n<type>Zip</type>\n<name><![CDATA[10018, New York, NY, US (Zip)]]></name>\n<centroid>\n<latitude>40.7565</latitude>\n<longitude>-73.9972</longitude>\n</centroid>\n<southWest>\n<latitude>40.7491</latitude>\n<longitude>-74.0071</longitude>\n</southWest>\n<northEast>\n<latitude>40.7614</latitude>\n<longitude>-73.9809</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>12589342</woeId>\n<type>County</type>\n<name><![CDATA[Manhattan]]></name>\n</ancestor>\n<ancestor>\n<woeId>2459115</woeId>\n<type>Town</type>\n<name><![CDATA[New York]]></name>\n</ancestor>\n<ancestor>\n<woeId>2347591</woeId>\n<type>State</type>\n<name><![CDATA[New York]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>40.7561</latitude>\n<longitude>-73.987</longitude>\n</center>\n<southWest>\n<latitude>40.7491</latitude>\n<longitude>-74.0071</longitude>\n</southWest>\n<northEast>\n<latitude>40.7614</latitude>\n<longitude>-73.9809</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>12761349</woeId>\n<type>Zip</type>\n<name><![CDATA[10018, New York, NY, US]]></name>\n<centroid>\n<latitude>40.7561</latitude>\n<longitude>-73.987</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>1</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>12761349</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>-1</start>\n<end>-1</end>\n<isPlaintextMarker>0</isPlaintextMarker>\n<text><![CDATA[]]></text>\n<type>xpath</type>\n<xpath><![CDATA[/html[1]/body[1]/div[1]/span[2]]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"},{"request":{"method":"get","uri":"http://weather.yahooapis.com/forecastrss?p=USGA0028","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:44 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Cache-Control":["public"],"Expires":["Sat, 09 Feb 2013 23:01:44 GMT"],"Vary":["Accept-Encoding"],"Content-Type":["text/xml;charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Server":["YTS/1.19.11"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\t\t<rss version=\"2.0\" xmlns:yweather=\"http://xml.weather.yahoo.com/ns/rss/1.0\" xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\">\n\t\t\t<channel>\n\t\t\n<title>Yahoo! Weather - Atlanta, GA</title>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<description>Yahoo! Weather for Atlanta, GA</description>\n<language>en-us</language>\n<lastBuildDate>Sat, 09 Feb 2013 4:52 pm EST</lastBuildDate>\n<ttl>60</ttl>\n<yweather:location city=\"Atlanta\" region=\"GA\" country=\"US\"/>\n<yweather:units temperature=\"F\" distance=\"mi\" pressure=\"in\" speed=\"mph\"/>\n<yweather:wind chill=\"60\" direction=\"130\" speed=\"7\" />\n<yweather:atmosphere humidity=\"26\" visibility=\"10\" pressure=\"30.21\" rising=\"1\" />\n<yweather:astronomy sunrise=\"7:26 am\" sunset=\"6:15 pm\"/>\n<image>\n<title>Yahoo! Weather</title>\n<width>142</width>\n<height>18</height>\n<link>http://weather.yahoo.com</link>\n<url>http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif</url>\n</image>\n<item>\n<title>Conditions for Atlanta, GA at 4:52 pm EST</title>\n<geo:lat>33.75</geo:lat>\n<geo:long>-84.39</geo:long>\n<link>http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html</link>\n<pubDate>Sat, 09 Feb 2013 4:52 pm EST</pubDate>\n<yweather:condition text=\"Partly Cloudy\" code=\"30\" temp=\"60\" date=\"Sat, 09 Feb 2013 4:52 pm EST\" />\n<description><![CDATA[\n<img src=\"http://l.yimg.com/a/i/us/we/52/30.gif\"/><br />\n<b>Current Conditions:</b><br />\nPartly Cloudy, 60 F<BR />\n<BR /><b>Forecast:</b><BR />\nSat - Mostly Cloudy. High: 60 Low: 41<br />\nSun - PM Showers. High: 60 Low: 56<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Atlanta__GA/*http://weather.yahoo.com/forecast/USGA0028_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n]]></description>\n<yweather:forecast day=\"Sat\" date=\"9 Feb 2013\" low=\"41\" high=\"60\" text=\"Mostly Cloudy\" code=\"27\" />\n<yweather:forecast day=\"Sun\" date=\"10 Feb 2013\" low=\"56\" high=\"60\" text=\"PM Showers\" code=\"39\" />\n<guid isPermaLink=\"false\">USGA0028_2013_02_10_7_00_EST</guid>\n</item>\n</channel>\n</rss>\n\n<!-- api23.weather.bf1.yahoo.com Sat Feb 9 22:31:44 PST 2013 -->\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=Atlanta%2C+GA%2C+US&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Cache-Control":["public, must-revalidate"],"Connection":["Keep-Alive"],"Content-Language":["en"],"Content-Length":["2452"],"Content-Type":["text/xml; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 22:31:44 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"Server":["HTTP/1.1 UserFiberFramework/1.0"],"Via":["HTTP/1.1 r01.ycpi.ac4.yahoo.net UserFiberFramework/1.0"],"X-Yahoo-Serving-Host":["wws02.geotech.bf1.yahoo.com"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001818</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>15</documentLength>\n<document>\n<administrativeScope>\n<woeId>2357024</woeId>\n<type>Town</type>\n<name><![CDATA[Atlanta, GA, US]]></name>\n<centroid>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>2357024</woeId>\n<type>Town</type>\n<name><![CDATA[Atlanta, GA, US]]></name>\n<centroid>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>2357024</woeId>\n<type>Town</type>\n<name><![CDATA[Atlanta, GA, US (Town)]]></name>\n<centroid>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</centroid>\n<southWest>\n<latitude>33.648</latitude>\n<longitude>-84.5466</longitude>\n</southWest>\n<northEast>\n<latitude>33.8872</latitude>\n<longitude>-84.2897</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>12587929</woeId>\n<type>County</type>\n<name><![CDATA[Fulton]]></name>\n</ancestor>\n<ancestor>\n<woeId>2347569</woeId>\n<type>State</type>\n<name><![CDATA[Georgia]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</center>\n<southWest>\n<latitude>33.648</latitude>\n<longitude>-84.5466</longitude>\n</southWest>\n<northEast>\n<latitude>33.8872</latitude>\n<longitude>-84.2897</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>2357024</woeId>\n<type>Town</type>\n<name><![CDATA[Atlanta, GA, US]]></name>\n<centroid>\n<latitude>33.7483</latitude>\n<longitude>-84.3911</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>2357024</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>15</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[Atlanta, GA, US]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"},{"request":{"method":"get","uri":"http://maps.googleapis.com/maps/api/geocode/json?address=KSFO&region=US&sensor=false","body":{"encoding":"US-ASCII","string":""},"headers":{}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 22:31:44 GMT"],"Expires":["Sun, 10 Feb 2013 22:31:44 GMT"],"Cache-Control":["public, max-age=86400"],"Vary":["Accept-Language"],"Access-Control-Allow-Origin":["*"],"Server":["mafe"],"X-Xss-Protection":["1; mode=block"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"]},"body":{"encoding":"US-ASCII","string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"San Francisco Airport\",\n \"short_name\" : \"San Francisco Airport\",\n \"types\" : [ \"establishment\" ]\n },\n {\n \"long_name\" : \"South Airport Boulevard\",\n \"short_name\" : \"South Airport Boulevard\",\n \"types\" : [ \"route\" ]\n },\n {\n \"long_name\" : \"San Francisco\",\n \"short_name\" : \"San Francisco\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"San Mateo\",\n \"short_name\" : \"San Mateo\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"California\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"United States\",\n \"short_name\" : \"US\",\n \"types\" : [ \"country\", \"political\" ]\n },\n {\n \"long_name\" : \"94128\",\n \"short_name\" : \"94128\",\n \"types\" : [ \"postal_code\" ]\n }\n ],\n \"formatted_address\" : \"San Francisco Airport (SFO), South Airport Boulevard, San Francisco, CA 94128, USA\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n },\n \"location\" : {\n \"lat\" : 37.6152230,\n \"lng\" : -122.3899790\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 37.63970170,\n \"lng\" : -122.35491970\n },\n \"southwest\" : {\n \"lat\" : 37.6042910,\n \"lng\" : -122.40154280\n }\n }\n },\n \"types\" : [ \"airport\", \"transit_station\", \"establishment\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"},{"request":{"method":"post","uri":"http://wherein.yahooapis.com/v1/document","body":{"encoding":"US-ASCII","string":"documentType=text%2Fhtml&outputType=xml&documentContent=San+Francisco%2C+CA%2C+United+States&appid=<PLACEMAKER_KEY>"},"headers":{"Accept":["*/*"],"User-Agent":["Ruby"],"Content-Type":["application/x-www-form-urlencoded"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Date":["Sat, 09 Feb 2013 22:31:44 GMT"],"P3p":["policyref=\"http://info.yahoo.com/w3c/p3p.xml\", CP=\"CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV\""],"X-Yahoo-Serving-Host":["wws02.geotech.bf1.yahoo.com"],"Content-Language":["en"],"Cache-Control":["public,must-revalidate"],"Content-Type":["text/xml; charset=UTF-8"],"Age":["0"],"Transfer-Encoding":["chunked"],"Connection":["keep-alive"],"Via":["HTTP/1.1 r14.ycpi.nyc.yahoo.net (YahooTrafficServer/1.20.20 [cMsSf ])"],"Server":["YTS/1.20.20"]},"body":{"encoding":"US-ASCII","string":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<contentlocation xmlns:yahoo=\"http://www.yahooapis.com/v1/base.rng\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\" xmlns=\"http://wherein.yahooapis.com/v1/schema\" xml:lang=\"en\">\n<processingTime>0.001821</processingTime>\n<version>1.8.0.872 build 121220</version>\n<documentLength>32</documentLength>\n<document>\n<administrativeScope>\n<woeId>2487956</woeId>\n<type>Town</type>\n<name><![CDATA[San Francisco, CA, US]]></name>\n<centroid>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</centroid>\n</administrativeScope>\n<geographicScope>\n<woeId>2487956</woeId>\n<type>Town</type>\n<name><![CDATA[San Francisco, CA, US]]></name>\n<centroid>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</centroid>\n</geographicScope>\n<localScopes>\n<localScope>\n<woeId>2487956</woeId>\n<type>Town</type>\n<name><![CDATA[San Francisco, CA, US (Town)]]></name>\n<centroid>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</centroid>\n<southWest>\n<latitude>37.604</latitude>\n<longitude>-123.014</longitude>\n</southWest>\n<northEast>\n<latitude>37.8324</latitude>\n<longitude>-122.355</longitude>\n</northEast>\n<ancestors>\n<ancestor>\n<woeId>12587707</woeId>\n<type>County</type>\n<name><![CDATA[San Francisco]]></name>\n</ancestor>\n<ancestor>\n<woeId>2347563</woeId>\n<type>State</type>\n<name><![CDATA[California]]></name>\n</ancestor>\n<ancestor>\n<woeId>23424977</woeId>\n<type>Country</type>\n<name><![CDATA[United States]]></name>\n</ancestor>\n</ancestors>\n</localScope>\n</localScopes>\n<extents>\n<center>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</center>\n<southWest>\n<latitude>37.604</latitude>\n<longitude>-123.014</longitude>\n</southWest>\n<northEast>\n<latitude>37.8324</latitude>\n<longitude>-122.355</longitude>\n</northEast>\n</extents>\n<placeDetails>\n<placeId>1</placeId>\n<place>\n<woeId>2487956</woeId>\n<type>Town</type>\n<name><![CDATA[San Francisco, CA, US]]></name>\n<centroid>\n<latitude>37.7771</latitude>\n<longitude>-122.42</longitude>\n</centroid>\n</place>\n<placeReferenceIds>1</placeReferenceIds>\n<matchType>0</matchType>\n<weight>1</weight>\n<confidence>10</confidence>\n</placeDetails>\n<referenceList>\n<reference>\n<woeIds>2487956</woeIds>\n<placeReferenceId>1</placeReferenceId>\n<placeIds>1</placeIds>\n<start>0</start>\n<end>32</end>\n<isPlaintextMarker>1</isPlaintextMarker>\n<text><![CDATA[San Francisco, CA, United States]]></text>\n<type>plaintext</type>\n<xpath><![CDATA[]]></xpath>\n</reference>\n</referenceList>\n</document>\n</contentlocation>\n"},"http_version":null},"recorded_at":"Sat, 09 Feb 2013 22:31:44 GMT"}],"recorded_with":"VCR 2.4.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"uri":"http://maps.googleapis.com/maps/api/geocode/json?address=Calgary,AB&region=&sensor=false","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:05 GMT","response":{"http_version":null,"headers":{"X-Xss-Protection":["1; mode=block"],"Cache-Control":["public, max-age=86400"],"X-Frame-Options":["SAMEORIGIN"],"Transfer-Encoding":["chunked"],"Server":["mafe"],"Content-Type":["application/json; charset=UTF-8"],"Date":["Sat, 09 Feb 2013 18:43:05 GMT"],"Access-Control-Allow-Origin":["*"],"Vary":["Accept-Language"],"Expires":["Sun, 10 Feb 2013 18:43:05 GMT"]},"body":{"string":"{\n \"results\" : [\n {\n \"address_components\" : [\n {\n \"long_name\" : \"Calgary\",\n \"short_name\" : \"Calgary\",\n \"types\" : [ \"locality\", \"political\" ]\n },\n {\n \"long_name\" : \"Division No. 6\",\n \"short_name\" : \"Division No. 6\",\n \"types\" : [ \"administrative_area_level_2\", \"political\" ]\n },\n {\n \"long_name\" : \"Alberta\",\n \"short_name\" : \"AB\",\n \"types\" : [ \"administrative_area_level_1\", \"political\" ]\n },\n {\n \"long_name\" : \"Canada\",\n \"short_name\" : \"CA\",\n \"types\" : [ \"country\", \"political\" ]\n }\n ],\n \"formatted_address\" : \"Calgary, AB, Canada\",\n \"geometry\" : {\n \"bounds\" : {\n \"northeast\" : {\n \"lat\" : 51.183830,\n \"lng\" : -113.9056380\n },\n \"southwest\" : {\n \"lat\" : 50.84240399999999,\n \"lng\" : -114.271360\n }\n },\n \"location\" : {\n \"lat\" : 51.04532460,\n \"lng\" : -114.05810120\n },\n \"location_type\" : \"APPROXIMATE\",\n \"viewport\" : {\n \"northeast\" : {\n \"lat\" : 51.183830,\n \"lng\" : -113.9056380\n },\n \"southwest\" : {\n \"lat\" : 50.84240399999999,\n \"lng\" : -114.271360\n }\n }\n },\n \"types\" : [ \"locality\", \"political\" ]\n }\n ],\n \"status\" : \"OK\"\n}\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/WXCurrentObXML/index.xml?query=51.0453246,-114.0581012","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:05 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:43:05 GMT"],"X-Creationtime":["0.038"]},"body":{"string":"\t<current_observation>\n\t\t<credit>Weather Underground NOAA Weather Station</credit>\n\t\t<credit_URL>http://wunderground.com/</credit_URL>\n<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t\t<image>\n\t\t<url>http://icons-ak.wxug.com/graphics/wu2/logo_130x80.png</url>\n\t\t<title>Weather Underground</title>\n\t\t<link>http://wunderground.com/</link>\n\t\t</image>\n <display_location>\n <full>Calgary, Alberta</full>\n <city>Calgary</city>\n <state>AB</state>\n <state_name>Alberta</state_name>\n <country>CA</country>\n <country_iso3166>CA</country_iso3166>\n <zip>00000</zip>\n <latitude>51.045325</latitude>\n <longitude>-114.058101</longitude>\n <elevation>1047.00000000 ft</elevation>\n </display_location>\n\t\t<observation_location>\n\t\t<full>Calgary, </full>\n\t\t<city>Calgary</city>\n\t\t<state></state>\n\t\t<country>CA</country>\n\t\t<country_iso3166>CA</country_iso3166>\n\t\t<latitude>51.11999893</latitude>\n\t\t<longitude>-114.01999664</longitude>\n\t\t<elevation>3556 ft</elevation>\n\t\t</observation_location>\n\t\t<station_id>CYYC</station_id>\n\t\t<observation_time>Last Updated on February 9, 11:00 AM MST</observation_time>\n\t\t<observation_time_rfc822>Sat, 09 Feb 2013 18:00:00 GMT</observation_time_rfc822>\n\t\t<observation_epoch>1360432800</observation_epoch>\n\t\t<local_time>February 9, 11:43 AM MST</local_time>\n\t\t<local_time_rfc822>Sat, 09 Feb 2013 18:43:05 GMT</local_time_rfc822>\n\t\t<local_epoch>1360435385</local_epoch>\n\t\t<weather>Mostly Cloudy</weather>\n\t\t<temperature_string>36 F (2 C)</temperature_string>\n\t\t<temp_f>36</temp_f>\n\t\t<temp_c>2</temp_c>\n\t\t<relative_humidity>70%</relative_humidity>\n\t\t<wind_string>From the NW at 18 MPH Gusting to 26 MPH</wind_string>\n\t\t<wind_dir>NW</wind_dir>\n\t\t<wind_degrees>310</wind_degrees>\n\t\t<wind_mph>18</wind_mph>\n\t\t<wind_gust_mph>26</wind_gust_mph>\n\t\t<pressure_string>29.98 in (1015 mb)</pressure_string>\r\n\t\t<pressure_mb>1015</pressure_mb>\r\n\t\t<pressure_in>29.98</pressure_in>\r\n\t\t<dewpoint_string>27 F (-3 C)</dewpoint_string>\r\n\t\t<dewpoint_f>27</dewpoint_f>\r\n\t\t<dewpoint_c>-3</dewpoint_c>\r\n\t\t\r\n\t\t<heat_index_string>NA</heat_index_string>\r\n\t\t<heat_index_f>NA</heat_index_f>\r\n\t\t<heat_index_c>NA</heat_index_c>\r\n\t\t\r\n\t\t\r\n\t\t<windchill_string>25 F (-4 C)</windchill_string>\r\n\t\t<windchill_f>25</windchill_f>\r\n\t\t<windchill_c>-4</windchill_c>\r\n\t\t\r\n\t\t<visibility_mi>20.0</visibility_mi>\r\n\t\t<visibility_km>32.2</visibility_km>\r\n\t\t<icons>\r\n\t\t\t<icon_set name=\"Default\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Smiley\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Generic\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Old School\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Cartoon\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Mobile\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Simple\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Contemporary\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Helen\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t\t<icon_set name=\"Incredible\">\r\n\t\t\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlycloudy.gif</icon_url>\r\n\t\t\t</icon_set>\r\n\t\t</icons>\r\n\t\t<icon_url_base>http://icons-ak.wxug.com/graphics/conds/</icon_url_base>\r\n\t\t<icon_url_name>.GIF</icon_url_name>\r\n\t\t<icon>mostlycloudy</icon>\r\n\t\t<forecast_url>http://www.wunderground.com/global/stations/71877.html</forecast_url>\r\n\t\t<history_url>http://www.wunderground.com/history/airport/CYYC/2013/2/9/DailyHistory.html</history_url>\r\n\t\t<ob_url>http://www.wunderground.com/cgi-bin/findweather/getForecast?query=51.11999893,-114.01999664</ob_url>\r\n\t</current_observation>\r\n"},"status":{"message":"OK","code":200}}},{"request":{"uri":"http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml?query=51.0453246,-114.0581012","headers":{},"body":{"string":""},"method":"get"},"recorded_at":"Sat, 09 Feb 2013 18:43:06 GMT","response":{"http_version":null,"headers":{"Transfer-Encoding":["chunked"],"Server":["Apache/1.3.42 (Unix) PHP/5.3.2"],"Content-Type":["text/xml"],"Connection":["close"],"Date":["Sat, 09 Feb 2013 18:43:05 GMT"],"X-Creationtime":["0.071"]},"body":{"string":"<?xml version=\"1.0\" ?>\n<forecast>\n\t\t<termsofservice link=\"http://www.wunderground.com/weather/api/d/terms.html\">This feed will be deprecated. Please switch to http://www.wunderground.com/weather/api/</termsofservice>\n\t<txt_forecast>\n <date>5:00 PM MST</date>\n <number></number>\n\t\t<forecastday>\n\t\t<period>0</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 8, 2013</title>\n\t\t<fcttext>Clear. High 6&amp;deg;C (42&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>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 9, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 4&amp;deg;C (39&amp;deg;F). Winds 10 kph WNW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>2</period>\n\t\t<icon>chancesnow</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 10, 2013</title>\n\t\t<fcttext>Chance of Snow. High 3&amp;deg;C (37&amp;deg;F). Winds 18 kph NW</fcttext>\n\t\t<pop>40</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>3</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 11, 2013</title>\n\t\t<fcttext>Clear. High 3&amp;deg;C (37&amp;deg;F). Winds 7 kph SSE</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>4</period>\n\t\t<icon>sunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/sunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 12, 2013</title>\n\t\t<fcttext>Clear. High 7&amp;deg;C (44&amp;deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t\t<forecastday>\n\t\t<period>5</period>\n\t\t<icon>mostlysunny</icon>\n\t\t<icons>\n\t\t<icon_set name=\"Default\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/a/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Smiley\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/b/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Generic\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/c/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Old School\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/d/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Cartoon\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/e/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Mobile\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/f/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Simple\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/g/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Contemporary\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/h/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Helen\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/i/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t<icon_set name=\"Incredible\">\n\t\t<icon_url>http://icons-ak.wxug.com/i/c/k/mostlysunny.gif</icon_url>\n\t\t</icon_set>\n\t\t</icons>\n\t\t<title>February 13, 2013</title>\n\t\t<fcttext>Scattered Clouds. High 7&amp;deg;C (44&amp;deg;F). Winds 14 kph WSW</fcttext>\n\t\t<pop>0</pop>\n\t\t</forecastday>\n\t</txt_forecast>\n<simpleforecast>\n <forecastday>\n <period>1</period>\n <date>\n <epoch>1360476000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 09, 2013</pretty>\n <day>9</day>\n <month>2</month>\n <year>2013</year>\n <yday>39</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Saturday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>18</fahrenheit>\r\n <celsius>-8</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>60</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>2</period>\r\n <date>\n <epoch>1360562400</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 10, 2013</pretty>\n <day>10</day>\n <month>2</month>\n <year>2013</year>\n <yday>40</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Sunday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>36</fahrenheit>\r\n <celsius>2</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>19</fahrenheit>\r\n <celsius>-7</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>3</period>\r\n <date>\n <epoch>1360648800</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 11, 2013</pretty>\n <day>11</day>\n <month>2</month>\n <year>2013</year>\n <yday>41</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Monday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>43</fahrenheit>\r\n <celsius>6</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>partlycloudy</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>4</period>\r\n <date>\n <epoch>1360735200</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 12, 2013</pretty>\n <day>12</day>\n <month>2</month>\n <year>2013</year>\n <yday>42</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Tuesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>45</fahrenheit>\r\n <celsius>7</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>23</fahrenheit>\r\n <celsius>-5</celsius>\r\n </low>\r\n <conditions>Partly Cloudy</conditions>\r\n <icon>partlycloudy</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/partlycloudy.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>5</period>\r\n <date>\n <epoch>1360821600</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 13, 2013</pretty>\n <day>13</day>\n <month>2</month>\n <year>2013</year>\n <yday>43</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Wednesday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>37</fahrenheit>\r\n <celsius>3</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>21</fahrenheit>\r\n <celsius>-6</celsius>\r\n </low>\r\n <conditions>Chance of Snow</conditions>\r\n <icon>chancesnow</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/chancesnow.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlycloudy</skyicon>\r\n\t\t\t<pop>40</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n <forecastday>\r\n <period>6</period>\r\n <date>\n <epoch>1360908000</epoch>\n <pretty_short>11:00 PM MST</pretty_short>\n <pretty>11:00 PM MST on February 14, 2013</pretty>\n <day>14</day>\n <month>2</month>\n <year>2013</year>\n <yday>44</yday>\n <hour>23</hour>\n <min>00</min>\n <sec>0</sec>\n <isdst>0</isdst>\n <monthname>February</monthname>\n <weekday_short></weekday_short>\n <weekday>Thursday</weekday>\n <ampm>PM</ampm>\n <tz_short>MST</tz_short>\n <tz_long>America/Edmonton</tz_long>\n</date>\r\n <high>\r\n <fahrenheit>32</fahrenheit>\r\n <celsius>0</celsius>\r\n </high>\r\n <low>\r\n <fahrenheit>16</fahrenheit>\r\n <celsius>-9</celsius>\r\n </low>\r\n <conditions>Clear</conditions>\r\n <icon>clear</icon>\r\n\t <icons>\r\n \t <icon_set name=\"Default\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/a/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Smiley\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/b/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Generic\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/c/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Old School\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/d/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Cartoon\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/e/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Mobile\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/f/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Simple\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/g/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Contemporary\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/h/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Helen\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/i/clear.gif</icon_url>\r\n\t </icon_set>\r\n \t <icon_set name=\"Incredible\">\r\n\t <icon_url>http://icons-ak.wxug.com/i/c/k/clear.gif</icon_url>\r\n\t </icon_set>\r\n\t </icons>\r\n <skyicon>mostlysunny</skyicon>\r\n\t\t\t<pop>0</pop>\r\n </forecastday>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</simpleforecast>\r\n<moon_phase>\r\n <percentIlluminated>0</percentIlluminated>\r\n <ageOfMoon>29</ageOfMoon>\r\n\t\t<current_time>\r\n\t\t\t<hour>11</hour>\r\n\t\t\t<minute>43</minute>\r\n\t\t</current_time>\r\n <sunset>\r\n <hour>17</hour>\r\n <minute>42</minute>\r\n </sunset>\r\n <sunrise>\r\n <hour>7</hour>\r\n <minute>59</minute>\r\n </sunrise>\r\n</moon_phase>\r\n</forecast>\r\n\r\n"},"status":{"message":"OK","code":200}}}],"recorded_with":"VCR 2.4.0"}