orb_def 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +79 -0
  3. data/.gitignore +14 -0
  4. data/.rakeTasks +7 -0
  5. data/.rspec +1 -0
  6. data/Gemfile +15 -0
  7. data/Gemfile.lock +207 -0
  8. data/MIT-LICENSE +20 -0
  9. data/README.md +30 -0
  10. data/Rakefile +23 -0
  11. data/app/assets/config/orb_def_manifest.js +2 -0
  12. data/app/assets/javascripts/orb_def/application.js +15 -0
  13. data/app/assets/stylesheets/orb_def/application.css +15 -0
  14. data/app/controllers/orb_def/api/v1/fires_controller.rb +64 -0
  15. data/app/controllers/orb_def/api/v1/weather_readings_controller.rb +16 -0
  16. data/app/controllers/orb_def/application_controller.rb +5 -0
  17. data/app/helpers/orb_def/application_helper.rb +4 -0
  18. data/app/jobs/orb_def/application_job.rb +4 -0
  19. data/app/mailers/orb_def/application_mailer.rb +6 -0
  20. data/app/models/orb_def/application_record.rb +5 -0
  21. data/app/models/orb_def/detection_type.rb +7 -0
  22. data/app/models/orb_def/fire.rb +60 -0
  23. data/app/models/orb_def/weather_reading.rb +41 -0
  24. data/app/models/orb_def/weather_station.rb +33 -0
  25. data/app/serializers/orb_def/api/v1/fire_serializer.rb +17 -0
  26. data/app/services/orb_def/fire_weather_data.rb +36 -0
  27. data/app/services/orb_def/nasa/firms_client.rb +38 -0
  28. data/app/services/orb_def/nasa/firms_import.rb +44 -0
  29. data/app/services/orb_def/open_weather_api/weather_by_coordinates.rb +31 -0
  30. data/app/views/layouts/orb_def/application.html.erb +16 -0
  31. data/bin/rails +25 -0
  32. data/config/routes.rb +13 -0
  33. data/db/migrate/20200422073925_create_orb_def_weather_stations.rb +12 -0
  34. data/db/migrate/20200422073938_create_orb_def_weather_readings.rb +20 -0
  35. data/db/migrate/20200423064313_create_orb_def_detection_types.rb +9 -0
  36. data/db/migrate/20200428063630_create_orb_def_fires.rb +28 -0
  37. data/db/seeds.rb +8 -0
  38. data/lib/orb_def/engine.rb +16 -0
  39. data/lib/orb_def/version.rb +3 -0
  40. data/lib/orb_def.rb +16 -0
  41. data/lib/tasks/orb_def_tasks.rake +4 -0
  42. data/orb_def.gemspec +38 -0
  43. data/spec/controllers/orb_def/api/v1/fires_controller_spec.rb +16 -0
  44. data/spec/dummy/Rakefile +6 -0
  45. data/spec/dummy/app/assets/config/manifest.js +4 -0
  46. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  47. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  48. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  49. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  50. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  51. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  52. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  53. data/spec/dummy/app/jobs/application_job.rb +2 -0
  54. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  55. data/spec/dummy/app/models/application_record.rb +3 -0
  56. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  57. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  58. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  59. data/spec/dummy/bin/bundle +3 -0
  60. data/spec/dummy/bin/rails +4 -0
  61. data/spec/dummy/bin/rake +4 -0
  62. data/spec/dummy/bin/setup +36 -0
  63. data/spec/dummy/bin/update +31 -0
  64. data/spec/dummy/bin/yarn +11 -0
  65. data/spec/dummy/config/application.rb +30 -0
  66. data/spec/dummy/config/boot.rb +5 -0
  67. data/spec/dummy/config/cable.yml +10 -0
  68. data/spec/dummy/config/database.yml +21 -0
  69. data/spec/dummy/config/environment.rb +5 -0
  70. data/spec/dummy/config/environments/development.rb +61 -0
  71. data/spec/dummy/config/environments/production.rb +94 -0
  72. data/spec/dummy/config/environments/test.rb +46 -0
  73. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  74. data/spec/dummy/config/initializers/assets.rb +14 -0
  75. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  76. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  77. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  78. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  79. data/spec/dummy/config/initializers/inflections.rb +16 -0
  80. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  81. data/spec/dummy/config/initializers/orb_def.rb +4 -0
  82. data/spec/dummy/config/initializers/pagy.rb +170 -0
  83. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  84. data/spec/dummy/config/locales/en.yml +33 -0
  85. data/spec/dummy/config/orb_def/spring.rb +1 -0
  86. data/spec/dummy/config/puma.rb +37 -0
  87. data/spec/dummy/config/routes.rb +3 -0
  88. data/spec/dummy/config/spring.rb +6 -0
  89. data/spec/dummy/config/storage.yml +34 -0
  90. data/spec/dummy/config.ru +5 -0
  91. data/spec/dummy/db/schema.rb +87 -0
  92. data/spec/dummy/package.json +5 -0
  93. data/spec/dummy/public/404.html +67 -0
  94. data/spec/dummy/public/422.html +67 -0
  95. data/spec/dummy/public/500.html +66 -0
  96. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  97. data/spec/dummy/public/apple-touch-icon.png +0 -0
  98. data/spec/dummy/public/favicon.ico +0 -0
  99. data/spec/factories/detection_type.rb +5 -0
  100. data/spec/fixtures/files/modis_c6.txt +3 -0
  101. data/spec/fixtures/nasa/firms/viirs.txt +3 -0
  102. data/spec/rails_helper.rb +72 -0
  103. data/spec/services/orbital_defence_engine/nasa/firms_import_spec.rb +27 -0
  104. data/spec/services/orbital_defence_engine/open_weather_api/weather_by_coordinates_spec.rb +16 -0
  105. data/spec/spec/vcr/cassettes/OrbitalDefenceEngine_Nasa_FirmsImport/_all/when_request_successful/creates_fires.yml +77 -0
  106. data/spec/spec/vcr/cassettes/OrbitalDefenceEngine_OpenWeatherApi_WeatherByCoordinates/_fetch_weather_by_coordinates/returns_json_data_as_a_hash.yml +41 -0
  107. data/spec/spec_helper.rb +96 -0
  108. data/spec/support/factory_bot.rb +3 -0
  109. data/spec/support/vcr.rb +9 -0
  110. data/spec/vcr/cassettes/OpenWeatherApi_WeatherByCoordinates/_fetch_weather_by_coordinates/returns_json_data_as_a_hash.yml +41 -0
  111. data/spec/vcr/cassettes/OrbDef_Nasa_FirmsImport/_all/when_request_successful/creates_fires.yml +4766 -0
  112. data/spec/vcr/cassettes/OrbDef_OpenWeatherApi_WeatherByCoordinates/_fetch_weather_by_coordinates/returns_json_data_as_a_hash.yml +41 -0
  113. metadata +438 -0
@@ -0,0 +1,4766 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://nrt4.modaps.eosdis.nasa.gov/api/v2/content/archives/FIRMS/c6/Global/MODIS_C6_Global_MCD14DL_NRT_2020022.txt
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.15.4
12
+ Authorization:
13
+ - Bearer <NASA_API_KEY>
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ server:
20
+ - openresty
21
+ date:
22
+ - Wed, 22 Jan 2020 08:04:38 GMT
23
+ content-type:
24
+ - text/plain;charset=UTF-8
25
+ content-length:
26
+ - '8544'
27
+ connection:
28
+ - close
29
+ last-modified:
30
+ - Wed, 22 Jan 2020 08:02:34 GMT
31
+ accept-ranges:
32
+ - bytes
33
+ access-control-allow-credentials:
34
+ - 'true'
35
+ etag:
36
+ - '"b3843be5838e634302cbb346952957db"'
37
+ content-disposition:
38
+ - attachment; filename=MODIS_C6_Australia_NewZealand_MCD14DL_NRT_2020022.txt
39
+ x-frame-options:
40
+ - SAMEORIGIN
41
+ strict-transport-security:
42
+ - max-age=31536000; includeSubDomains
43
+ body:
44
+ encoding: UTF-8
45
+ string: |
46
+ latitude,longitude,brightness,scan,track,acq_date,acq_time,satellite,confidence,version,bright_t31,frp,daynight
47
+ -12.875,142.334,309.8,1.5,1.2,2020-01-22,01:05,T,17,6.0NRT,284.4,9.2,D
48
+ -12.878,142.327,310.4,1.5,1.2,2020-01-22,01:05,T,44,6.0NRT,283.9,11.4,D
49
+ -18.866,139.325,335.1,1.2,1.1,2020-01-22,01:10,T,78,6.0NRT,292.8,33.8,D
50
+ http_version:
51
+ recorded_at: Wed, 22 Jan 2020 08:04:38 GMT
52
+ - request:
53
+ method: get
54
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-12.875&lon=142.334
55
+ body:
56
+ encoding: US-ASCII
57
+ string: ''
58
+ headers:
59
+ User-Agent:
60
+ - Faraday v0.15.4
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ server:
67
+ - openresty
68
+ date:
69
+ - Wed, 22 Jan 2020 08:04:38 GMT
70
+ content-type:
71
+ - application/json; charset=utf-8
72
+ content-length:
73
+ - '482'
74
+ connection:
75
+ - close
76
+ x-cache-key:
77
+ - "/data/2.5/weather?lat=-12.88&lon=142.33"
78
+ access-control-allow-origin:
79
+ - "*"
80
+ access-control-allow-credentials:
81
+ - 'true'
82
+ access-control-allow-methods:
83
+ - GET, POST
84
+ body:
85
+ encoding: UTF-8
86
+ string: '{"coord":{"lon":142.33,"lat":-12.88},"weather":[{"id":520,"main":"Rain","description":"light
87
+ intensity shower rain","icon":"09d"}],"base":"stations","main":{"temp":300.15,"feels_like":302.78,"temp_min":300.15,"temp_max":300.15,"pressure":1008,"humidity":78},"visibility":10000,"wind":{"speed":3.6,"deg":270},"clouds":{"all":40},"dt":1579680278,"sys":{"type":1,"id":9509,"country":"AU","sunrise":1579637951,"sunset":1579683865},"timezone":36000,"id":2144209,"name":"Weipa","cod":200}'
88
+ http_version:
89
+ recorded_at: Wed, 22 Jan 2020 08:04:38 GMT
90
+ - request:
91
+ method: get
92
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-12.878&lon=142.327
93
+ body:
94
+ encoding: US-ASCII
95
+ string: ''
96
+ headers:
97
+ User-Agent:
98
+ - Faraday v0.15.4
99
+ response:
100
+ status:
101
+ code: 200
102
+ message: OK
103
+ headers:
104
+ server:
105
+ - openresty
106
+ date:
107
+ - Wed, 22 Jan 2020 08:04:38 GMT
108
+ content-type:
109
+ - application/json; charset=utf-8
110
+ content-length:
111
+ - '482'
112
+ connection:
113
+ - close
114
+ x-cache-key:
115
+ - "/data/2.5/weather?lat=-12.88&lon=142.33"
116
+ access-control-allow-origin:
117
+ - "*"
118
+ access-control-allow-credentials:
119
+ - 'true'
120
+ access-control-allow-methods:
121
+ - GET, POST
122
+ body:
123
+ encoding: UTF-8
124
+ string: '{"coord":{"lon":142.33,"lat":-12.88},"weather":[{"id":520,"main":"Rain","description":"light
125
+ intensity shower rain","icon":"09d"}],"base":"stations","main":{"temp":300.15,"feels_like":302.78,"temp_min":300.15,"temp_max":300.15,"pressure":1008,"humidity":78},"visibility":10000,"wind":{"speed":3.6,"deg":270},"clouds":{"all":40},"dt":1579680278,"sys":{"type":1,"id":9509,"country":"AU","sunrise":1579637951,"sunset":1579683865},"timezone":36000,"id":2144209,"name":"Weipa","cod":200}'
126
+ http_version:
127
+ recorded_at: Wed, 22 Jan 2020 08:04:38 GMT
128
+ - request:
129
+ method: get
130
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-18.866&lon=139.325
131
+ body:
132
+ encoding: US-ASCII
133
+ string: ''
134
+ headers:
135
+ User-Agent:
136
+ - Faraday v0.15.4
137
+ response:
138
+ status:
139
+ code: 200
140
+ message: OK
141
+ headers:
142
+ server:
143
+ - openresty
144
+ date:
145
+ - Wed, 22 Jan 2020 08:04:38 GMT
146
+ content-type:
147
+ - application/json; charset=utf-8
148
+ content-length:
149
+ - '478'
150
+ connection:
151
+ - close
152
+ x-cache-key:
153
+ - "/data/2.5/weather?lat=-18.87&lon=139.32"
154
+ access-control-allow-origin:
155
+ - "*"
156
+ access-control-allow-credentials:
157
+ - 'true'
158
+ access-control-allow-methods:
159
+ - GET, POST
160
+ body:
161
+ encoding: UTF-8
162
+ string: '{"coord":{"lon":139.32,"lat":-18.87},"weather":[{"id":500,"main":"Rain","description":"light
163
+ rain","icon":"10d"}],"base":"model","main":{"temp":301.13,"feels_like":301.06,"temp_min":301.13,"temp_max":301.13,"pressure":1005,"humidity":72,"sea_level":1005,"grnd_level":992},"wind":{"speed":7.16,"deg":322},"rain":{"3h":0.25},"clouds":{"all":87},"dt":1579680278,"sys":{"country":"AU","sunrise":1579638100,"sunset":1579685160},"timezone":36000,"id":7839566,"name":"Burke","cod":200}'
164
+ http_version:
165
+ recorded_at: Wed, 22 Jan 2020 08:04:38 GMT
166
+ - request:
167
+ method: get
168
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-19.358&lon=144.618
169
+ body:
170
+ encoding: US-ASCII
171
+ string: ''
172
+ headers:
173
+ User-Agent:
174
+ - Faraday v0.15.4
175
+ response:
176
+ status:
177
+ code: 200
178
+ message: OK
179
+ headers:
180
+ server:
181
+ - openresty
182
+ date:
183
+ - Wed, 22 Jan 2020 08:04:38 GMT
184
+ content-type:
185
+ - application/json; charset=utf-8
186
+ content-length:
187
+ - '483'
188
+ connection:
189
+ - close
190
+ x-cache-key:
191
+ - "/data/2.5/weather?lat=-19.36&lon=144.62"
192
+ access-control-allow-origin:
193
+ - "*"
194
+ access-control-allow-credentials:
195
+ - 'true'
196
+ access-control-allow-methods:
197
+ - GET, POST
198
+ body:
199
+ encoding: UTF-8
200
+ string: '{"coord":{"lon":144.62,"lat":-19.36},"weather":[{"id":500,"main":"Rain","description":"light
201
+ rain","icon":"10d"}],"base":"model","main":{"temp":297.72,"feels_like":300.17,"temp_min":297.72,"temp_max":297.72,"pressure":1008,"humidity":76,"sea_level":1008,"grnd_level":929},"wind":{"speed":1.82,"deg":123},"rain":{"3h":2.81},"clouds":{"all":99},"dt":1579680279,"sys":{"country":"AU","sunrise":1579636779,"sunset":1579683937},"timezone":36000,"id":2152274,"name":"Queensland","cod":200}'
202
+ http_version:
203
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
204
+ - request:
205
+ method: get
206
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-21.867&lon=115.72
207
+ body:
208
+ encoding: US-ASCII
209
+ string: ''
210
+ headers:
211
+ User-Agent:
212
+ - Faraday v0.15.4
213
+ response:
214
+ status:
215
+ code: 200
216
+ message: OK
217
+ headers:
218
+ server:
219
+ - openresty
220
+ date:
221
+ - Wed, 22 Jan 2020 08:04:39 GMT
222
+ content-type:
223
+ - application/json; charset=utf-8
224
+ content-length:
225
+ - '459'
226
+ connection:
227
+ - close
228
+ x-cache-key:
229
+ - "/data/2.5/weather?lat=-21.87&lon=115.72"
230
+ access-control-allow-origin:
231
+ - "*"
232
+ access-control-allow-credentials:
233
+ - 'true'
234
+ access-control-allow-methods:
235
+ - GET, POST
236
+ body:
237
+ encoding: UTF-8
238
+ string: '{"coord":{"lon":115.72,"lat":-21.87},"weather":[{"id":800,"main":"Clear","description":"clear
239
+ sky","icon":"01d"}],"base":"model","main":{"temp":314.16,"feels_like":309.64,"temp_min":314.16,"temp_max":314.16,"pressure":1005,"humidity":11,"sea_level":1005,"grnd_level":996},"wind":{"speed":4.76,"deg":250},"clouds":{"all":0},"dt":1579680279,"sys":{"country":"AU","sunrise":1579643463,"sunset":1579691128},"timezone":28800,"id":2064155,"name":"Onslow","cod":200}'
240
+ http_version:
241
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
242
+ - request:
243
+ method: get
244
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-21.894&lon=118.222
245
+ body:
246
+ encoding: US-ASCII
247
+ string: ''
248
+ headers:
249
+ User-Agent:
250
+ - Faraday v0.15.4
251
+ response:
252
+ status:
253
+ code: 200
254
+ message: OK
255
+ headers:
256
+ server:
257
+ - openresty
258
+ date:
259
+ - Wed, 22 Jan 2020 08:04:39 GMT
260
+ content-type:
261
+ - application/json; charset=utf-8
262
+ content-length:
263
+ - '462'
264
+ connection:
265
+ - close
266
+ x-cache-key:
267
+ - "/data/2.5/weather?lat=-21.89&lon=118.22"
268
+ access-control-allow-origin:
269
+ - "*"
270
+ access-control-allow-credentials:
271
+ - 'true'
272
+ access-control-allow-methods:
273
+ - GET, POST
274
+ body:
275
+ encoding: UTF-8
276
+ string: '{"coord":{"lon":118.22,"lat":-21.89},"weather":[{"id":800,"main":"Clear","description":"clear
277
+ sky","icon":"01d"}],"base":"model","main":{"temp":312.08,"feels_like":307.23,"temp_min":312.08,"temp_max":312.08,"pressure":1004,"humidity":16,"sea_level":1004,"grnd_level":954},"wind":{"speed":6.44,"deg":321},"clouds":{"all":0},"dt":1579680279,"sys":{"country":"AU","sunrise":1579642860,"sunset":1579690530},"timezone":28800,"id":6354929,"name":"Tom
278
+ Price","cod":200}'
279
+ http_version:
280
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
281
+ - request:
282
+ method: get
283
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-21.857&lon=115.722
284
+ body:
285
+ encoding: US-ASCII
286
+ string: ''
287
+ headers:
288
+ User-Agent:
289
+ - Faraday v0.15.4
290
+ response:
291
+ status:
292
+ code: 200
293
+ message: OK
294
+ headers:
295
+ server:
296
+ - openresty
297
+ date:
298
+ - Wed, 22 Jan 2020 08:04:39 GMT
299
+ content-type:
300
+ - application/json; charset=utf-8
301
+ content-length:
302
+ - '459'
303
+ connection:
304
+ - close
305
+ x-cache-key:
306
+ - "/data/2.5/weather?lat=-21.86&lon=115.72"
307
+ access-control-allow-origin:
308
+ - "*"
309
+ access-control-allow-credentials:
310
+ - 'true'
311
+ access-control-allow-methods:
312
+ - GET, POST
313
+ body:
314
+ encoding: UTF-8
315
+ string: '{"coord":{"lon":115.72,"lat":-21.86},"weather":[{"id":800,"main":"Clear","description":"clear
316
+ sky","icon":"01d"}],"base":"model","main":{"temp":314.16,"feels_like":309.64,"temp_min":314.16,"temp_max":314.16,"pressure":1005,"humidity":11,"sea_level":1005,"grnd_level":996},"wind":{"speed":4.76,"deg":250},"clouds":{"all":0},"dt":1579680279,"sys":{"country":"AU","sunrise":1579643464,"sunset":1579691127},"timezone":28800,"id":2064155,"name":"Onslow","cod":200}'
317
+ http_version:
318
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
319
+ - request:
320
+ method: get
321
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-21.855&lon=115.708
322
+ body:
323
+ encoding: US-ASCII
324
+ string: ''
325
+ headers:
326
+ User-Agent:
327
+ - Faraday v0.15.4
328
+ response:
329
+ status:
330
+ code: 200
331
+ message: OK
332
+ headers:
333
+ server:
334
+ - openresty
335
+ date:
336
+ - Wed, 22 Jan 2020 08:04:39 GMT
337
+ content-type:
338
+ - application/json; charset=utf-8
339
+ content-length:
340
+ - '459'
341
+ connection:
342
+ - close
343
+ x-cache-key:
344
+ - "/data/2.5/weather?lat=-21.86&lon=115.71"
345
+ access-control-allow-origin:
346
+ - "*"
347
+ access-control-allow-credentials:
348
+ - 'true'
349
+ access-control-allow-methods:
350
+ - GET, POST
351
+ body:
352
+ encoding: UTF-8
353
+ string: '{"coord":{"lon":115.71,"lat":-21.86},"weather":[{"id":800,"main":"Clear","description":"clear
354
+ sky","icon":"01d"}],"base":"model","main":{"temp":314.16,"feels_like":309.64,"temp_min":314.16,"temp_max":314.16,"pressure":1005,"humidity":11,"sea_level":1005,"grnd_level":996},"wind":{"speed":4.76,"deg":250},"clouds":{"all":0},"dt":1579680279,"sys":{"country":"AU","sunrise":1579643466,"sunset":1579691130},"timezone":28800,"id":2064155,"name":"Onslow","cod":200}'
355
+ http_version:
356
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
357
+ - request:
358
+ method: get
359
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.087&lon=150.053
360
+ body:
361
+ encoding: US-ASCII
362
+ string: ''
363
+ headers:
364
+ User-Agent:
365
+ - Faraday v0.15.4
366
+ response:
367
+ status:
368
+ code: 200
369
+ message: OK
370
+ headers:
371
+ server:
372
+ - openresty
373
+ date:
374
+ - Wed, 22 Jan 2020 08:04:39 GMT
375
+ content-type:
376
+ - application/json; charset=utf-8
377
+ content-length:
378
+ - '466'
379
+ connection:
380
+ - close
381
+ x-cache-key:
382
+ - "/data/2.5/weather?lat=-30.09&lon=150.05"
383
+ access-control-allow-origin:
384
+ - "*"
385
+ access-control-allow-credentials:
386
+ - 'true'
387
+ access-control-allow-methods:
388
+ - GET, POST
389
+ body:
390
+ encoding: UTF-8
391
+ string: '{"coord":{"lon":150.05,"lat":-30.09},"weather":[{"id":800,"main":"Clear","description":"clear
392
+ sky","icon":"01d"}],"base":"stations","main":{"temp":312.19,"feels_like":308.32,"temp_min":311.48,"temp_max":313.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680279,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634299,"sunset":1579683810},"timezone":39600,"id":2167767,"name":"Edgeroi","cod":200}'
393
+ http_version:
394
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
395
+ - request:
396
+ method: get
397
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.097&lon=150.045
398
+ body:
399
+ encoding: US-ASCII
400
+ string: ''
401
+ headers:
402
+ User-Agent:
403
+ - Faraday v0.15.4
404
+ response:
405
+ status:
406
+ code: 200
407
+ message: OK
408
+ headers:
409
+ server:
410
+ - openresty
411
+ date:
412
+ - Wed, 22 Jan 2020 08:04:39 GMT
413
+ content-type:
414
+ - application/json; charset=utf-8
415
+ content-length:
416
+ - '465'
417
+ connection:
418
+ - close
419
+ x-cache-key:
420
+ - "/data/2.5/weather?lat=-30.1&lon=150.04"
421
+ access-control-allow-origin:
422
+ - "*"
423
+ access-control-allow-credentials:
424
+ - 'true'
425
+ access-control-allow-methods:
426
+ - GET, POST
427
+ body:
428
+ encoding: UTF-8
429
+ string: '{"coord":{"lon":150.04,"lat":-30.1},"weather":[{"id":800,"main":"Clear","description":"clear
430
+ sky","icon":"01d"}],"base":"stations","main":{"temp":312.18,"feels_like":308.31,"temp_min":311.48,"temp_max":313.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680279,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634300,"sunset":1579683813},"timezone":39600,"id":2167767,"name":"Edgeroi","cod":200}'
431
+ http_version:
432
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
433
+ - request:
434
+ method: get
435
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.108&lon=150.036
436
+ body:
437
+ encoding: US-ASCII
438
+ string: ''
439
+ headers:
440
+ User-Agent:
441
+ - Faraday v0.15.4
442
+ response:
443
+ status:
444
+ code: 200
445
+ message: OK
446
+ headers:
447
+ server:
448
+ - openresty
449
+ date:
450
+ - Wed, 22 Jan 2020 08:04:39 GMT
451
+ content-type:
452
+ - application/json; charset=utf-8
453
+ content-length:
454
+ - '466'
455
+ connection:
456
+ - close
457
+ x-cache-key:
458
+ - "/data/2.5/weather?lat=-30.11&lon=150.04"
459
+ access-control-allow-origin:
460
+ - "*"
461
+ access-control-allow-credentials:
462
+ - 'true'
463
+ access-control-allow-methods:
464
+ - GET, POST
465
+ body:
466
+ encoding: UTF-8
467
+ string: '{"coord":{"lon":150.04,"lat":-30.11},"weather":[{"id":800,"main":"Clear","description":"clear
468
+ sky","icon":"01d"}],"base":"stations","main":{"temp":311.82,"feels_like":307.91,"temp_min":311.48,"temp_max":312.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680279,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634299,"sunset":1579683815},"timezone":39600,"id":2167767,"name":"Edgeroi","cod":200}'
469
+ http_version:
470
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
471
+ - request:
472
+ method: get
473
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.106&lon=150.046
474
+ body:
475
+ encoding: US-ASCII
476
+ string: ''
477
+ headers:
478
+ User-Agent:
479
+ - Faraday v0.15.4
480
+ response:
481
+ status:
482
+ code: 200
483
+ message: OK
484
+ headers:
485
+ server:
486
+ - openresty
487
+ date:
488
+ - Wed, 22 Jan 2020 08:04:39 GMT
489
+ content-type:
490
+ - application/json; charset=utf-8
491
+ content-length:
492
+ - '472'
493
+ connection:
494
+ - close
495
+ x-cache-key:
496
+ - "/data/2.5/weather?lat=-30.11&lon=150.05"
497
+ access-control-allow-origin:
498
+ - "*"
499
+ access-control-allow-credentials:
500
+ - 'true'
501
+ access-control-allow-methods:
502
+ - GET, POST
503
+ body:
504
+ encoding: UTF-8
505
+ string: '{"coord":{"lon":150.05,"lat":-30.11},"weather":[{"id":800,"main":"Clear","description":"clear
506
+ sky","icon":"01d"}],"base":"stations","main":{"temp":311.82,"feels_like":307.91,"temp_min":311.48,"temp_max":312.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680279,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634297,"sunset":1579683812},"timezone":39600,"id":2173490,"name":"Bullawa
507
+ Creek","cod":200}'
508
+ http_version:
509
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
510
+ - request:
511
+ method: get
512
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.117&lon=150.038
513
+ body:
514
+ encoding: US-ASCII
515
+ string: ''
516
+ headers:
517
+ User-Agent:
518
+ - Faraday v0.15.4
519
+ response:
520
+ status:
521
+ code: 200
522
+ message: OK
523
+ headers:
524
+ server:
525
+ - openresty
526
+ date:
527
+ - Wed, 22 Jan 2020 08:04:39 GMT
528
+ content-type:
529
+ - application/json; charset=utf-8
530
+ content-length:
531
+ - '472'
532
+ connection:
533
+ - close
534
+ x-cache-key:
535
+ - "/data/2.5/weather?lat=-30.12&lon=150.04"
536
+ access-control-allow-origin:
537
+ - "*"
538
+ access-control-allow-credentials:
539
+ - 'true'
540
+ access-control-allow-methods:
541
+ - GET, POST
542
+ body:
543
+ encoding: UTF-8
544
+ string: '{"coord":{"lon":150.04,"lat":-30.12},"weather":[{"id":800,"main":"Clear","description":"clear
545
+ sky","icon":"01d"}],"base":"stations","main":{"temp":311.82,"feels_like":307.91,"temp_min":311.48,"temp_max":312.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680279,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634298,"sunset":1579683816},"timezone":39600,"id":2173490,"name":"Bullawa
546
+ Creek","cod":200}'
547
+ http_version:
548
+ recorded_at: Wed, 22 Jan 2020 08:04:39 GMT
549
+ - request:
550
+ method: get
551
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.115&lon=150.048
552
+ body:
553
+ encoding: US-ASCII
554
+ string: ''
555
+ headers:
556
+ User-Agent:
557
+ - Faraday v0.15.4
558
+ response:
559
+ status:
560
+ code: 200
561
+ message: OK
562
+ headers:
563
+ server:
564
+ - openresty
565
+ date:
566
+ - Wed, 22 Jan 2020 08:04:40 GMT
567
+ content-type:
568
+ - application/json; charset=utf-8
569
+ content-length:
570
+ - '472'
571
+ connection:
572
+ - close
573
+ x-cache-key:
574
+ - "/data/2.5/weather?lat=-30.11&lon=150.05"
575
+ access-control-allow-origin:
576
+ - "*"
577
+ access-control-allow-credentials:
578
+ - 'true'
579
+ access-control-allow-methods:
580
+ - GET, POST
581
+ body:
582
+ encoding: UTF-8
583
+ string: '{"coord":{"lon":150.05,"lat":-30.11},"weather":[{"id":800,"main":"Clear","description":"clear
584
+ sky","icon":"01d"}],"base":"stations","main":{"temp":311.82,"feels_like":307.91,"temp_min":311.48,"temp_max":312.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680279,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634297,"sunset":1579683812},"timezone":39600,"id":2173490,"name":"Bullawa
585
+ Creek","cod":200}'
586
+ http_version:
587
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
588
+ - request:
589
+ method: get
590
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.127&lon=150.029
591
+ body:
592
+ encoding: US-ASCII
593
+ string: ''
594
+ headers:
595
+ User-Agent:
596
+ - Faraday v0.15.4
597
+ response:
598
+ status:
599
+ code: 200
600
+ message: OK
601
+ headers:
602
+ server:
603
+ - openresty
604
+ date:
605
+ - Wed, 22 Jan 2020 08:04:40 GMT
606
+ content-type:
607
+ - application/json; charset=utf-8
608
+ content-length:
609
+ - '472'
610
+ connection:
611
+ - close
612
+ x-cache-key:
613
+ - "/data/2.5/weather?lat=-30.13&lon=150.03"
614
+ access-control-allow-origin:
615
+ - "*"
616
+ access-control-allow-credentials:
617
+ - 'true'
618
+ access-control-allow-methods:
619
+ - GET, POST
620
+ body:
621
+ encoding: UTF-8
622
+ string: '{"coord":{"lon":150.03,"lat":-30.13},"weather":[{"id":800,"main":"Clear","description":"clear
623
+ sky","icon":"01d"}],"base":"stations","main":{"temp":311.82,"feels_like":307.91,"temp_min":311.48,"temp_max":312.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680280,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634299,"sunset":1579683820},"timezone":39600,"id":2173490,"name":"Bullawa
624
+ Creek","cod":200}'
625
+ http_version:
626
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
627
+ - request:
628
+ method: get
629
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.126&lon=150.04
630
+ body:
631
+ encoding: US-ASCII
632
+ string: ''
633
+ headers:
634
+ User-Agent:
635
+ - Faraday v0.15.4
636
+ response:
637
+ status:
638
+ code: 200
639
+ message: OK
640
+ headers:
641
+ server:
642
+ - openresty
643
+ date:
644
+ - Wed, 22 Jan 2020 08:04:40 GMT
645
+ content-type:
646
+ - application/json; charset=utf-8
647
+ content-length:
648
+ - '472'
649
+ connection:
650
+ - close
651
+ x-cache-key:
652
+ - "/data/2.5/weather?lat=-30.13&lon=150.04"
653
+ access-control-allow-origin:
654
+ - "*"
655
+ access-control-allow-credentials:
656
+ - 'true'
657
+ access-control-allow-methods:
658
+ - GET, POST
659
+ body:
660
+ encoding: UTF-8
661
+ string: '{"coord":{"lon":150.04,"lat":-30.13},"weather":[{"id":800,"main":"Clear","description":"clear
662
+ sky","icon":"01d"}],"base":"stations","main":{"temp":311.82,"feels_like":307.91,"temp_min":311.48,"temp_max":312.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680280,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634297,"sunset":1579683817},"timezone":39600,"id":2173490,"name":"Bullawa
663
+ Creek","cod":200}'
664
+ http_version:
665
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
666
+ - request:
667
+ method: get
668
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.124&lon=150.05
669
+ body:
670
+ encoding: US-ASCII
671
+ string: ''
672
+ headers:
673
+ User-Agent:
674
+ - Faraday v0.15.4
675
+ response:
676
+ status:
677
+ code: 200
678
+ message: OK
679
+ headers:
680
+ server:
681
+ - openresty
682
+ date:
683
+ - Wed, 22 Jan 2020 08:04:40 GMT
684
+ content-type:
685
+ - application/json; charset=utf-8
686
+ content-length:
687
+ - '472'
688
+ connection:
689
+ - close
690
+ x-cache-key:
691
+ - "/data/2.5/weather?lat=-30.12&lon=150.05"
692
+ access-control-allow-origin:
693
+ - "*"
694
+ access-control-allow-credentials:
695
+ - 'true'
696
+ access-control-allow-methods:
697
+ - GET, POST
698
+ body:
699
+ encoding: UTF-8
700
+ string: '{"coord":{"lon":150.05,"lat":-30.12},"weather":[{"id":800,"main":"Clear","description":"clear
701
+ sky","icon":"01d"}],"base":"stations","main":{"temp":311.82,"feels_like":307.91,"temp_min":311.48,"temp_max":312.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680280,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634296,"sunset":1579683814},"timezone":39600,"id":2173490,"name":"Bullawa
702
+ Creek","cod":200}'
703
+ http_version:
704
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
705
+ - request:
706
+ method: get
707
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.12&lon=150.081
708
+ body:
709
+ encoding: US-ASCII
710
+ string: ''
711
+ headers:
712
+ User-Agent:
713
+ - Faraday v0.15.4
714
+ response:
715
+ status:
716
+ code: 200
717
+ message: OK
718
+ headers:
719
+ server:
720
+ - openresty
721
+ date:
722
+ - Wed, 22 Jan 2020 08:04:40 GMT
723
+ content-type:
724
+ - application/json; charset=utf-8
725
+ content-length:
726
+ - '472'
727
+ connection:
728
+ - close
729
+ x-cache-key:
730
+ - "/data/2.5/weather?lat=-30.12&lon=150.08"
731
+ access-control-allow-origin:
732
+ - "*"
733
+ access-control-allow-credentials:
734
+ - 'true'
735
+ access-control-allow-methods:
736
+ - GET, POST
737
+ body:
738
+ encoding: UTF-8
739
+ string: '{"coord":{"lon":150.08,"lat":-30.12},"weather":[{"id":800,"main":"Clear","description":"clear
740
+ sky","icon":"01d"}],"base":"stations","main":{"temp":311.82,"feels_like":307.91,"temp_min":311.48,"temp_max":312.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680280,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634288,"sunset":1579683806},"timezone":39600,"id":2173490,"name":"Bullawa
741
+ Creek","cod":200}'
742
+ http_version:
743
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
744
+ - request:
745
+ method: get
746
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-29.9&lon=151.61
747
+ body:
748
+ encoding: US-ASCII
749
+ string: ''
750
+ headers:
751
+ User-Agent:
752
+ - Faraday v0.15.4
753
+ response:
754
+ status:
755
+ code: 200
756
+ message: OK
757
+ headers:
758
+ server:
759
+ - openresty
760
+ date:
761
+ - Wed, 22 Jan 2020 08:04:40 GMT
762
+ content-type:
763
+ - application/json; charset=utf-8
764
+ content-length:
765
+ - '468'
766
+ connection:
767
+ - close
768
+ x-cache-key:
769
+ - "/data/2.5/weather?lat=-29.9&lon=151.61"
770
+ access-control-allow-origin:
771
+ - "*"
772
+ access-control-allow-credentials:
773
+ - 'true'
774
+ access-control-allow-methods:
775
+ - GET, POST
776
+ body:
777
+ encoding: UTF-8
778
+ string: '{"coord":{"lon":151.61,"lat":-29.9},"weather":[{"id":803,"main":"Clouds","description":"broken
779
+ clouds","icon":"04d"}],"base":"stations","main":{"temp":300.95,"feels_like":300.26,"temp_min":299.26,"temp_max":302.59,"pressure":1011,"humidity":32},"wind":{"speed":0.89,"deg":213,"gust":3.13},"clouds":{"all":73},"dt":1579680280,"sys":{"type":3,"id":2017978,"country":"AU","sunrise":1579633948,"sunset":1579683412},"timezone":39600,"id":2158460,"name":"Maybole","cod":200}'
780
+ http_version:
781
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
782
+ - request:
783
+ method: get
784
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-31.98&lon=149.039
785
+ body:
786
+ encoding: US-ASCII
787
+ string: ''
788
+ headers:
789
+ User-Agent:
790
+ - Faraday v0.15.4
791
+ response:
792
+ status:
793
+ code: 200
794
+ message: OK
795
+ headers:
796
+ server:
797
+ - openresty
798
+ date:
799
+ - Wed, 22 Jan 2020 08:04:40 GMT
800
+ content-type:
801
+ - application/json; charset=utf-8
802
+ content-length:
803
+ - '470'
804
+ connection:
805
+ - close
806
+ x-cache-key:
807
+ - "/data/2.5/weather?lat=-31.98&lon=149.04"
808
+ access-control-allow-origin:
809
+ - "*"
810
+ access-control-allow-credentials:
811
+ - 'true'
812
+ access-control-allow-methods:
813
+ - GET, POST
814
+ body:
815
+ encoding: UTF-8
816
+ string: '{"coord":{"lon":149.04,"lat":-31.98},"weather":[{"id":800,"main":"Clear","description":"clear
817
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.99,"feels_like":302.02,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680280,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634307,"sunset":1579684287},"timezone":39600,"id":2167467,"name":"Elong
818
+ Elong","cod":200}'
819
+ http_version:
820
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
821
+ - request:
822
+ method: get
823
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-31.989&lon=149.04
824
+ body:
825
+ encoding: US-ASCII
826
+ string: ''
827
+ headers:
828
+ User-Agent:
829
+ - Faraday v0.15.4
830
+ response:
831
+ status:
832
+ code: 200
833
+ message: OK
834
+ headers:
835
+ server:
836
+ - openresty
837
+ date:
838
+ - Wed, 22 Jan 2020 08:04:40 GMT
839
+ content-type:
840
+ - application/json; charset=utf-8
841
+ content-length:
842
+ - '470'
843
+ connection:
844
+ - close
845
+ x-cache-key:
846
+ - "/data/2.5/weather?lat=-31.99&lon=149.04"
847
+ access-control-allow-origin:
848
+ - "*"
849
+ access-control-allow-credentials:
850
+ - 'true'
851
+ access-control-allow-methods:
852
+ - GET, POST
853
+ body:
854
+ encoding: UTF-8
855
+ string: '{"coord":{"lon":149.04,"lat":-31.99},"weather":[{"id":800,"main":"Clear","description":"clear
856
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.99,"feels_like":302.02,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680280,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634305,"sunset":1579684289},"timezone":39600,"id":2167467,"name":"Elong
857
+ Elong","cod":200}'
858
+ http_version:
859
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
860
+ - request:
861
+ method: get
862
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-31.987&lon=149.052
863
+ body:
864
+ encoding: US-ASCII
865
+ string: ''
866
+ headers:
867
+ User-Agent:
868
+ - Faraday v0.15.4
869
+ response:
870
+ status:
871
+ code: 200
872
+ message: OK
873
+ headers:
874
+ server:
875
+ - openresty
876
+ date:
877
+ - Wed, 22 Jan 2020 08:04:40 GMT
878
+ content-type:
879
+ - application/json; charset=utf-8
880
+ content-length:
881
+ - '467'
882
+ connection:
883
+ - close
884
+ x-cache-key:
885
+ - "/data/2.5/weather?lat=-31.99&lon=149.05"
886
+ access-control-allow-origin:
887
+ - "*"
888
+ access-control-allow-credentials:
889
+ - 'true'
890
+ access-control-allow-methods:
891
+ - GET, POST
892
+ body:
893
+ encoding: UTF-8
894
+ string: '{"coord":{"lon":149.05,"lat":-31.99},"weather":[{"id":800,"main":"Clear","description":"clear
895
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.98,"feels_like":302,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680280,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634303,"sunset":1579684286},"timezone":39600,"id":2167467,"name":"Elong
896
+ Elong","cod":200}'
897
+ http_version:
898
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
899
+ - request:
900
+ method: get
901
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-31.986&lon=149.063
902
+ body:
903
+ encoding: US-ASCII
904
+ string: ''
905
+ headers:
906
+ User-Agent:
907
+ - Faraday v0.15.4
908
+ response:
909
+ status:
910
+ code: 200
911
+ message: OK
912
+ headers:
913
+ server:
914
+ - openresty
915
+ date:
916
+ - Wed, 22 Jan 2020 08:04:40 GMT
917
+ content-type:
918
+ - application/json; charset=utf-8
919
+ content-length:
920
+ - '470'
921
+ connection:
922
+ - close
923
+ x-cache-key:
924
+ - "/data/2.5/weather?lat=-31.99&lon=149.06"
925
+ access-control-allow-origin:
926
+ - "*"
927
+ access-control-allow-credentials:
928
+ - 'true'
929
+ access-control-allow-methods:
930
+ - GET, POST
931
+ body:
932
+ encoding: UTF-8
933
+ string: '{"coord":{"lon":149.06,"lat":-31.99},"weather":[{"id":800,"main":"Clear","description":"clear
934
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.97,"feels_like":301.99,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680280,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634301,"sunset":1579684284},"timezone":39600,"id":2167467,"name":"Elong
935
+ Elong","cod":200}'
936
+ http_version:
937
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
938
+ - request:
939
+ method: get
940
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-31.998&lon=149.042
941
+ body:
942
+ encoding: US-ASCII
943
+ string: ''
944
+ headers:
945
+ User-Agent:
946
+ - Faraday v0.15.4
947
+ response:
948
+ status:
949
+ code: 200
950
+ message: OK
951
+ headers:
952
+ server:
953
+ - openresty
954
+ date:
955
+ - Wed, 22 Jan 2020 08:04:40 GMT
956
+ content-type:
957
+ - application/json; charset=utf-8
958
+ content-length:
959
+ - '467'
960
+ connection:
961
+ - close
962
+ x-cache-key:
963
+ - "/data/2.5/weather?lat=-32&lon=149.04"
964
+ access-control-allow-origin:
965
+ - "*"
966
+ access-control-allow-credentials:
967
+ - 'true'
968
+ access-control-allow-methods:
969
+ - GET, POST
970
+ body:
971
+ encoding: UTF-8
972
+ string: '{"coord":{"lon":149.04,"lat":-32},"weather":[{"id":800,"main":"Clear","description":"clear
973
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.99,"feels_like":302.02,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680280,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634304,"sunset":1579684290},"timezone":39600,"id":2167467,"name":"Elong
974
+ Elong","cod":200}'
975
+ http_version:
976
+ recorded_at: Wed, 22 Jan 2020 08:04:40 GMT
977
+ - request:
978
+ method: get
979
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-31.995&lon=149.064
980
+ body:
981
+ encoding: US-ASCII
982
+ string: ''
983
+ headers:
984
+ User-Agent:
985
+ - Faraday v0.15.4
986
+ response:
987
+ status:
988
+ code: 200
989
+ message: OK
990
+ headers:
991
+ server:
992
+ - openresty
993
+ date:
994
+ - Wed, 22 Jan 2020 08:04:41 GMT
995
+ content-type:
996
+ - application/json; charset=utf-8
997
+ content-length:
998
+ - '467'
999
+ connection:
1000
+ - close
1001
+ x-cache-key:
1002
+ - "/data/2.5/weather?lat=-32&lon=149.06"
1003
+ access-control-allow-origin:
1004
+ - "*"
1005
+ access-control-allow-credentials:
1006
+ - 'true'
1007
+ access-control-allow-methods:
1008
+ - GET, POST
1009
+ body:
1010
+ encoding: UTF-8
1011
+ string: '{"coord":{"lon":149.06,"lat":-32},"weather":[{"id":800,"main":"Clear","description":"clear
1012
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.97,"feels_like":301.99,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634299,"sunset":1579684285},"timezone":39600,"id":2167467,"name":"Elong
1013
+ Elong","cod":200}'
1014
+ http_version:
1015
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1016
+ - request:
1017
+ method: get
1018
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-31.994&lon=149.075
1019
+ body:
1020
+ encoding: US-ASCII
1021
+ string: ''
1022
+ headers:
1023
+ User-Agent:
1024
+ - Faraday v0.15.4
1025
+ response:
1026
+ status:
1027
+ code: 200
1028
+ message: OK
1029
+ headers:
1030
+ server:
1031
+ - openresty
1032
+ date:
1033
+ - Wed, 22 Jan 2020 08:04:41 GMT
1034
+ content-type:
1035
+ - application/json; charset=utf-8
1036
+ content-length:
1037
+ - '470'
1038
+ connection:
1039
+ - close
1040
+ x-cache-key:
1041
+ - "/data/2.5/weather?lat=-31.99&lon=149.07"
1042
+ access-control-allow-origin:
1043
+ - "*"
1044
+ access-control-allow-credentials:
1045
+ - 'true'
1046
+ access-control-allow-methods:
1047
+ - GET, POST
1048
+ body:
1049
+ encoding: UTF-8
1050
+ string: '{"coord":{"lon":149.07,"lat":-31.99},"weather":[{"id":800,"main":"Clear","description":"clear
1051
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.97,"feels_like":301.99,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634298,"sunset":1579684281},"timezone":39600,"id":2167467,"name":"Elong
1052
+ Elong","cod":200}'
1053
+ http_version:
1054
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1055
+ - request:
1056
+ method: get
1057
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.007&lon=149.044
1058
+ body:
1059
+ encoding: US-ASCII
1060
+ string: ''
1061
+ headers:
1062
+ User-Agent:
1063
+ - Faraday v0.15.4
1064
+ response:
1065
+ status:
1066
+ code: 200
1067
+ message: OK
1068
+ headers:
1069
+ server:
1070
+ - openresty
1071
+ date:
1072
+ - Wed, 22 Jan 2020 08:04:41 GMT
1073
+ content-type:
1074
+ - application/json; charset=utf-8
1075
+ content-length:
1076
+ - '467'
1077
+ connection:
1078
+ - close
1079
+ x-cache-key:
1080
+ - "/data/2.5/weather?lat=-32.01&lon=149.04"
1081
+ access-control-allow-origin:
1082
+ - "*"
1083
+ access-control-allow-credentials:
1084
+ - 'true'
1085
+ access-control-allow-methods:
1086
+ - GET, POST
1087
+ body:
1088
+ encoding: UTF-8
1089
+ string: '{"coord":{"lon":149.04,"lat":-32.01},"weather":[{"id":800,"main":"Clear","description":"clear
1090
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.98,"feels_like":302,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634303,"sunset":1579684291},"timezone":39600,"id":2167467,"name":"Elong
1091
+ Elong","cod":200}'
1092
+ http_version:
1093
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1094
+ - request:
1095
+ method: get
1096
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.006&lon=149.055
1097
+ body:
1098
+ encoding: US-ASCII
1099
+ string: ''
1100
+ headers:
1101
+ User-Agent:
1102
+ - Faraday v0.15.4
1103
+ response:
1104
+ status:
1105
+ code: 200
1106
+ message: OK
1107
+ headers:
1108
+ server:
1109
+ - openresty
1110
+ date:
1111
+ - Wed, 22 Jan 2020 08:04:41 GMT
1112
+ content-type:
1113
+ - application/json; charset=utf-8
1114
+ content-length:
1115
+ - '470'
1116
+ connection:
1117
+ - close
1118
+ x-cache-key:
1119
+ - "/data/2.5/weather?lat=-32.01&lon=149.06"
1120
+ access-control-allow-origin:
1121
+ - "*"
1122
+ access-control-allow-credentials:
1123
+ - 'true'
1124
+ access-control-allow-methods:
1125
+ - GET, POST
1126
+ body:
1127
+ encoding: UTF-8
1128
+ string: '{"coord":{"lon":149.06,"lat":-32.01},"weather":[{"id":800,"main":"Clear","description":"clear
1129
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.97,"feels_like":301.99,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634298,"sunset":1579684286},"timezone":39600,"id":2167467,"name":"Elong
1130
+ Elong","cod":200}'
1131
+ http_version:
1132
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1133
+ - request:
1134
+ method: get
1135
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.004&lon=149.066
1136
+ body:
1137
+ encoding: US-ASCII
1138
+ string: ''
1139
+ headers:
1140
+ User-Agent:
1141
+ - Faraday v0.15.4
1142
+ response:
1143
+ status:
1144
+ code: 200
1145
+ message: OK
1146
+ headers:
1147
+ server:
1148
+ - openresty
1149
+ date:
1150
+ - Wed, 22 Jan 2020 08:04:41 GMT
1151
+ content-type:
1152
+ - application/json; charset=utf-8
1153
+ content-length:
1154
+ - '467'
1155
+ connection:
1156
+ - close
1157
+ x-cache-key:
1158
+ - "/data/2.5/weather?lat=-32&lon=149.07"
1159
+ access-control-allow-origin:
1160
+ - "*"
1161
+ access-control-allow-credentials:
1162
+ - 'true'
1163
+ access-control-allow-methods:
1164
+ - GET, POST
1165
+ body:
1166
+ encoding: UTF-8
1167
+ string: '{"coord":{"lon":149.07,"lat":-32},"weather":[{"id":800,"main":"Clear","description":"clear
1168
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.97,"feels_like":301.99,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634297,"sunset":1579684283},"timezone":39600,"id":2167467,"name":"Elong
1169
+ Elong","cod":200}'
1170
+ http_version:
1171
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1172
+ - request:
1173
+ method: get
1174
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.003&lon=149.077
1175
+ body:
1176
+ encoding: US-ASCII
1177
+ string: ''
1178
+ headers:
1179
+ User-Agent:
1180
+ - Faraday v0.15.4
1181
+ response:
1182
+ status:
1183
+ code: 200
1184
+ message: OK
1185
+ headers:
1186
+ server:
1187
+ - openresty
1188
+ date:
1189
+ - Wed, 22 Jan 2020 08:04:41 GMT
1190
+ content-type:
1191
+ - application/json; charset=utf-8
1192
+ content-length:
1193
+ - '467'
1194
+ connection:
1195
+ - close
1196
+ x-cache-key:
1197
+ - "/data/2.5/weather?lat=-32&lon=149.08"
1198
+ access-control-allow-origin:
1199
+ - "*"
1200
+ access-control-allow-credentials:
1201
+ - 'true'
1202
+ access-control-allow-methods:
1203
+ - GET, POST
1204
+ body:
1205
+ encoding: UTF-8
1206
+ string: '{"coord":{"lon":149.08,"lat":-32},"weather":[{"id":800,"main":"Clear","description":"clear
1207
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.96,"feels_like":301.98,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634295,"sunset":1579684280},"timezone":39600,"id":2167467,"name":"Elong
1208
+ Elong","cod":200}'
1209
+ http_version:
1210
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1211
+ - request:
1212
+ method: get
1213
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.013&lon=149.05
1214
+ body:
1215
+ encoding: US-ASCII
1216
+ string: ''
1217
+ headers:
1218
+ User-Agent:
1219
+ - Faraday v0.15.4
1220
+ response:
1221
+ status:
1222
+ code: 200
1223
+ message: OK
1224
+ headers:
1225
+ server:
1226
+ - openresty
1227
+ date:
1228
+ - Wed, 22 Jan 2020 08:04:41 GMT
1229
+ content-type:
1230
+ - application/json; charset=utf-8
1231
+ content-length:
1232
+ - '467'
1233
+ connection:
1234
+ - close
1235
+ x-cache-key:
1236
+ - "/data/2.5/weather?lat=-32.01&lon=149.05"
1237
+ access-control-allow-origin:
1238
+ - "*"
1239
+ access-control-allow-credentials:
1240
+ - 'true'
1241
+ access-control-allow-methods:
1242
+ - GET, POST
1243
+ body:
1244
+ encoding: UTF-8
1245
+ string: '{"coord":{"lon":149.05,"lat":-32.01},"weather":[{"id":800,"main":"Clear","description":"clear
1246
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.98,"feels_like":302,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634301,"sunset":1579684289},"timezone":39600,"id":2167467,"name":"Elong
1247
+ Elong","cod":200}'
1248
+ http_version:
1249
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1250
+ - request:
1251
+ method: get
1252
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.011&lon=149.062
1253
+ body:
1254
+ encoding: US-ASCII
1255
+ string: ''
1256
+ headers:
1257
+ User-Agent:
1258
+ - Faraday v0.15.4
1259
+ response:
1260
+ status:
1261
+ code: 200
1262
+ message: OK
1263
+ headers:
1264
+ server:
1265
+ - openresty
1266
+ date:
1267
+ - Wed, 22 Jan 2020 08:04:41 GMT
1268
+ content-type:
1269
+ - application/json; charset=utf-8
1270
+ content-length:
1271
+ - '470'
1272
+ connection:
1273
+ - close
1274
+ x-cache-key:
1275
+ - "/data/2.5/weather?lat=-32.01&lon=149.06"
1276
+ access-control-allow-origin:
1277
+ - "*"
1278
+ access-control-allow-credentials:
1279
+ - 'true'
1280
+ access-control-allow-methods:
1281
+ - GET, POST
1282
+ body:
1283
+ encoding: UTF-8
1284
+ string: '{"coord":{"lon":149.06,"lat":-32.01},"weather":[{"id":800,"main":"Clear","description":"clear
1285
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.97,"feels_like":301.99,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634298,"sunset":1579684286},"timezone":39600,"id":2167467,"name":"Elong
1286
+ Elong","cod":200}'
1287
+ http_version:
1288
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1289
+ - request:
1290
+ method: get
1291
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.01&lon=149.073
1292
+ body:
1293
+ encoding: US-ASCII
1294
+ string: ''
1295
+ headers:
1296
+ User-Agent:
1297
+ - Faraday v0.15.4
1298
+ response:
1299
+ status:
1300
+ code: 200
1301
+ message: OK
1302
+ headers:
1303
+ server:
1304
+ - openresty
1305
+ date:
1306
+ - Wed, 22 Jan 2020 08:04:41 GMT
1307
+ content-type:
1308
+ - application/json; charset=utf-8
1309
+ content-length:
1310
+ - '470'
1311
+ connection:
1312
+ - close
1313
+ x-cache-key:
1314
+ - "/data/2.5/weather?lat=-32.01&lon=149.07"
1315
+ access-control-allow-origin:
1316
+ - "*"
1317
+ access-control-allow-credentials:
1318
+ - 'true'
1319
+ access-control-allow-methods:
1320
+ - GET, POST
1321
+ body:
1322
+ encoding: UTF-8
1323
+ string: '{"coord":{"lon":149.07,"lat":-32.01},"weather":[{"id":800,"main":"Clear","description":"clear
1324
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.96,"feels_like":301.98,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634296,"sunset":1579684284},"timezone":39600,"id":2167467,"name":"Elong
1325
+ Elong","cod":200}'
1326
+ http_version:
1327
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1328
+ - request:
1329
+ method: get
1330
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.022&lon=149.052
1331
+ body:
1332
+ encoding: US-ASCII
1333
+ string: ''
1334
+ headers:
1335
+ User-Agent:
1336
+ - Faraday v0.15.4
1337
+ response:
1338
+ status:
1339
+ code: 200
1340
+ message: OK
1341
+ headers:
1342
+ server:
1343
+ - openresty
1344
+ date:
1345
+ - Wed, 22 Jan 2020 08:04:41 GMT
1346
+ content-type:
1347
+ - application/json; charset=utf-8
1348
+ content-length:
1349
+ - '467'
1350
+ connection:
1351
+ - close
1352
+ x-cache-key:
1353
+ - "/data/2.5/weather?lat=-32.02&lon=149.05"
1354
+ access-control-allow-origin:
1355
+ - "*"
1356
+ access-control-allow-credentials:
1357
+ - 'true'
1358
+ access-control-allow-methods:
1359
+ - GET, POST
1360
+ body:
1361
+ encoding: UTF-8
1362
+ string: '{"coord":{"lon":149.05,"lat":-32.02},"weather":[{"id":800,"main":"Clear","description":"clear
1363
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.98,"feels_like":302,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634299,"sunset":1579684290},"timezone":39600,"id":2167467,"name":"Elong
1364
+ Elong","cod":200}'
1365
+ http_version:
1366
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1367
+ - request:
1368
+ method: get
1369
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.02&lon=149.063
1370
+ body:
1371
+ encoding: US-ASCII
1372
+ string: ''
1373
+ headers:
1374
+ User-Agent:
1375
+ - Faraday v0.15.4
1376
+ response:
1377
+ status:
1378
+ code: 200
1379
+ message: OK
1380
+ headers:
1381
+ server:
1382
+ - openresty
1383
+ date:
1384
+ - Wed, 22 Jan 2020 08:04:41 GMT
1385
+ content-type:
1386
+ - application/json; charset=utf-8
1387
+ content-length:
1388
+ - '470'
1389
+ connection:
1390
+ - close
1391
+ x-cache-key:
1392
+ - "/data/2.5/weather?lat=-32.02&lon=149.06"
1393
+ access-control-allow-origin:
1394
+ - "*"
1395
+ access-control-allow-credentials:
1396
+ - 'true'
1397
+ access-control-allow-methods:
1398
+ - GET, POST
1399
+ body:
1400
+ encoding: UTF-8
1401
+ string: '{"coord":{"lon":149.06,"lat":-32.02},"weather":[{"id":800,"main":"Clear","description":"clear
1402
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.97,"feels_like":301.99,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680281,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634297,"sunset":1579684288},"timezone":39600,"id":2167467,"name":"Elong
1403
+ Elong","cod":200}'
1404
+ http_version:
1405
+ recorded_at: Wed, 22 Jan 2020 08:04:41 GMT
1406
+ - request:
1407
+ method: get
1408
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.541&lon=150.44
1409
+ body:
1410
+ encoding: US-ASCII
1411
+ string: ''
1412
+ headers:
1413
+ User-Agent:
1414
+ - Faraday v0.15.4
1415
+ response:
1416
+ status:
1417
+ code: 200
1418
+ message: OK
1419
+ headers:
1420
+ server:
1421
+ - openresty
1422
+ date:
1423
+ - Wed, 22 Jan 2020 08:04:42 GMT
1424
+ content-type:
1425
+ - application/json; charset=utf-8
1426
+ content-length:
1427
+ - '458'
1428
+ connection:
1429
+ - close
1430
+ x-cache-key:
1431
+ - "/data/2.5/weather?lat=-32.54&lon=150.44"
1432
+ access-control-allow-origin:
1433
+ - "*"
1434
+ access-control-allow-credentials:
1435
+ - 'true'
1436
+ access-control-allow-methods:
1437
+ - GET, POST
1438
+ body:
1439
+ encoding: UTF-8
1440
+ string: '{"coord":{"lon":150.44,"lat":-32.54},"weather":[{"id":800,"main":"Clear","description":"clear
1441
+ sky","icon":"01d"}],"base":"model","main":{"temp":299.06,"feels_like":297.75,"temp_min":299.06,"temp_max":299.06,"pressure":1007,"humidity":31,"sea_level":1007,"grnd_level":965},"wind":{"speed":1.03,"deg":1},"clouds":{"all":0},"dt":1579680282,"sys":{"country":"AU","sunrise":1579633899,"sunset":1579684023},"timezone":39600,"id":2177270,"name":"Baerami","cod":200}'
1442
+ http_version:
1443
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1444
+ - request:
1445
+ method: get
1446
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.54&lon=150.451
1447
+ body:
1448
+ encoding: US-ASCII
1449
+ string: ''
1450
+ headers:
1451
+ User-Agent:
1452
+ - Faraday v0.15.4
1453
+ response:
1454
+ status:
1455
+ code: 200
1456
+ message: OK
1457
+ headers:
1458
+ server:
1459
+ - openresty
1460
+ date:
1461
+ - Wed, 22 Jan 2020 08:04:42 GMT
1462
+ content-type:
1463
+ - application/json; charset=utf-8
1464
+ content-length:
1465
+ - '458'
1466
+ connection:
1467
+ - close
1468
+ x-cache-key:
1469
+ - "/data/2.5/weather?lat=-32.54&lon=150.45"
1470
+ access-control-allow-origin:
1471
+ - "*"
1472
+ access-control-allow-credentials:
1473
+ - 'true'
1474
+ access-control-allow-methods:
1475
+ - GET, POST
1476
+ body:
1477
+ encoding: UTF-8
1478
+ string: '{"coord":{"lon":150.45,"lat":-32.54},"weather":[{"id":800,"main":"Clear","description":"clear
1479
+ sky","icon":"01d"}],"base":"model","main":{"temp":299.06,"feels_like":297.75,"temp_min":299.06,"temp_max":299.06,"pressure":1007,"humidity":31,"sea_level":1007,"grnd_level":965},"wind":{"speed":1.03,"deg":1},"clouds":{"all":0},"dt":1579680282,"sys":{"country":"AU","sunrise":1579633896,"sunset":1579684021},"timezone":39600,"id":2177270,"name":"Baerami","cod":200}'
1480
+ http_version:
1481
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1482
+ - request:
1483
+ method: get
1484
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.632&lon=150.178
1485
+ body:
1486
+ encoding: US-ASCII
1487
+ string: ''
1488
+ headers:
1489
+ User-Agent:
1490
+ - Faraday v0.15.4
1491
+ response:
1492
+ status:
1493
+ code: 200
1494
+ message: OK
1495
+ headers:
1496
+ server:
1497
+ - openresty
1498
+ date:
1499
+ - Wed, 22 Jan 2020 08:04:42 GMT
1500
+ content-type:
1501
+ - application/json; charset=utf-8
1502
+ content-length:
1503
+ - '464'
1504
+ connection:
1505
+ - close
1506
+ x-cache-key:
1507
+ - "/data/2.5/weather?lat=-32.63&lon=150.18"
1508
+ access-control-allow-origin:
1509
+ - "*"
1510
+ access-control-allow-credentials:
1511
+ - 'true'
1512
+ access-control-allow-methods:
1513
+ - GET, POST
1514
+ body:
1515
+ encoding: UTF-8
1516
+ string: '{"coord":{"lon":150.18,"lat":-32.63},"weather":[{"id":800,"main":"Clear","description":"clear
1517
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.3,"feels_like":305.19,"temp_min":306.48,"temp_max":308.15,"pressure":1006,"humidity":29},"visibility":10000,"wind":{"speed":4.6,"deg":320},"clouds":{"all":0},"dt":1579680282,"sys":{"type":1,"id":9547,"country":"AU","sunrise":1579633950,"sunset":1579684097},"timezone":39600,"id":2154387,"name":"Olinda","cod":200}'
1518
+ http_version:
1519
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1520
+ - request:
1521
+ method: get
1522
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.642&lon=150.169
1523
+ body:
1524
+ encoding: US-ASCII
1525
+ string: ''
1526
+ headers:
1527
+ User-Agent:
1528
+ - Faraday v0.15.4
1529
+ response:
1530
+ status:
1531
+ code: 200
1532
+ message: OK
1533
+ headers:
1534
+ server:
1535
+ - openresty
1536
+ date:
1537
+ - Wed, 22 Jan 2020 08:04:42 GMT
1538
+ content-type:
1539
+ - application/json; charset=utf-8
1540
+ content-length:
1541
+ - '464'
1542
+ connection:
1543
+ - close
1544
+ x-cache-key:
1545
+ - "/data/2.5/weather?lat=-32.64&lon=150.17"
1546
+ access-control-allow-origin:
1547
+ - "*"
1548
+ access-control-allow-credentials:
1549
+ - 'true'
1550
+ access-control-allow-methods:
1551
+ - GET, POST
1552
+ body:
1553
+ encoding: UTF-8
1554
+ string: '{"coord":{"lon":150.17,"lat":-32.64},"weather":[{"id":800,"main":"Clear","description":"clear
1555
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.3,"feels_like":305.19,"temp_min":306.48,"temp_max":308.15,"pressure":1006,"humidity":29},"visibility":10000,"wind":{"speed":4.6,"deg":320},"clouds":{"all":0},"dt":1579680282,"sys":{"type":1,"id":9547,"country":"AU","sunrise":1579633951,"sunset":1579684101},"timezone":39600,"id":2154387,"name":"Olinda","cod":200}'
1556
+ http_version:
1557
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1558
+ - request:
1559
+ method: get
1560
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.641&lon=150.18
1561
+ body:
1562
+ encoding: US-ASCII
1563
+ string: ''
1564
+ headers:
1565
+ User-Agent:
1566
+ - Faraday v0.15.4
1567
+ response:
1568
+ status:
1569
+ code: 200
1570
+ message: OK
1571
+ headers:
1572
+ server:
1573
+ - openresty
1574
+ date:
1575
+ - Wed, 22 Jan 2020 08:04:42 GMT
1576
+ content-type:
1577
+ - application/json; charset=utf-8
1578
+ content-length:
1579
+ - '464'
1580
+ connection:
1581
+ - close
1582
+ x-cache-key:
1583
+ - "/data/2.5/weather?lat=-32.64&lon=150.18"
1584
+ access-control-allow-origin:
1585
+ - "*"
1586
+ access-control-allow-credentials:
1587
+ - 'true'
1588
+ access-control-allow-methods:
1589
+ - GET, POST
1590
+ body:
1591
+ encoding: UTF-8
1592
+ string: '{"coord":{"lon":150.18,"lat":-32.64},"weather":[{"id":800,"main":"Clear","description":"clear
1593
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.3,"feels_like":305.19,"temp_min":306.48,"temp_max":308.15,"pressure":1006,"humidity":29},"visibility":10000,"wind":{"speed":4.6,"deg":320},"clouds":{"all":0},"dt":1579680282,"sys":{"type":1,"id":9547,"country":"AU","sunrise":1579633948,"sunset":1579684098},"timezone":39600,"id":2154387,"name":"Olinda","cod":200}'
1594
+ http_version:
1595
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1596
+ - request:
1597
+ method: get
1598
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.639&lon=150.191
1599
+ body:
1600
+ encoding: US-ASCII
1601
+ string: ''
1602
+ headers:
1603
+ User-Agent:
1604
+ - Faraday v0.15.4
1605
+ response:
1606
+ status:
1607
+ code: 200
1608
+ message: OK
1609
+ headers:
1610
+ server:
1611
+ - openresty
1612
+ date:
1613
+ - Wed, 22 Jan 2020 08:04:42 GMT
1614
+ content-type:
1615
+ - application/json; charset=utf-8
1616
+ content-length:
1617
+ - '464'
1618
+ connection:
1619
+ - close
1620
+ x-cache-key:
1621
+ - "/data/2.5/weather?lat=-32.64&lon=150.19"
1622
+ access-control-allow-origin:
1623
+ - "*"
1624
+ access-control-allow-credentials:
1625
+ - 'true'
1626
+ access-control-allow-methods:
1627
+ - GET, POST
1628
+ body:
1629
+ encoding: UTF-8
1630
+ string: '{"coord":{"lon":150.19,"lat":-32.64},"weather":[{"id":800,"main":"Clear","description":"clear
1631
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.3,"feels_like":305.19,"temp_min":306.48,"temp_max":308.15,"pressure":1006,"humidity":29},"visibility":10000,"wind":{"speed":4.6,"deg":320},"clouds":{"all":0},"dt":1579680282,"sys":{"type":1,"id":9547,"country":"AU","sunrise":1579633946,"sunset":1579684096},"timezone":39600,"id":2154387,"name":"Olinda","cod":200}'
1632
+ http_version:
1633
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1634
+ - request:
1635
+ method: get
1636
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-32.663&lon=150.872
1637
+ body:
1638
+ encoding: US-ASCII
1639
+ string: ''
1640
+ headers:
1641
+ User-Agent:
1642
+ - Faraday v0.15.4
1643
+ response:
1644
+ status:
1645
+ code: 200
1646
+ message: OK
1647
+ headers:
1648
+ server:
1649
+ - openresty
1650
+ date:
1651
+ - Wed, 22 Jan 2020 08:04:42 GMT
1652
+ content-type:
1653
+ - application/json; charset=utf-8
1654
+ content-length:
1655
+ - '463'
1656
+ connection:
1657
+ - close
1658
+ x-cache-key:
1659
+ - "/data/2.5/weather?lat=-32.66&lon=150.87"
1660
+ access-control-allow-origin:
1661
+ - "*"
1662
+ access-control-allow-credentials:
1663
+ - 'true'
1664
+ access-control-allow-methods:
1665
+ - GET, POST
1666
+ body:
1667
+ encoding: UTF-8
1668
+ string: '{"coord":{"lon":150.87,"lat":-32.66},"weather":[{"id":800,"main":"Clear","description":"clear
1669
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.04,"feels_like":305.47,"temp_min":307.04,"temp_max":307.04,"pressure":999,"humidity":32},"wind":{"speed":4.47,"deg":140,"gust":7.6},"clouds":{"all":0},"dt":1579680282,"sys":{"type":3,"id":2013427,"country":"AU","sunrise":1579633780,"sunset":1579683936},"timezone":39600,"id":7839771,"name":"Singleton","cod":200}'
1670
+ http_version:
1671
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1672
+ - request:
1673
+ method: get
1674
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-33.279&lon=150.416
1675
+ body:
1676
+ encoding: US-ASCII
1677
+ string: ''
1678
+ headers:
1679
+ User-Agent:
1680
+ - Faraday v0.15.4
1681
+ response:
1682
+ status:
1683
+ code: 200
1684
+ message: OK
1685
+ headers:
1686
+ server:
1687
+ - openresty
1688
+ date:
1689
+ - Wed, 22 Jan 2020 08:04:42 GMT
1690
+ content-type:
1691
+ - application/json; charset=utf-8
1692
+ content-length:
1693
+ - '466'
1694
+ connection:
1695
+ - close
1696
+ x-cache-key:
1697
+ - "/data/2.5/weather?lat=-33.28&lon=150.42"
1698
+ access-control-allow-origin:
1699
+ - "*"
1700
+ access-control-allow-credentials:
1701
+ - 'true'
1702
+ access-control-allow-methods:
1703
+ - GET, POST
1704
+ body:
1705
+ encoding: UTF-8
1706
+ string: '{"coord":{"lon":150.42,"lat":-33.28},"weather":[{"id":800,"main":"Clear","description":"clear
1707
+ sky","icon":"01d"}],"base":"stations","main":{"temp":304.05,"feels_like":302.03,"temp_min":301.48,"temp_max":305.15,"pressure":1003,"humidity":43},"visibility":10000,"wind":{"speed":6.2,"deg":100},"clouds":{"all":0},"dt":1579680282,"sys":{"type":1,"id":9599,"country":"AU","sunrise":1579633807,"sunset":1579684124},"timezone":39600,"id":7839746,"name":"Lithgow","cod":200}'
1708
+ http_version:
1709
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1710
+ - request:
1711
+ method: get
1712
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-34.463&lon=150.877
1713
+ body:
1714
+ encoding: US-ASCII
1715
+ string: ''
1716
+ headers:
1717
+ User-Agent:
1718
+ - Faraday v0.15.4
1719
+ response:
1720
+ status:
1721
+ code: 200
1722
+ message: OK
1723
+ headers:
1724
+ server:
1725
+ - openresty
1726
+ date:
1727
+ - Wed, 22 Jan 2020 08:04:42 GMT
1728
+ content-type:
1729
+ - application/json; charset=utf-8
1730
+ content-length:
1731
+ - '469'
1732
+ connection:
1733
+ - close
1734
+ x-cache-key:
1735
+ - "/data/2.5/weather?lat=-34.46&lon=150.88"
1736
+ access-control-allow-origin:
1737
+ - "*"
1738
+ access-control-allow-credentials:
1739
+ - 'true'
1740
+ access-control-allow-methods:
1741
+ - GET, POST
1742
+ body:
1743
+ encoding: UTF-8
1744
+ string: '{"coord":{"lon":150.88,"lat":-34.46},"weather":[{"id":801,"main":"Clouds","description":"few
1745
+ clouds","icon":"02d"}],"base":"stations","main":{"temp":302.13,"feels_like":300.02,"temp_min":299.26,"temp_max":303.71,"pressure":1004,"humidity":58},"visibility":10000,"wind":{"speed":8.2,"deg":50},"clouds":{"all":20},"dt":1579680282,"sys":{"type":1,"id":9600,"country":"AU","sunrise":1579633539,"sunset":1579684172},"timezone":39600,"id":2169990,"name":"Cringila","cod":200}'
1746
+ http_version:
1747
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1748
+ - request:
1749
+ method: get
1750
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-34.736&lon=150.298
1751
+ body:
1752
+ encoding: US-ASCII
1753
+ string: ''
1754
+ headers:
1755
+ User-Agent:
1756
+ - Faraday v0.15.4
1757
+ response:
1758
+ status:
1759
+ code: 200
1760
+ message: OK
1761
+ headers:
1762
+ server:
1763
+ - openresty
1764
+ date:
1765
+ - Wed, 22 Jan 2020 08:04:42 GMT
1766
+ content-type:
1767
+ - application/json; charset=utf-8
1768
+ content-length:
1769
+ - '469'
1770
+ connection:
1771
+ - close
1772
+ x-cache-key:
1773
+ - "/data/2.5/weather?lat=-34.74&lon=150.3"
1774
+ access-control-allow-origin:
1775
+ - "*"
1776
+ access-control-allow-credentials:
1777
+ - 'true'
1778
+ access-control-allow-methods:
1779
+ - GET, POST
1780
+ body:
1781
+ encoding: UTF-8
1782
+ string: '{"coord":{"lon":150.3,"lat":-34.74},"weather":[{"id":801,"main":"Clouds","description":"few
1783
+ clouds","icon":"02d"}],"base":"stations","main":{"temp":300.82,"feels_like":296.53,"temp_min":299.26,"temp_max":302.15,"pressure":1003,"humidity":51},"visibility":10000,"wind":{"speed":9.3,"deg":50},"clouds":{"all":20},"dt":1579680282,"sys":{"type":1,"id":9594,"country":"AU","sunrise":1579633640,"sunset":1579684349},"timezone":39600,"id":2173306,"name":"Bundanoon","cod":200}'
1784
+ http_version:
1785
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1786
+ - request:
1787
+ method: get
1788
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.734&lon=149.827
1789
+ body:
1790
+ encoding: US-ASCII
1791
+ string: ''
1792
+ headers:
1793
+ User-Agent:
1794
+ - Faraday v0.15.4
1795
+ response:
1796
+ status:
1797
+ code: 200
1798
+ message: OK
1799
+ headers:
1800
+ server:
1801
+ - openresty
1802
+ date:
1803
+ - Wed, 22 Jan 2020 08:04:42 GMT
1804
+ content-type:
1805
+ - application/json; charset=utf-8
1806
+ content-length:
1807
+ - '469'
1808
+ connection:
1809
+ - close
1810
+ x-cache-key:
1811
+ - "/data/2.5/weather?lat=-35.73&lon=149.83"
1812
+ access-control-allow-origin:
1813
+ - "*"
1814
+ access-control-allow-credentials:
1815
+ - 'true'
1816
+ access-control-allow-methods:
1817
+ - GET, POST
1818
+ body:
1819
+ encoding: UTF-8
1820
+ string: '{"coord":{"lon":149.83,"lat":-35.73},"weather":[{"id":803,"main":"Clouds","description":"broken
1821
+ clouds","icon":"04d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":67},"dt":1579680282,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633616,"sunset":1579684599},"timezone":39600,"id":2177764,"name":"Araluen","cod":200}'
1822
+ http_version:
1823
+ recorded_at: Wed, 22 Jan 2020 08:04:42 GMT
1824
+ - request:
1825
+ method: get
1826
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.743&lon=149.829
1827
+ body:
1828
+ encoding: US-ASCII
1829
+ string: ''
1830
+ headers:
1831
+ User-Agent:
1832
+ - Faraday v0.15.4
1833
+ response:
1834
+ status:
1835
+ code: 200
1836
+ message: OK
1837
+ headers:
1838
+ server:
1839
+ - openresty
1840
+ date:
1841
+ - Wed, 22 Jan 2020 08:04:43 GMT
1842
+ content-type:
1843
+ - application/json; charset=utf-8
1844
+ content-length:
1845
+ - '469'
1846
+ connection:
1847
+ - close
1848
+ x-cache-key:
1849
+ - "/data/2.5/weather?lat=-35.74&lon=149.83"
1850
+ access-control-allow-origin:
1851
+ - "*"
1852
+ access-control-allow-credentials:
1853
+ - 'true'
1854
+ access-control-allow-methods:
1855
+ - GET, POST
1856
+ body:
1857
+ encoding: UTF-8
1858
+ string: '{"coord":{"lon":149.83,"lat":-35.74},"weather":[{"id":803,"main":"Clouds","description":"broken
1859
+ clouds","icon":"04d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":67},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633614,"sunset":1579684600},"timezone":39600,"id":2177764,"name":"Araluen","cod":200}'
1860
+ http_version:
1861
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
1862
+ - request:
1863
+ method: get
1864
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.749&lon=149.855
1865
+ body:
1866
+ encoding: US-ASCII
1867
+ string: ''
1868
+ headers:
1869
+ User-Agent:
1870
+ - Faraday v0.15.4
1871
+ response:
1872
+ status:
1873
+ code: 200
1874
+ message: OK
1875
+ headers:
1876
+ server:
1877
+ - openresty
1878
+ date:
1879
+ - Wed, 22 Jan 2020 08:04:43 GMT
1880
+ content-type:
1881
+ - application/json; charset=utf-8
1882
+ content-length:
1883
+ - '472'
1884
+ connection:
1885
+ - close
1886
+ x-cache-key:
1887
+ - "/data/2.5/weather?lat=-35.75&lon=149.85"
1888
+ access-control-allow-origin:
1889
+ - "*"
1890
+ access-control-allow-credentials:
1891
+ - 'true'
1892
+ access-control-allow-methods:
1893
+ - GET, POST
1894
+ body:
1895
+ encoding: UTF-8
1896
+ string: '{"coord":{"lon":149.85,"lat":-35.75},"weather":[{"id":802,"main":"Clouds","description":"scattered
1897
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633608,"sunset":1579684597},"timezone":39600,"id":2177764,"name":"Araluen","cod":200}'
1898
+ http_version:
1899
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
1900
+ - request:
1901
+ method: get
1902
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.755&lon=149.85
1903
+ body:
1904
+ encoding: US-ASCII
1905
+ string: ''
1906
+ headers:
1907
+ User-Agent:
1908
+ - Faraday v0.15.4
1909
+ response:
1910
+ status:
1911
+ code: 200
1912
+ message: OK
1913
+ headers:
1914
+ server:
1915
+ - openresty
1916
+ date:
1917
+ - Wed, 22 Jan 2020 08:04:43 GMT
1918
+ content-type:
1919
+ - application/json; charset=utf-8
1920
+ content-length:
1921
+ - '472'
1922
+ connection:
1923
+ - close
1924
+ x-cache-key:
1925
+ - "/data/2.5/weather?lat=-35.76&lon=149.85"
1926
+ access-control-allow-origin:
1927
+ - "*"
1928
+ access-control-allow-credentials:
1929
+ - 'true'
1930
+ access-control-allow-methods:
1931
+ - GET, POST
1932
+ body:
1933
+ encoding: UTF-8
1934
+ string: '{"coord":{"lon":149.85,"lat":-35.76},"weather":[{"id":802,"main":"Clouds","description":"scattered
1935
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633607,"sunset":1579684598},"timezone":39600,"id":2177764,"name":"Araluen","cod":200}'
1936
+ http_version:
1937
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
1938
+ - request:
1939
+ method: get
1940
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.754&lon=149.862
1941
+ body:
1942
+ encoding: US-ASCII
1943
+ string: ''
1944
+ headers:
1945
+ User-Agent:
1946
+ - Faraday v0.15.4
1947
+ response:
1948
+ status:
1949
+ code: 200
1950
+ message: OK
1951
+ headers:
1952
+ server:
1953
+ - openresty
1954
+ date:
1955
+ - Wed, 22 Jan 2020 08:04:43 GMT
1956
+ content-type:
1957
+ - application/json; charset=utf-8
1958
+ content-length:
1959
+ - '472'
1960
+ connection:
1961
+ - close
1962
+ x-cache-key:
1963
+ - "/data/2.5/weather?lat=-35.75&lon=149.86"
1964
+ access-control-allow-origin:
1965
+ - "*"
1966
+ access-control-allow-credentials:
1967
+ - 'true'
1968
+ access-control-allow-methods:
1969
+ - GET, POST
1970
+ body:
1971
+ encoding: UTF-8
1972
+ string: '{"coord":{"lon":149.86,"lat":-35.75},"weather":[{"id":802,"main":"Clouds","description":"scattered
1973
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633606,"sunset":1579684595},"timezone":39600,"id":2177764,"name":"Araluen","cod":200}'
1974
+ http_version:
1975
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
1976
+ - request:
1977
+ method: get
1978
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.889&lon=149.749
1979
+ body:
1980
+ encoding: US-ASCII
1981
+ string: ''
1982
+ headers:
1983
+ User-Agent:
1984
+ - Faraday v0.15.4
1985
+ response:
1986
+ status:
1987
+ code: 200
1988
+ message: OK
1989
+ headers:
1990
+ server:
1991
+ - openresty
1992
+ date:
1993
+ - Wed, 22 Jan 2020 08:04:43 GMT
1994
+ content-type:
1995
+ - application/json; charset=utf-8
1996
+ content-length:
1997
+ - '476'
1998
+ connection:
1999
+ - close
2000
+ x-cache-key:
2001
+ - "/data/2.5/weather?lat=-35.89&lon=149.75"
2002
+ access-control-allow-origin:
2003
+ - "*"
2004
+ access-control-allow-credentials:
2005
+ - 'true'
2006
+ access-control-allow-methods:
2007
+ - GET, POST
2008
+ body:
2009
+ encoding: UTF-8
2010
+ string: '{"coord":{"lon":149.75,"lat":-35.89},"weather":[{"id":802,"main":"Clouds","description":"scattered
2011
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633612,"sunset":1579684641},"timezone":39600,"id":7839359,"name":"Eurobodalla","cod":200}'
2012
+ http_version:
2013
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
2014
+ - request:
2015
+ method: get
2016
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.887&lon=149.761
2017
+ body:
2018
+ encoding: US-ASCII
2019
+ string: ''
2020
+ headers:
2021
+ User-Agent:
2022
+ - Faraday v0.15.4
2023
+ response:
2024
+ status:
2025
+ code: 200
2026
+ message: OK
2027
+ headers:
2028
+ server:
2029
+ - openresty
2030
+ date:
2031
+ - Wed, 22 Jan 2020 08:04:43 GMT
2032
+ content-type:
2033
+ - application/json; charset=utf-8
2034
+ content-length:
2035
+ - '476'
2036
+ connection:
2037
+ - close
2038
+ x-cache-key:
2039
+ - "/data/2.5/weather?lat=-35.89&lon=149.76"
2040
+ access-control-allow-origin:
2041
+ - "*"
2042
+ access-control-allow-credentials:
2043
+ - 'true'
2044
+ access-control-allow-methods:
2045
+ - GET, POST
2046
+ body:
2047
+ encoding: UTF-8
2048
+ string: '{"coord":{"lon":149.76,"lat":-35.89},"weather":[{"id":802,"main":"Clouds","description":"scattered
2049
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633610,"sunset":1579684638},"timezone":39600,"id":7839359,"name":"Eurobodalla","cod":200}'
2050
+ http_version:
2051
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
2052
+ - request:
2053
+ method: get
2054
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.91&lon=149.729
2055
+ body:
2056
+ encoding: US-ASCII
2057
+ string: ''
2058
+ headers:
2059
+ User-Agent:
2060
+ - Faraday v0.15.4
2061
+ response:
2062
+ status:
2063
+ code: 200
2064
+ message: OK
2065
+ headers:
2066
+ server:
2067
+ - openresty
2068
+ date:
2069
+ - Wed, 22 Jan 2020 08:04:43 GMT
2070
+ content-type:
2071
+ - application/json; charset=utf-8
2072
+ content-length:
2073
+ - '475'
2074
+ connection:
2075
+ - close
2076
+ x-cache-key:
2077
+ - "/data/2.5/weather?lat=-35.91&lon=149.73"
2078
+ access-control-allow-origin:
2079
+ - "*"
2080
+ access-control-allow-credentials:
2081
+ - 'true'
2082
+ access-control-allow-methods:
2083
+ - GET, POST
2084
+ body:
2085
+ encoding: UTF-8
2086
+ string: '{"coord":{"lon":149.73,"lat":-35.91},"weather":[{"id":804,"main":"Clouds","description":"overcast
2087
+ clouds","icon":"04d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":93},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633614,"sunset":1579684648},"timezone":39600,"id":7839359,"name":"Eurobodalla","cod":200}'
2088
+ http_version:
2089
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
2090
+ - request:
2091
+ method: get
2092
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.909&lon=149.741
2093
+ body:
2094
+ encoding: US-ASCII
2095
+ string: ''
2096
+ headers:
2097
+ User-Agent:
2098
+ - Faraday v0.15.4
2099
+ response:
2100
+ status:
2101
+ code: 200
2102
+ message: OK
2103
+ headers:
2104
+ server:
2105
+ - openresty
2106
+ date:
2107
+ - Wed, 22 Jan 2020 08:04:43 GMT
2108
+ content-type:
2109
+ - application/json; charset=utf-8
2110
+ content-length:
2111
+ - '475'
2112
+ connection:
2113
+ - close
2114
+ x-cache-key:
2115
+ - "/data/2.5/weather?lat=-35.91&lon=149.74"
2116
+ access-control-allow-origin:
2117
+ - "*"
2118
+ access-control-allow-credentials:
2119
+ - 'true'
2120
+ access-control-allow-methods:
2121
+ - GET, POST
2122
+ body:
2123
+ encoding: UTF-8
2124
+ string: '{"coord":{"lon":149.74,"lat":-35.91},"weather":[{"id":804,"main":"Clouds","description":"overcast
2125
+ clouds","icon":"04d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":93},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633612,"sunset":1579684646},"timezone":39600,"id":7839359,"name":"Eurobodalla","cod":200}'
2126
+ http_version:
2127
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
2128
+ - request:
2129
+ method: get
2130
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-35.99&lon=149.968
2131
+ body:
2132
+ encoding: US-ASCII
2133
+ string: ''
2134
+ headers:
2135
+ User-Agent:
2136
+ - Faraday v0.15.4
2137
+ response:
2138
+ status:
2139
+ code: 200
2140
+ message: OK
2141
+ headers:
2142
+ server:
2143
+ - openresty
2144
+ date:
2145
+ - Wed, 22 Jan 2020 08:04:43 GMT
2146
+ content-type:
2147
+ - application/json; charset=utf-8
2148
+ content-length:
2149
+ - '476'
2150
+ connection:
2151
+ - close
2152
+ x-cache-key:
2153
+ - "/data/2.5/weather?lat=-35.99&lon=149.97"
2154
+ access-control-allow-origin:
2155
+ - "*"
2156
+ access-control-allow-credentials:
2157
+ - 'true'
2158
+ access-control-allow-methods:
2159
+ - GET, POST
2160
+ body:
2161
+ encoding: UTF-8
2162
+ string: '{"coord":{"lon":149.97,"lat":-35.99},"weather":[{"id":802,"main":"Clouds","description":"scattered
2163
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633545,"sunset":1579684602},"timezone":39600,"id":7839359,"name":"Eurobodalla","cod":200}'
2164
+ http_version:
2165
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
2166
+ - request:
2167
+ method: get
2168
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-36.069&lon=149.99
2169
+ body:
2170
+ encoding: US-ASCII
2171
+ string: ''
2172
+ headers:
2173
+ User-Agent:
2174
+ - Faraday v0.15.4
2175
+ response:
2176
+ status:
2177
+ code: 200
2178
+ message: OK
2179
+ headers:
2180
+ server:
2181
+ - openresty
2182
+ date:
2183
+ - Wed, 22 Jan 2020 08:04:43 GMT
2184
+ content-type:
2185
+ - application/json; charset=utf-8
2186
+ content-length:
2187
+ - '472'
2188
+ connection:
2189
+ - close
2190
+ x-cache-key:
2191
+ - "/data/2.5/weather?lat=-36.07&lon=149.99"
2192
+ access-control-allow-origin:
2193
+ - "*"
2194
+ access-control-allow-credentials:
2195
+ - 'true'
2196
+ access-control-allow-methods:
2197
+ - GET, POST
2198
+ body:
2199
+ encoding: UTF-8
2200
+ string: '{"coord":{"lon":149.99,"lat":-36.07},"weather":[{"id":802,"main":"Clouds","description":"scattered
2201
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680283,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633529,"sunset":1579684609},"timezone":39600,"id":2175108,"name":"Bodalla","cod":200}'
2202
+ http_version:
2203
+ recorded_at: Wed, 22 Jan 2020 08:04:43 GMT
2204
+ - request:
2205
+ method: get
2206
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-36.209&lon=150.03
2207
+ body:
2208
+ encoding: US-ASCII
2209
+ string: ''
2210
+ headers:
2211
+ User-Agent:
2212
+ - Faraday v0.15.4
2213
+ response:
2214
+ status:
2215
+ code: 200
2216
+ message: OK
2217
+ headers:
2218
+ server:
2219
+ - openresty
2220
+ date:
2221
+ - Wed, 22 Jan 2020 08:04:44 GMT
2222
+ content-type:
2223
+ - application/json; charset=utf-8
2224
+ content-length:
2225
+ - '472'
2226
+ connection:
2227
+ - close
2228
+ x-cache-key:
2229
+ - "/data/2.5/weather?lat=-36.21&lon=150.03"
2230
+ access-control-allow-origin:
2231
+ - "*"
2232
+ access-control-allow-credentials:
2233
+ - 'true'
2234
+ access-control-allow-methods:
2235
+ - GET, POST
2236
+ body:
2237
+ encoding: UTF-8
2238
+ string: '{"coord":{"lon":150.03,"lat":-36.21},"weather":[{"id":802,"main":"Clouds","description":"scattered
2239
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680284,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633500,"sunset":1579684619},"timezone":39600,"id":2155750,"name":"Narooma","cod":200}'
2240
+ http_version:
2241
+ recorded_at: Wed, 22 Jan 2020 08:04:44 GMT
2242
+ - request:
2243
+ method: get
2244
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-36.208&lon=150.042
2245
+ body:
2246
+ encoding: US-ASCII
2247
+ string: ''
2248
+ headers:
2249
+ User-Agent:
2250
+ - Faraday v0.15.4
2251
+ response:
2252
+ status:
2253
+ code: 200
2254
+ message: OK
2255
+ headers:
2256
+ server:
2257
+ - openresty
2258
+ date:
2259
+ - Wed, 22 Jan 2020 08:04:44 GMT
2260
+ content-type:
2261
+ - application/json; charset=utf-8
2262
+ content-length:
2263
+ - '472'
2264
+ connection:
2265
+ - close
2266
+ x-cache-key:
2267
+ - "/data/2.5/weather?lat=-36.21&lon=150.04"
2268
+ access-control-allow-origin:
2269
+ - "*"
2270
+ access-control-allow-credentials:
2271
+ - 'true'
2272
+ access-control-allow-methods:
2273
+ - GET, POST
2274
+ body:
2275
+ encoding: UTF-8
2276
+ string: '{"coord":{"lon":150.04,"lat":-36.21},"weather":[{"id":802,"main":"Clouds","description":"scattered
2277
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680284,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633497,"sunset":1579684617},"timezone":39600,"id":2155750,"name":"Narooma","cod":200}'
2278
+ http_version:
2279
+ recorded_at: Wed, 22 Jan 2020 08:04:44 GMT
2280
+ - request:
2281
+ method: get
2282
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-36.22&lon=150.02
2283
+ body:
2284
+ encoding: US-ASCII
2285
+ string: ''
2286
+ headers:
2287
+ User-Agent:
2288
+ - Faraday v0.15.4
2289
+ response:
2290
+ status:
2291
+ code: 200
2292
+ message: OK
2293
+ headers:
2294
+ server:
2295
+ - openresty
2296
+ date:
2297
+ - Wed, 22 Jan 2020 08:04:44 GMT
2298
+ content-type:
2299
+ - application/json; charset=utf-8
2300
+ content-length:
2301
+ - '472'
2302
+ connection:
2303
+ - close
2304
+ x-cache-key:
2305
+ - "/data/2.5/weather?lat=-36.22&lon=150.02"
2306
+ access-control-allow-origin:
2307
+ - "*"
2308
+ access-control-allow-credentials:
2309
+ - 'true'
2310
+ access-control-allow-methods:
2311
+ - GET, POST
2312
+ body:
2313
+ encoding: UTF-8
2314
+ string: '{"coord":{"lon":150.02,"lat":-36.22},"weather":[{"id":802,"main":"Clouds","description":"scattered
2315
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680284,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633501,"sunset":1579684623},"timezone":39600,"id":2155750,"name":"Narooma","cod":200}'
2316
+ http_version:
2317
+ recorded_at: Wed, 22 Jan 2020 08:04:44 GMT
2318
+ - request:
2319
+ method: get
2320
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-36.219&lon=150.032
2321
+ body:
2322
+ encoding: US-ASCII
2323
+ string: ''
2324
+ headers:
2325
+ User-Agent:
2326
+ - Faraday v0.15.4
2327
+ response:
2328
+ status:
2329
+ code: 200
2330
+ message: OK
2331
+ headers:
2332
+ server:
2333
+ - openresty
2334
+ date:
2335
+ - Wed, 22 Jan 2020 08:04:44 GMT
2336
+ content-type:
2337
+ - application/json; charset=utf-8
2338
+ content-length:
2339
+ - '472'
2340
+ connection:
2341
+ - close
2342
+ x-cache-key:
2343
+ - "/data/2.5/weather?lat=-36.22&lon=150.03"
2344
+ access-control-allow-origin:
2345
+ - "*"
2346
+ access-control-allow-credentials:
2347
+ - 'true'
2348
+ access-control-allow-methods:
2349
+ - GET, POST
2350
+ body:
2351
+ encoding: UTF-8
2352
+ string: '{"coord":{"lon":150.03,"lat":-36.22},"weather":[{"id":802,"main":"Clouds","description":"scattered
2353
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.59,"feels_like":297.76,"temp_min":297.59,"temp_max":297.59,"pressure":1001,"humidity":91},"wind":{"speed":7.15,"deg":11,"gust":12.96},"clouds":{"all":45},"dt":1579680284,"sys":{"type":3,"id":2010627,"country":"AU","sunrise":1579633498,"sunset":1579684620},"timezone":39600,"id":2155750,"name":"Narooma","cod":200}'
2354
+ http_version:
2355
+ recorded_at: Wed, 22 Jan 2020 08:04:44 GMT
2356
+ - request:
2357
+ method: get
2358
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-36.339&lon=149.952
2359
+ body:
2360
+ encoding: US-ASCII
2361
+ string: ''
2362
+ headers:
2363
+ User-Agent:
2364
+ - Faraday v0.15.4
2365
+ response:
2366
+ status:
2367
+ code: 200
2368
+ message: OK
2369
+ headers:
2370
+ server:
2371
+ - openresty
2372
+ date:
2373
+ - Wed, 22 Jan 2020 08:04:44 GMT
2374
+ content-type:
2375
+ - application/json; charset=utf-8
2376
+ content-length:
2377
+ - '480'
2378
+ connection:
2379
+ - close
2380
+ x-cache-key:
2381
+ - "/data/2.5/weather?lat=-36.34&lon=149.95"
2382
+ access-control-allow-origin:
2383
+ - "*"
2384
+ access-control-allow-credentials:
2385
+ - 'true'
2386
+ access-control-allow-methods:
2387
+ - GET, POST
2388
+ body:
2389
+ encoding: UTF-8
2390
+ string: '{"coord":{"lon":149.95,"lat":-36.34},"weather":[{"id":802,"main":"Clouds","description":"scattered
2391
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.81,"feels_like":297.09,"temp_min":297.59,"temp_max":298.15,"pressure":1002,"humidity":78},"visibility":10000,"wind":{"speed":6.7,"deg":20},"clouds":{"all":35},"dt":1579680284,"sys":{"type":1,"id":9543,"country":"AU","sunrise":1579633500,"sunset":1579684657},"timezone":39600,"id":2168849,"name":"Dignams
2392
+ Creek","cod":200}'
2393
+ http_version:
2394
+ recorded_at: Wed, 22 Jan 2020 08:04:44 GMT
2395
+ - request:
2396
+ method: get
2397
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-36.493&lon=149.958
2398
+ body:
2399
+ encoding: US-ASCII
2400
+ string: ''
2401
+ headers:
2402
+ User-Agent:
2403
+ - Faraday v0.15.4
2404
+ response:
2405
+ status:
2406
+ code: 200
2407
+ message: OK
2408
+ headers:
2409
+ server:
2410
+ - openresty
2411
+ date:
2412
+ - Wed, 22 Jan 2020 08:04:44 GMT
2413
+ content-type:
2414
+ - application/json; charset=utf-8
2415
+ content-length:
2416
+ - '473'
2417
+ connection:
2418
+ - close
2419
+ x-cache-key:
2420
+ - "/data/2.5/weather?lat=-36.49&lon=149.96"
2421
+ access-control-allow-origin:
2422
+ - "*"
2423
+ access-control-allow-credentials:
2424
+ - 'true'
2425
+ access-control-allow-methods:
2426
+ - GET, POST
2427
+ body:
2428
+ encoding: UTF-8
2429
+ string: '{"coord":{"lon":149.96,"lat":-36.49},"weather":[{"id":802,"main":"Clouds","description":"scattered
2430
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.84,"feels_like":297.13,"temp_min":297.59,"temp_max":298.15,"pressure":1002,"humidity":78},"visibility":10000,"wind":{"speed":6.7,"deg":20},"clouds":{"all":35},"dt":1579680284,"sys":{"type":1,"id":9543,"country":"AU","sunrise":1579633476,"sunset":1579684676},"timezone":39600,"id":2156127,"name":"Murrah","cod":200}'
2431
+ http_version:
2432
+ recorded_at: Wed, 22 Jan 2020 08:04:44 GMT
2433
+ - request:
2434
+ method: get
2435
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-36.553&lon=149.933
2436
+ body:
2437
+ encoding: US-ASCII
2438
+ string: ''
2439
+ headers:
2440
+ User-Agent:
2441
+ - Faraday v0.15.4
2442
+ response:
2443
+ status:
2444
+ code: 200
2445
+ message: OK
2446
+ headers:
2447
+ server:
2448
+ - openresty
2449
+ date:
2450
+ - Wed, 22 Jan 2020 08:04:44 GMT
2451
+ content-type:
2452
+ - application/json; charset=utf-8
2453
+ content-length:
2454
+ - '472'
2455
+ connection:
2456
+ - close
2457
+ x-cache-key:
2458
+ - "/data/2.5/weather?lat=-36.55&lon=149.93"
2459
+ access-control-allow-origin:
2460
+ - "*"
2461
+ access-control-allow-credentials:
2462
+ - 'true'
2463
+ access-control-allow-methods:
2464
+ - GET, POST
2465
+ body:
2466
+ encoding: UTF-8
2467
+ string: '{"coord":{"lon":149.93,"lat":-36.55},"weather":[{"id":802,"main":"Clouds","description":"scattered
2468
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.85,"feels_like":297.15,"temp_min":297.59,"temp_max":298.15,"pressure":1002,"humidity":78},"visibility":10000,"wind":{"speed":6.7,"deg":20},"clouds":{"all":35},"dt":1579680284,"sys":{"type":1,"id":9543,"country":"AU","sunrise":1579633475,"sunset":1579684692},"timezone":39600,"id":2147464,"name":"Tanja","cod":200}'
2469
+ http_version:
2470
+ recorded_at: Wed, 22 Jan 2020 08:04:44 GMT
2471
+ - request:
2472
+ method: get
2473
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-36.552&lon=149.945
2474
+ body:
2475
+ encoding: US-ASCII
2476
+ string: ''
2477
+ headers:
2478
+ User-Agent:
2479
+ - Faraday v0.15.4
2480
+ response:
2481
+ status:
2482
+ code: 200
2483
+ message: OK
2484
+ headers:
2485
+ server:
2486
+ - openresty
2487
+ date:
2488
+ - Wed, 22 Jan 2020 08:04:44 GMT
2489
+ content-type:
2490
+ - application/json; charset=utf-8
2491
+ content-length:
2492
+ - '472'
2493
+ connection:
2494
+ - close
2495
+ x-cache-key:
2496
+ - "/data/2.5/weather?lat=-36.55&lon=149.94"
2497
+ access-control-allow-origin:
2498
+ - "*"
2499
+ access-control-allow-credentials:
2500
+ - 'true'
2501
+ access-control-allow-methods:
2502
+ - GET, POST
2503
+ body:
2504
+ encoding: UTF-8
2505
+ string: '{"coord":{"lon":149.95,"lat":-36.55},"weather":[{"id":802,"main":"Clouds","description":"scattered
2506
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":297.85,"feels_like":297.15,"temp_min":297.59,"temp_max":298.15,"pressure":1002,"humidity":78},"visibility":10000,"wind":{"speed":6.7,"deg":20},"clouds":{"all":35},"dt":1579680284,"sys":{"type":1,"id":9543,"country":"AU","sunrise":1579633470,"sunset":1579684687},"timezone":39600,"id":2147464,"name":"Tanja","cod":200}'
2507
+ http_version:
2508
+ recorded_at: Wed, 22 Jan 2020 08:04:44 GMT
2509
+ - request:
2510
+ method: get
2511
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.267&lon=149.104
2512
+ body:
2513
+ encoding: US-ASCII
2514
+ string: ''
2515
+ headers:
2516
+ User-Agent:
2517
+ - Faraday v0.15.4
2518
+ response:
2519
+ status:
2520
+ code: 200
2521
+ message: OK
2522
+ headers:
2523
+ server:
2524
+ - openresty
2525
+ date:
2526
+ - Wed, 22 Jan 2020 08:04:44 GMT
2527
+ content-type:
2528
+ - application/json; charset=utf-8
2529
+ content-length:
2530
+ - '469'
2531
+ connection:
2532
+ - close
2533
+ x-cache-key:
2534
+ - "/data/2.5/weather?lat=-37.27&lon=149.1"
2535
+ access-control-allow-origin:
2536
+ - "*"
2537
+ access-control-allow-credentials:
2538
+ - 'true'
2539
+ access-control-allow-methods:
2540
+ - GET, POST
2541
+ body:
2542
+ encoding: UTF-8
2543
+ string: '{"coord":{"lon":149.1,"lat":-37.27},"weather":[{"id":804,"main":"Clouds","description":"overcast
2544
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680284,"sys":{"country":"AU","sunrise":1579633570,"sunset":1579684996},"timezone":39600,"id":2170921,"name":"Combienbar","cod":200}'
2545
+ http_version:
2546
+ recorded_at: Wed, 22 Jan 2020 08:04:44 GMT
2547
+ - request:
2548
+ method: get
2549
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.264&lon=149.129
2550
+ body:
2551
+ encoding: US-ASCII
2552
+ string: ''
2553
+ headers:
2554
+ User-Agent:
2555
+ - Faraday v0.15.4
2556
+ response:
2557
+ status:
2558
+ code: 200
2559
+ message: OK
2560
+ headers:
2561
+ server:
2562
+ - openresty
2563
+ date:
2564
+ - Wed, 22 Jan 2020 08:04:44 GMT
2565
+ content-type:
2566
+ - application/json; charset=utf-8
2567
+ content-length:
2568
+ - '470'
2569
+ connection:
2570
+ - close
2571
+ x-cache-key:
2572
+ - "/data/2.5/weather?lat=-37.26&lon=149.13"
2573
+ access-control-allow-origin:
2574
+ - "*"
2575
+ access-control-allow-credentials:
2576
+ - 'true'
2577
+ access-control-allow-methods:
2578
+ - GET, POST
2579
+ body:
2580
+ encoding: UTF-8
2581
+ string: '{"coord":{"lon":149.13,"lat":-37.26},"weather":[{"id":804,"main":"Clouds","description":"overcast
2582
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680285,"sys":{"country":"AU","sunrise":1579633564,"sunset":1579684987},"timezone":39600,"id":2170921,"name":"Combienbar","cod":200}'
2583
+ http_version:
2584
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2585
+ - request:
2586
+ method: get
2587
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.312&lon=149.486
2588
+ body:
2589
+ encoding: US-ASCII
2590
+ string: ''
2591
+ headers:
2592
+ User-Agent:
2593
+ - Faraday v0.15.4
2594
+ response:
2595
+ status:
2596
+ code: 200
2597
+ message: OK
2598
+ headers:
2599
+ server:
2600
+ - openresty
2601
+ date:
2602
+ - Wed, 22 Jan 2020 08:04:45 GMT
2603
+ content-type:
2604
+ - application/json; charset=utf-8
2605
+ content-length:
2606
+ - '469'
2607
+ connection:
2608
+ - close
2609
+ x-cache-key:
2610
+ - "/data/2.5/weather?lat=-37.31&lon=149.49"
2611
+ access-control-allow-origin:
2612
+ - "*"
2613
+ access-control-allow-credentials:
2614
+ - 'true'
2615
+ access-control-allow-methods:
2616
+ - GET, POST
2617
+ body:
2618
+ encoding: UTF-8
2619
+ string: '{"coord":{"lon":149.49,"lat":-37.31},"weather":[{"id":803,"main":"Clouds","description":"broken
2620
+ clouds","icon":"04d"}],"base":"stations","main":{"temp":298.15,"feels_like":297.59,"temp_min":298.15,"temp_max":298.15,"pressure":1002,"humidity":78},"visibility":10000,"wind":{"speed":6.7,"deg":20},"clouds":{"all":66},"dt":1579680285,"sys":{"type":1,"id":9543,"country":"AU","sunrise":1579633470,"sunset":1579684908},"timezone":39600,"id":2165758,"name":"Genoa","cod":200}'
2621
+ http_version:
2622
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2623
+ - request:
2624
+ method: get
2625
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.311&lon=149.499
2626
+ body:
2627
+ encoding: US-ASCII
2628
+ string: ''
2629
+ headers:
2630
+ User-Agent:
2631
+ - Faraday v0.15.4
2632
+ response:
2633
+ status:
2634
+ code: 200
2635
+ message: OK
2636
+ headers:
2637
+ server:
2638
+ - openresty
2639
+ date:
2640
+ - Wed, 22 Jan 2020 08:04:45 GMT
2641
+ content-type:
2642
+ - application/json; charset=utf-8
2643
+ content-length:
2644
+ - '468'
2645
+ connection:
2646
+ - close
2647
+ x-cache-key:
2648
+ - "/data/2.5/weather?lat=-37.31&lon=149.5"
2649
+ access-control-allow-origin:
2650
+ - "*"
2651
+ access-control-allow-credentials:
2652
+ - 'true'
2653
+ access-control-allow-methods:
2654
+ - GET, POST
2655
+ body:
2656
+ encoding: UTF-8
2657
+ string: '{"coord":{"lon":149.5,"lat":-37.31},"weather":[{"id":803,"main":"Clouds","description":"broken
2658
+ clouds","icon":"04d"}],"base":"stations","main":{"temp":298.15,"feels_like":297.59,"temp_min":298.15,"temp_max":298.15,"pressure":1002,"humidity":78},"visibility":10000,"wind":{"speed":6.7,"deg":20},"clouds":{"all":66},"dt":1579680285,"sys":{"type":1,"id":9543,"country":"AU","sunrise":1579633468,"sunset":1579684906},"timezone":39600,"id":2165758,"name":"Genoa","cod":200}'
2659
+ http_version:
2660
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2661
+ - request:
2662
+ method: get
2663
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.363&lon=149.313
2664
+ body:
2665
+ encoding: US-ASCII
2666
+ string: ''
2667
+ headers:
2668
+ User-Agent:
2669
+ - Faraday v0.15.4
2670
+ response:
2671
+ status:
2672
+ code: 200
2673
+ message: OK
2674
+ headers:
2675
+ server:
2676
+ - openresty
2677
+ date:
2678
+ - Wed, 22 Jan 2020 08:04:45 GMT
2679
+ content-type:
2680
+ - application/json; charset=utf-8
2681
+ content-length:
2682
+ - '467'
2683
+ connection:
2684
+ - close
2685
+ x-cache-key:
2686
+ - "/data/2.5/weather?lat=-37.36&lon=149.31"
2687
+ access-control-allow-origin:
2688
+ - "*"
2689
+ access-control-allow-credentials:
2690
+ - 'true'
2691
+ access-control-allow-methods:
2692
+ - GET, POST
2693
+ body:
2694
+ encoding: UTF-8
2695
+ string: '{"coord":{"lon":149.31,"lat":-37.36},"weather":[{"id":803,"main":"Clouds","description":"broken
2696
+ clouds","icon":"04d"}],"base":"model","main":{"temp":296.98,"feels_like":296.49,"temp_min":296.98,"temp_max":296.98,"pressure":1003,"humidity":58,"sea_level":1003,"grnd_level":981},"wind":{"speed":3.04,"deg":36},"clouds":{"all":66},"dt":1579680285,"sys":{"country":"AU","sunrise":1579633506,"sunset":1579684959},"timezone":39600,"id":2155143,"name":"Noorinbee","cod":200}'
2697
+ http_version:
2698
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2699
+ - request:
2700
+ method: get
2701
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.397&lon=149.378
2702
+ body:
2703
+ encoding: US-ASCII
2704
+ string: ''
2705
+ headers:
2706
+ User-Agent:
2707
+ - Faraday v0.15.4
2708
+ response:
2709
+ status:
2710
+ code: 200
2711
+ message: OK
2712
+ headers:
2713
+ server:
2714
+ - openresty
2715
+ date:
2716
+ - Wed, 22 Jan 2020 08:04:45 GMT
2717
+ content-type:
2718
+ - application/json; charset=utf-8
2719
+ content-length:
2720
+ - '462'
2721
+ connection:
2722
+ - close
2723
+ x-cache-key:
2724
+ - "/data/2.5/weather?lat=-37.4&lon=149.38"
2725
+ access-control-allow-origin:
2726
+ - "*"
2727
+ access-control-allow-credentials:
2728
+ - 'true'
2729
+ access-control-allow-methods:
2730
+ - GET, POST
2731
+ body:
2732
+ encoding: UTF-8
2733
+ string: '{"coord":{"lon":149.38,"lat":-37.4},"weather":[{"id":803,"main":"Clouds","description":"broken
2734
+ clouds","icon":"04d"}],"base":"model","main":{"temp":296.98,"feels_like":296.49,"temp_min":296.98,"temp_max":296.98,"pressure":1003,"humidity":58,"sea_level":1003,"grnd_level":981},"wind":{"speed":3.04,"deg":36},"clouds":{"all":66},"dt":1579680285,"sys":{"country":"AU","sunrise":1579633483,"sunset":1579684948},"timezone":39600,"id":2165758,"name":"Genoa","cod":200}'
2735
+ http_version:
2736
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2737
+ - request:
2738
+ method: get
2739
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.327&lon=149.955
2740
+ body:
2741
+ encoding: US-ASCII
2742
+ string: ''
2743
+ headers:
2744
+ User-Agent:
2745
+ - Faraday v0.15.4
2746
+ response:
2747
+ status:
2748
+ code: 200
2749
+ message: OK
2750
+ headers:
2751
+ server:
2752
+ - openresty
2753
+ date:
2754
+ - Wed, 22 Jan 2020 08:04:45 GMT
2755
+ content-type:
2756
+ - application/json; charset=utf-8
2757
+ content-length:
2758
+ - '471'
2759
+ connection:
2760
+ - close
2761
+ x-cache-key:
2762
+ - "/data/2.5/weather?lat=-37.33&lon=149.96"
2763
+ access-control-allow-origin:
2764
+ - "*"
2765
+ access-control-allow-credentials:
2766
+ - 'true'
2767
+ access-control-allow-methods:
2768
+ - GET, POST
2769
+ body:
2770
+ encoding: UTF-8
2771
+ string: '{"coord":{"lon":149.96,"lat":-37.33},"weather":[{"id":802,"main":"Clouds","description":"scattered
2772
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":298.15,"feels_like":297.59,"temp_min":298.15,"temp_max":298.15,"pressure":1002,"humidity":78},"visibility":10000,"wind":{"speed":6.7,"deg":20},"clouds":{"all":49},"dt":1579680285,"sys":{"type":1,"id":9543,"country":"AU","sunrise":1579633354,"sunset":1579684798},"timezone":39600,"id":2161522,"name":"Kiah","cod":200}'
2773
+ http_version:
2774
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2775
+ - request:
2776
+ method: get
2777
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.418&lon=149.29
2778
+ body:
2779
+ encoding: US-ASCII
2780
+ string: ''
2781
+ headers:
2782
+ User-Agent:
2783
+ - Faraday v0.15.4
2784
+ response:
2785
+ status:
2786
+ code: 200
2787
+ message: OK
2788
+ headers:
2789
+ server:
2790
+ - openresty
2791
+ date:
2792
+ - Wed, 22 Jan 2020 08:04:45 GMT
2793
+ content-type:
2794
+ - application/json; charset=utf-8
2795
+ content-length:
2796
+ - '467'
2797
+ connection:
2798
+ - close
2799
+ x-cache-key:
2800
+ - "/data/2.5/weather?lat=-37.42&lon=149.29"
2801
+ access-control-allow-origin:
2802
+ - "*"
2803
+ access-control-allow-credentials:
2804
+ - 'true'
2805
+ access-control-allow-methods:
2806
+ - GET, POST
2807
+ body:
2808
+ encoding: UTF-8
2809
+ string: '{"coord":{"lon":149.29,"lat":-37.42},"weather":[{"id":803,"main":"Clouds","description":"broken
2810
+ clouds","icon":"04d"}],"base":"model","main":{"temp":296.98,"feels_like":296.49,"temp_min":296.98,"temp_max":296.98,"pressure":1003,"humidity":58,"sea_level":1003,"grnd_level":981},"wind":{"speed":3.04,"deg":36},"clouds":{"all":66},"dt":1579680285,"sys":{"country":"AU","sunrise":1579633502,"sunset":1579684972},"timezone":39600,"id":2155143,"name":"Noorinbee","cod":200}'
2811
+ http_version:
2812
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2813
+ - request:
2814
+ method: get
2815
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.416&lon=149.304
2816
+ body:
2817
+ encoding: US-ASCII
2818
+ string: ''
2819
+ headers:
2820
+ User-Agent:
2821
+ - Faraday v0.15.4
2822
+ response:
2823
+ status:
2824
+ code: 200
2825
+ message: OK
2826
+ headers:
2827
+ server:
2828
+ - openresty
2829
+ date:
2830
+ - Wed, 22 Jan 2020 08:04:45 GMT
2831
+ content-type:
2832
+ - application/json; charset=utf-8
2833
+ content-length:
2834
+ - '466'
2835
+ connection:
2836
+ - close
2837
+ x-cache-key:
2838
+ - "/data/2.5/weather?lat=-37.42&lon=149.3"
2839
+ access-control-allow-origin:
2840
+ - "*"
2841
+ access-control-allow-credentials:
2842
+ - 'true'
2843
+ access-control-allow-methods:
2844
+ - GET, POST
2845
+ body:
2846
+ encoding: UTF-8
2847
+ string: '{"coord":{"lon":149.3,"lat":-37.42},"weather":[{"id":803,"main":"Clouds","description":"broken
2848
+ clouds","icon":"04d"}],"base":"model","main":{"temp":296.98,"feels_like":296.49,"temp_min":296.98,"temp_max":296.98,"pressure":1003,"humidity":58,"sea_level":1003,"grnd_level":981},"wind":{"speed":3.04,"deg":36},"clouds":{"all":66},"dt":1579680285,"sys":{"country":"AU","sunrise":1579633499,"sunset":1579684970},"timezone":39600,"id":2155143,"name":"Noorinbee","cod":200}'
2849
+ http_version:
2850
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2851
+ - request:
2852
+ method: get
2853
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.437&lon=149.213
2854
+ body:
2855
+ encoding: US-ASCII
2856
+ string: ''
2857
+ headers:
2858
+ User-Agent:
2859
+ - Faraday v0.15.4
2860
+ response:
2861
+ status:
2862
+ code: 200
2863
+ message: OK
2864
+ headers:
2865
+ server:
2866
+ - openresty
2867
+ date:
2868
+ - Wed, 22 Jan 2020 08:04:45 GMT
2869
+ content-type:
2870
+ - application/json; charset=utf-8
2871
+ content-length:
2872
+ - '469'
2873
+ connection:
2874
+ - close
2875
+ x-cache-key:
2876
+ - "/data/2.5/weather?lat=-37.44&lon=149.21"
2877
+ access-control-allow-origin:
2878
+ - "*"
2879
+ access-control-allow-credentials:
2880
+ - 'true'
2881
+ access-control-allow-methods:
2882
+ - GET, POST
2883
+ body:
2884
+ encoding: UTF-8
2885
+ string: '{"coord":{"lon":149.21,"lat":-37.44},"weather":[{"id":804,"main":"Clouds","description":"overcast
2886
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680285,"sys":{"country":"AU","sunrise":1579633518,"sunset":1579684994},"timezone":39600,"id":2155143,"name":"Noorinbee","cod":200}'
2887
+ http_version:
2888
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2889
+ - request:
2890
+ method: get
2891
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.435&lon=149.226
2892
+ body:
2893
+ encoding: US-ASCII
2894
+ string: ''
2895
+ headers:
2896
+ User-Agent:
2897
+ - Faraday v0.15.4
2898
+ response:
2899
+ status:
2900
+ code: 200
2901
+ message: OK
2902
+ headers:
2903
+ server:
2904
+ - openresty
2905
+ date:
2906
+ - Wed, 22 Jan 2020 08:04:45 GMT
2907
+ content-type:
2908
+ - application/json; charset=utf-8
2909
+ content-length:
2910
+ - '469'
2911
+ connection:
2912
+ - close
2913
+ x-cache-key:
2914
+ - "/data/2.5/weather?lat=-37.44&lon=149.23"
2915
+ access-control-allow-origin:
2916
+ - "*"
2917
+ access-control-allow-credentials:
2918
+ - 'true'
2919
+ access-control-allow-methods:
2920
+ - GET, POST
2921
+ body:
2922
+ encoding: UTF-8
2923
+ string: '{"coord":{"lon":149.23,"lat":-37.44},"weather":[{"id":804,"main":"Clouds","description":"overcast
2924
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680285,"sys":{"country":"AU","sunrise":1579633513,"sunset":1579684990},"timezone":39600,"id":2155143,"name":"Noorinbee","cod":200}'
2925
+ http_version:
2926
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2927
+ - request:
2928
+ method: get
2929
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.36&lon=149.924
2930
+ body:
2931
+ encoding: US-ASCII
2932
+ string: ''
2933
+ headers:
2934
+ User-Agent:
2935
+ - Faraday v0.15.4
2936
+ response:
2937
+ status:
2938
+ code: 200
2939
+ message: OK
2940
+ headers:
2941
+ server:
2942
+ - openresty
2943
+ date:
2944
+ - Wed, 22 Jan 2020 08:04:45 GMT
2945
+ content-type:
2946
+ - application/json; charset=utf-8
2947
+ content-length:
2948
+ - '471'
2949
+ connection:
2950
+ - close
2951
+ x-cache-key:
2952
+ - "/data/2.5/weather?lat=-37.36&lon=149.92"
2953
+ access-control-allow-origin:
2954
+ - "*"
2955
+ access-control-allow-credentials:
2956
+ - 'true'
2957
+ access-control-allow-methods:
2958
+ - GET, POST
2959
+ body:
2960
+ encoding: UTF-8
2961
+ string: '{"coord":{"lon":149.92,"lat":-37.36},"weather":[{"id":802,"main":"Clouds","description":"scattered
2962
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":298.15,"feels_like":297.59,"temp_min":298.15,"temp_max":298.15,"pressure":1002,"humidity":78},"visibility":10000,"wind":{"speed":6.7,"deg":20},"clouds":{"all":49},"dt":1579680285,"sys":{"type":1,"id":9543,"country":"AU","sunrise":1579633359,"sunset":1579684812},"timezone":39600,"id":2161522,"name":"Kiah","cod":200}'
2963
+ http_version:
2964
+ recorded_at: Wed, 22 Jan 2020 08:04:45 GMT
2965
+ - request:
2966
+ method: get
2967
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.413&lon=149.731
2968
+ body:
2969
+ encoding: US-ASCII
2970
+ string: ''
2971
+ headers:
2972
+ User-Agent:
2973
+ - Faraday v0.15.4
2974
+ response:
2975
+ status:
2976
+ code: 200
2977
+ message: OK
2978
+ headers:
2979
+ server:
2980
+ - openresty
2981
+ date:
2982
+ - Wed, 22 Jan 2020 08:04:46 GMT
2983
+ content-type:
2984
+ - application/json; charset=utf-8
2985
+ content-length:
2986
+ - '469'
2987
+ connection:
2988
+ - close
2989
+ x-cache-key:
2990
+ - "/data/2.5/weather?lat=-37.41&lon=149.73"
2991
+ access-control-allow-origin:
2992
+ - "*"
2993
+ access-control-allow-credentials:
2994
+ - 'true'
2995
+ access-control-allow-methods:
2996
+ - GET, POST
2997
+ body:
2998
+ encoding: UTF-8
2999
+ string: '{"coord":{"lon":149.73,"lat":-37.41},"weather":[{"id":803,"main":"Clouds","description":"broken
3000
+ clouds","icon":"04d"}],"base":"stations","main":{"temp":298.15,"feels_like":297.59,"temp_min":298.15,"temp_max":298.15,"pressure":1002,"humidity":78},"visibility":10000,"wind":{"speed":6.7,"deg":20},"clouds":{"all":66},"dt":1579680286,"sys":{"type":1,"id":9543,"country":"AU","sunrise":1579633398,"sunset":1579684865},"timezone":39600,"id":2165758,"name":"Genoa","cod":200}'
3001
+ http_version:
3002
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3003
+ - request:
3004
+ method: get
3005
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.662&lon=148.941
3006
+ body:
3007
+ encoding: US-ASCII
3008
+ string: ''
3009
+ headers:
3010
+ User-Agent:
3011
+ - Faraday v0.15.4
3012
+ response:
3013
+ status:
3014
+ code: 200
3015
+ message: OK
3016
+ headers:
3017
+ server:
3018
+ - openresty
3019
+ date:
3020
+ - Wed, 22 Jan 2020 08:04:46 GMT
3021
+ content-type:
3022
+ - application/json; charset=utf-8
3023
+ content-length:
3024
+ - '472'
3025
+ connection:
3026
+ - close
3027
+ x-cache-key:
3028
+ - "/data/2.5/weather?lat=-37.66&lon=148.94"
3029
+ access-control-allow-origin:
3030
+ - "*"
3031
+ access-control-allow-credentials:
3032
+ - 'true'
3033
+ access-control-allow-methods:
3034
+ - GET, POST
3035
+ body:
3036
+ encoding: UTF-8
3037
+ string: '{"coord":{"lon":148.94,"lat":-37.66},"weather":[{"id":804,"main":"Clouds","description":"overcast
3038
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680286,"sys":{"country":"AU","sunrise":1579633550,"sunset":1579685092},"timezone":39600,"id":2171281,"name":"Club
3039
+ Terrace","cod":200}'
3040
+ http_version:
3041
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3042
+ - request:
3043
+ method: get
3044
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.66&lon=148.954
3045
+ body:
3046
+ encoding: US-ASCII
3047
+ string: ''
3048
+ headers:
3049
+ User-Agent:
3050
+ - Faraday v0.15.4
3051
+ response:
3052
+ status:
3053
+ code: 200
3054
+ message: OK
3055
+ headers:
3056
+ server:
3057
+ - openresty
3058
+ date:
3059
+ - Wed, 22 Jan 2020 08:04:46 GMT
3060
+ content-type:
3061
+ - application/json; charset=utf-8
3062
+ content-length:
3063
+ - '472'
3064
+ connection:
3065
+ - close
3066
+ x-cache-key:
3067
+ - "/data/2.5/weather?lat=-37.66&lon=148.95"
3068
+ access-control-allow-origin:
3069
+ - "*"
3070
+ access-control-allow-credentials:
3071
+ - 'true'
3072
+ access-control-allow-methods:
3073
+ - GET, POST
3074
+ body:
3075
+ encoding: UTF-8
3076
+ string: '{"coord":{"lon":148.95,"lat":-37.66},"weather":[{"id":804,"main":"Clouds","description":"overcast
3077
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680286,"sys":{"country":"AU","sunrise":1579633548,"sunset":1579685089},"timezone":39600,"id":2171281,"name":"Club
3078
+ Terrace","cod":200}'
3079
+ http_version:
3080
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3081
+ - request:
3082
+ method: get
3083
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.67&lon=148.956
3084
+ body:
3085
+ encoding: US-ASCII
3086
+ string: ''
3087
+ headers:
3088
+ User-Agent:
3089
+ - Faraday v0.15.4
3090
+ response:
3091
+ status:
3092
+ code: 200
3093
+ message: OK
3094
+ headers:
3095
+ server:
3096
+ - openresty
3097
+ date:
3098
+ - Wed, 22 Jan 2020 08:04:46 GMT
3099
+ content-type:
3100
+ - application/json; charset=utf-8
3101
+ content-length:
3102
+ - '472'
3103
+ connection:
3104
+ - close
3105
+ x-cache-key:
3106
+ - "/data/2.5/weather?lat=-37.67&lon=148.96"
3107
+ access-control-allow-origin:
3108
+ - "*"
3109
+ access-control-allow-credentials:
3110
+ - 'true'
3111
+ access-control-allow-methods:
3112
+ - GET, POST
3113
+ body:
3114
+ encoding: UTF-8
3115
+ string: '{"coord":{"lon":148.96,"lat":-37.67},"weather":[{"id":804,"main":"Clouds","description":"overcast
3116
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680286,"sys":{"country":"AU","sunrise":1579633544,"sunset":1579685089},"timezone":39600,"id":2171281,"name":"Club
3117
+ Terrace","cod":200}'
3118
+ http_version:
3119
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3120
+ - request:
3121
+ method: get
3122
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.685&lon=148.917
3123
+ body:
3124
+ encoding: US-ASCII
3125
+ string: ''
3126
+ headers:
3127
+ User-Agent:
3128
+ - Faraday v0.15.4
3129
+ response:
3130
+ status:
3131
+ code: 200
3132
+ message: OK
3133
+ headers:
3134
+ server:
3135
+ - openresty
3136
+ date:
3137
+ - Wed, 22 Jan 2020 08:04:46 GMT
3138
+ content-type:
3139
+ - application/json; charset=utf-8
3140
+ content-length:
3141
+ - '472'
3142
+ connection:
3143
+ - close
3144
+ x-cache-key:
3145
+ - "/data/2.5/weather?lat=-37.69&lon=148.92"
3146
+ access-control-allow-origin:
3147
+ - "*"
3148
+ access-control-allow-credentials:
3149
+ - 'true'
3150
+ access-control-allow-methods:
3151
+ - GET, POST
3152
+ body:
3153
+ encoding: UTF-8
3154
+ string: '{"coord":{"lon":148.92,"lat":-37.69},"weather":[{"id":804,"main":"Clouds","description":"overcast
3155
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680286,"sys":{"country":"AU","sunrise":1579633551,"sunset":1579685101},"timezone":39600,"id":2171281,"name":"Club
3156
+ Terrace","cod":200}'
3157
+ http_version:
3158
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3159
+ - request:
3160
+ method: get
3161
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.68&lon=148.958
3162
+ body:
3163
+ encoding: US-ASCII
3164
+ string: ''
3165
+ headers:
3166
+ User-Agent:
3167
+ - Faraday v0.15.4
3168
+ response:
3169
+ status:
3170
+ code: 200
3171
+ message: OK
3172
+ headers:
3173
+ server:
3174
+ - openresty
3175
+ date:
3176
+ - Wed, 22 Jan 2020 08:04:46 GMT
3177
+ content-type:
3178
+ - application/json; charset=utf-8
3179
+ content-length:
3180
+ - '472'
3181
+ connection:
3182
+ - close
3183
+ x-cache-key:
3184
+ - "/data/2.5/weather?lat=-37.68&lon=148.96"
3185
+ access-control-allow-origin:
3186
+ - "*"
3187
+ access-control-allow-credentials:
3188
+ - 'true'
3189
+ access-control-allow-methods:
3190
+ - GET, POST
3191
+ body:
3192
+ encoding: UTF-8
3193
+ string: '{"coord":{"lon":148.96,"lat":-37.68},"weather":[{"id":804,"main":"Clouds","description":"overcast
3194
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680286,"sys":{"country":"AU","sunrise":1579633542,"sunset":1579685090},"timezone":39600,"id":2171281,"name":"Club
3195
+ Terrace","cod":200}'
3196
+ http_version:
3197
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3198
+ - request:
3199
+ method: get
3200
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-37.678&lon=148.971
3201
+ body:
3202
+ encoding: US-ASCII
3203
+ string: ''
3204
+ headers:
3205
+ User-Agent:
3206
+ - Faraday v0.15.4
3207
+ response:
3208
+ status:
3209
+ code: 200
3210
+ message: OK
3211
+ headers:
3212
+ server:
3213
+ - openresty
3214
+ date:
3215
+ - Wed, 22 Jan 2020 08:04:46 GMT
3216
+ content-type:
3217
+ - application/json; charset=utf-8
3218
+ content-length:
3219
+ - '472'
3220
+ connection:
3221
+ - close
3222
+ x-cache-key:
3223
+ - "/data/2.5/weather?lat=-37.68&lon=148.97"
3224
+ access-control-allow-origin:
3225
+ - "*"
3226
+ access-control-allow-credentials:
3227
+ - 'true'
3228
+ access-control-allow-methods:
3229
+ - GET, POST
3230
+ body:
3231
+ encoding: UTF-8
3232
+ string: '{"coord":{"lon":148.97,"lat":-37.68},"weather":[{"id":804,"main":"Clouds","description":"overcast
3233
+ clouds","icon":"04d"}],"base":"model","main":{"temp":297.27,"feels_like":296.54,"temp_min":297.27,"temp_max":297.27,"pressure":1002,"humidity":44,"sea_level":1002,"grnd_level":965},"wind":{"speed":1.54,"deg":37},"clouds":{"all":85},"dt":1579680286,"sys":{"country":"AU","sunrise":1579633540,"sunset":1579685088},"timezone":39600,"id":2171281,"name":"Club
3234
+ Terrace","cod":200}'
3235
+ http_version:
3236
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3237
+ - request:
3238
+ method: get
3239
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-31.997&lon=149.053
3240
+ body:
3241
+ encoding: US-ASCII
3242
+ string: ''
3243
+ headers:
3244
+ User-Agent:
3245
+ - Faraday v0.15.4
3246
+ response:
3247
+ status:
3248
+ code: 200
3249
+ message: OK
3250
+ headers:
3251
+ server:
3252
+ - openresty
3253
+ date:
3254
+ - Wed, 22 Jan 2020 08:04:46 GMT
3255
+ content-type:
3256
+ - application/json; charset=utf-8
3257
+ content-length:
3258
+ - '464'
3259
+ connection:
3260
+ - close
3261
+ x-cache-key:
3262
+ - "/data/2.5/weather?lat=-32&lon=149.05"
3263
+ access-control-allow-origin:
3264
+ - "*"
3265
+ access-control-allow-credentials:
3266
+ - 'true'
3267
+ access-control-allow-methods:
3268
+ - GET, POST
3269
+ body:
3270
+ encoding: UTF-8
3271
+ string: '{"coord":{"lon":149.05,"lat":-32},"weather":[{"id":800,"main":"Clear","description":"clear
3272
+ sky","icon":"01d"}],"base":"stations","main":{"temp":307.98,"feels_like":302,"temp_min":306.48,"temp_max":309.15,"pressure":1005,"humidity":11},"visibility":10000,"wind":{"speed":5.7,"deg":340},"clouds":{"all":0},"dt":1579680286,"sys":{"type":1,"id":9596,"country":"AU","sunrise":1579634302,"sunset":1579684287},"timezone":39600,"id":2167467,"name":"Elong
3273
+ Elong","cod":200}'
3274
+ http_version:
3275
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3276
+ - request:
3277
+ method: get
3278
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-28.334&lon=148.328
3279
+ body:
3280
+ encoding: US-ASCII
3281
+ string: ''
3282
+ headers:
3283
+ User-Agent:
3284
+ - Faraday v0.15.4
3285
+ response:
3286
+ status:
3287
+ code: 200
3288
+ message: OK
3289
+ headers:
3290
+ server:
3291
+ - openresty
3292
+ date:
3293
+ - Wed, 22 Jan 2020 08:04:46 GMT
3294
+ content-type:
3295
+ - application/json; charset=utf-8
3296
+ content-length:
3297
+ - '466'
3298
+ connection:
3299
+ - close
3300
+ x-cache-key:
3301
+ - "/data/2.5/weather?lat=-28.33&lon=148.33"
3302
+ access-control-allow-origin:
3303
+ - "*"
3304
+ access-control-allow-credentials:
3305
+ - 'true'
3306
+ access-control-allow-methods:
3307
+ - GET, POST
3308
+ body:
3309
+ encoding: UTF-8
3310
+ string: '{"coord":{"lon":148.33,"lat":-28.33},"weather":[{"id":800,"main":"Clear","description":"clear
3311
+ sky","icon":"01d"}],"base":"model","main":{"temp":309.44,"feels_like":306.87,"temp_min":309.44,"temp_max":309.44,"pressure":1005,"humidity":15,"sea_level":1005,"grnd_level":984},"wind":{"speed":2.21,"deg":280},"clouds":{"all":6},"dt":1579680286,"sys":{"country":"AU","sunrise":1579634922,"sunset":1579684013},"timezone":36000,"id":2177036,"name":"Balonne
3312
+ Shire","cod":200}'
3313
+ http_version:
3314
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3315
+ - request:
3316
+ method: get
3317
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-28.333&lon=148.339
3318
+ body:
3319
+ encoding: US-ASCII
3320
+ string: ''
3321
+ headers:
3322
+ User-Agent:
3323
+ - Faraday v0.15.4
3324
+ response:
3325
+ status:
3326
+ code: 200
3327
+ message: OK
3328
+ headers:
3329
+ server:
3330
+ - openresty
3331
+ date:
3332
+ - Wed, 22 Jan 2020 08:04:46 GMT
3333
+ content-type:
3334
+ - application/json; charset=utf-8
3335
+ content-length:
3336
+ - '466'
3337
+ connection:
3338
+ - close
3339
+ x-cache-key:
3340
+ - "/data/2.5/weather?lat=-28.33&lon=148.34"
3341
+ access-control-allow-origin:
3342
+ - "*"
3343
+ access-control-allow-credentials:
3344
+ - 'true'
3345
+ access-control-allow-methods:
3346
+ - GET, POST
3347
+ body:
3348
+ encoding: UTF-8
3349
+ string: '{"coord":{"lon":148.34,"lat":-28.33},"weather":[{"id":800,"main":"Clear","description":"clear
3350
+ sky","icon":"01d"}],"base":"model","main":{"temp":309.44,"feels_like":306.87,"temp_min":309.44,"temp_max":309.44,"pressure":1005,"humidity":15,"sea_level":1005,"grnd_level":984},"wind":{"speed":2.21,"deg":280},"clouds":{"all":6},"dt":1579680286,"sys":{"country":"AU","sunrise":1579634920,"sunset":1579684010},"timezone":36000,"id":2177036,"name":"Balonne
3351
+ Shire","cod":200}'
3352
+ http_version:
3353
+ recorded_at: Wed, 22 Jan 2020 08:04:46 GMT
3354
+ - request:
3355
+ method: get
3356
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-28.344&lon=148.33
3357
+ body:
3358
+ encoding: US-ASCII
3359
+ string: ''
3360
+ headers:
3361
+ User-Agent:
3362
+ - Faraday v0.15.4
3363
+ response:
3364
+ status:
3365
+ code: 200
3366
+ message: OK
3367
+ headers:
3368
+ server:
3369
+ - openresty
3370
+ date:
3371
+ - Wed, 22 Jan 2020 08:04:47 GMT
3372
+ content-type:
3373
+ - application/json; charset=utf-8
3374
+ content-length:
3375
+ - '466'
3376
+ connection:
3377
+ - close
3378
+ x-cache-key:
3379
+ - "/data/2.5/weather?lat=-28.34&lon=148.33"
3380
+ access-control-allow-origin:
3381
+ - "*"
3382
+ access-control-allow-credentials:
3383
+ - 'true'
3384
+ access-control-allow-methods:
3385
+ - GET, POST
3386
+ body:
3387
+ encoding: UTF-8
3388
+ string: '{"coord":{"lon":148.33,"lat":-28.34},"weather":[{"id":800,"main":"Clear","description":"clear
3389
+ sky","icon":"01d"}],"base":"model","main":{"temp":309.44,"feels_like":306.87,"temp_min":309.44,"temp_max":309.44,"pressure":1005,"humidity":15,"sea_level":1005,"grnd_level":984},"wind":{"speed":2.21,"deg":280},"clouds":{"all":6},"dt":1579680287,"sys":{"country":"AU","sunrise":1579634921,"sunset":1579684014},"timezone":36000,"id":2177036,"name":"Balonne
3390
+ Shire","cod":200}'
3391
+ http_version:
3392
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3393
+ - request:
3394
+ method: get
3395
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-28.227&lon=151.407
3396
+ body:
3397
+ encoding: US-ASCII
3398
+ string: ''
3399
+ headers:
3400
+ User-Agent:
3401
+ - Faraday v0.15.4
3402
+ response:
3403
+ status:
3404
+ code: 200
3405
+ message: OK
3406
+ headers:
3407
+ server:
3408
+ - openresty
3409
+ date:
3410
+ - Wed, 22 Jan 2020 08:04:47 GMT
3411
+ content-type:
3412
+ - application/json; charset=utf-8
3413
+ content-length:
3414
+ - '478'
3415
+ connection:
3416
+ - close
3417
+ x-cache-key:
3418
+ - "/data/2.5/weather?lat=-28.23&lon=151.41"
3419
+ access-control-allow-origin:
3420
+ - "*"
3421
+ access-control-allow-credentials:
3422
+ - 'true'
3423
+ access-control-allow-methods:
3424
+ - GET, POST
3425
+ body:
3426
+ encoding: UTF-8
3427
+ string: '{"coord":{"lon":151.41,"lat":-28.23},"weather":[{"id":500,"main":"Rain","description":"light
3428
+ rain","icon":"10d"}],"base":"stations","main":{"temp":299.26,"feels_like":301.85,"temp_min":299.26,"temp_max":299.26,"pressure":1013,"humidity":62},"wind":{"speed":0.45,"deg":330,"gust":4.47},"rain":{"3h":0.88},"clouds":{"all":69},"dt":1579680287,"sys":{"type":3,"id":20785,"country":"AU","sunrise":1579634194,"sunset":1579683262},"timezone":36000,"id":2164882,"name":"Gore","cod":200}'
3429
+ http_version:
3430
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3431
+ - request:
3432
+ method: get
3433
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-28.714&lon=148.089
3434
+ body:
3435
+ encoding: US-ASCII
3436
+ string: ''
3437
+ headers:
3438
+ User-Agent:
3439
+ - Faraday v0.15.4
3440
+ response:
3441
+ status:
3442
+ code: 200
3443
+ message: OK
3444
+ headers:
3445
+ server:
3446
+ - openresty
3447
+ date:
3448
+ - Wed, 22 Jan 2020 08:04:47 GMT
3449
+ content-type:
3450
+ - application/json; charset=utf-8
3451
+ content-length:
3452
+ - '464'
3453
+ connection:
3454
+ - close
3455
+ x-cache-key:
3456
+ - "/data/2.5/weather?lat=-28.71&lon=148.09"
3457
+ access-control-allow-origin:
3458
+ - "*"
3459
+ access-control-allow-credentials:
3460
+ - 'true'
3461
+ access-control-allow-methods:
3462
+ - GET, POST
3463
+ body:
3464
+ encoding: UTF-8
3465
+ string: '{"coord":{"lon":148.09,"lat":-28.71},"weather":[{"id":801,"main":"Clouds","description":"few
3466
+ clouds","icon":"02d"}],"base":"model","main":{"temp":308.4,"feels_like":304.86,"temp_min":308.4,"temp_max":308.4,"pressure":1005,"humidity":13,"sea_level":1005,"grnd_level":986},"wind":{"speed":2.83,"deg":320},"clouds":{"all":22},"dt":1579680287,"sys":{"country":"AU","sunrise":1579634935,"sunset":1579684115},"timezone":36000,"id":2168726,"name":"Dirranbandi","cod":200}'
3467
+ http_version:
3468
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3469
+ - request:
3470
+ method: get
3471
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.0&lon=150.212
3472
+ body:
3473
+ encoding: US-ASCII
3474
+ string: ''
3475
+ headers:
3476
+ User-Agent:
3477
+ - Faraday v0.15.4
3478
+ response:
3479
+ status:
3480
+ code: 200
3481
+ message: OK
3482
+ headers:
3483
+ server:
3484
+ - openresty
3485
+ date:
3486
+ - Wed, 22 Jan 2020 08:04:47 GMT
3487
+ content-type:
3488
+ - application/json; charset=utf-8
3489
+ content-length:
3490
+ - '462'
3491
+ connection:
3492
+ - close
3493
+ x-cache-key:
3494
+ - "/data/2.5/weather?lat=-30&lon=150.21"
3495
+ access-control-allow-origin:
3496
+ - "*"
3497
+ access-control-allow-credentials:
3498
+ - 'true'
3499
+ access-control-allow-methods:
3500
+ - GET, POST
3501
+ body:
3502
+ encoding: UTF-8
3503
+ string: '{"coord":{"lon":150.21,"lat":-30},"weather":[{"id":800,"main":"Clear","description":"clear
3504
+ sky","icon":"01d"}],"base":"stations","main":{"temp":312.62,"feels_like":308.81,"temp_min":312.15,"temp_max":313.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680287,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634272,"sunset":1579683761},"timezone":39600,"id":2163051,"name":"Horton","cod":200}'
3505
+ http_version:
3506
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3507
+ - request:
3508
+ method: get
3509
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-30.088&lon=150.043
3510
+ body:
3511
+ encoding: US-ASCII
3512
+ string: ''
3513
+ headers:
3514
+ User-Agent:
3515
+ - Faraday v0.15.4
3516
+ response:
3517
+ status:
3518
+ code: 200
3519
+ message: OK
3520
+ headers:
3521
+ server:
3522
+ - openresty
3523
+ date:
3524
+ - Wed, 22 Jan 2020 08:04:47 GMT
3525
+ content-type:
3526
+ - application/json; charset=utf-8
3527
+ content-length:
3528
+ - '466'
3529
+ connection:
3530
+ - close
3531
+ x-cache-key:
3532
+ - "/data/2.5/weather?lat=-30.09&lon=150.04"
3533
+ access-control-allow-origin:
3534
+ - "*"
3535
+ access-control-allow-credentials:
3536
+ - 'true'
3537
+ access-control-allow-methods:
3538
+ - GET, POST
3539
+ body:
3540
+ encoding: UTF-8
3541
+ string: '{"coord":{"lon":150.04,"lat":-30.09},"weather":[{"id":800,"main":"Clear","description":"clear
3542
+ sky","icon":"01d"}],"base":"stations","main":{"temp":312.18,"feels_like":308.31,"temp_min":311.48,"temp_max":313.15,"pressure":1005,"humidity":10},"visibility":10000,"wind":{"speed":3.1,"deg":360},"clouds":{"all":0},"dt":1579680287,"sys":{"type":1,"id":9563,"country":"AU","sunrise":1579634302,"sunset":1579683812},"timezone":39600,"id":2167767,"name":"Edgeroi","cod":200}'
3543
+ http_version:
3544
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3545
+ - request:
3546
+ method: get
3547
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-12.735&lon=143.236
3548
+ body:
3549
+ encoding: US-ASCII
3550
+ string: ''
3551
+ headers:
3552
+ User-Agent:
3553
+ - Faraday v0.15.4
3554
+ response:
3555
+ status:
3556
+ code: 200
3557
+ message: OK
3558
+ headers:
3559
+ server:
3560
+ - openresty
3561
+ date:
3562
+ - Wed, 22 Jan 2020 08:04:47 GMT
3563
+ content-type:
3564
+ - application/json; charset=utf-8
3565
+ content-length:
3566
+ - '472'
3567
+ connection:
3568
+ - close
3569
+ x-cache-key:
3570
+ - "/data/2.5/weather?lat=-12.73&lon=143.24"
3571
+ access-control-allow-origin:
3572
+ - "*"
3573
+ access-control-allow-credentials:
3574
+ - 'true'
3575
+ access-control-allow-methods:
3576
+ - GET, POST
3577
+ body:
3578
+ encoding: UTF-8
3579
+ string: '{"coord":{"lon":143.24,"lat":-12.74},"weather":[{"id":804,"main":"Clouds","description":"overcast
3580
+ clouds","icon":"04d"}],"base":"model","main":{"temp":301.36,"feels_like":305.86,"temp_min":301.36,"temp_max":301.36,"pressure":1009,"humidity":74,"sea_level":1009,"grnd_level":995},"wind":{"speed":1.16,"deg":257},"clouds":{"all":100},"dt":1579680287,"sys":{"country":"AU","sunrise":1579637745,"sunset":1579683633},"timezone":36000,"id":7839573,"name":"Cook
3581
+ Shire","cod":200}'
3582
+ http_version:
3583
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3584
+ - request:
3585
+ method: get
3586
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-12.734&lon=143.247
3587
+ body:
3588
+ encoding: US-ASCII
3589
+ string: ''
3590
+ headers:
3591
+ User-Agent:
3592
+ - Faraday v0.15.4
3593
+ response:
3594
+ status:
3595
+ code: 200
3596
+ message: OK
3597
+ headers:
3598
+ server:
3599
+ - openresty
3600
+ date:
3601
+ - Wed, 22 Jan 2020 08:04:47 GMT
3602
+ content-type:
3603
+ - application/json; charset=utf-8
3604
+ content-length:
3605
+ - '481'
3606
+ connection:
3607
+ - close
3608
+ x-cache-key:
3609
+ - "/data/2.5/weather?lat=-12.73&lon=143.25"
3610
+ access-control-allow-origin:
3611
+ - "*"
3612
+ access-control-allow-credentials:
3613
+ - 'true'
3614
+ access-control-allow-methods:
3615
+ - GET, POST
3616
+ body:
3617
+ encoding: UTF-8
3618
+ string: '{"coord":{"lon":143.25,"lat":-12.73},"weather":[{"id":500,"main":"Rain","description":"light
3619
+ rain","icon":"10d"}],"base":"model","main":{"temp":303.8,"feels_like":308.79,"temp_min":303.8,"temp_max":303.8,"pressure":1009,"humidity":74,"sea_level":1009,"grnd_level":1008},"wind":{"speed":2.47,"deg":249},"rain":{"3h":1.94},"clouds":{"all":98},"dt":1579680287,"sys":{"country":"AU","sunrise":1579637744,"sunset":1579683630},"timezone":36000,"id":7839573,"name":"Cook
3620
+ Shire","cod":200}'
3621
+ http_version:
3622
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3623
+ - request:
3624
+ method: get
3625
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-17.937&lon=145.278
3626
+ body:
3627
+ encoding: US-ASCII
3628
+ string: ''
3629
+ headers:
3630
+ User-Agent:
3631
+ - Faraday v0.15.4
3632
+ response:
3633
+ status:
3634
+ code: 200
3635
+ message: OK
3636
+ headers:
3637
+ server:
3638
+ - openresty
3639
+ date:
3640
+ - Wed, 22 Jan 2020 08:04:47 GMT
3641
+ content-type:
3642
+ - application/json; charset=utf-8
3643
+ content-length:
3644
+ - '490'
3645
+ connection:
3646
+ - close
3647
+ x-cache-key:
3648
+ - "/data/2.5/weather?lat=-17.94&lon=145.28"
3649
+ access-control-allow-origin:
3650
+ - "*"
3651
+ access-control-allow-credentials:
3652
+ - 'true'
3653
+ access-control-allow-methods:
3654
+ - GET, POST
3655
+ body:
3656
+ encoding: UTF-8
3657
+ string: '{"coord":{"lon":145.28,"lat":-17.94},"weather":[{"id":500,"main":"Rain","description":"light
3658
+ rain","icon":"10d"}],"base":"model","main":{"temp":295.99,"feels_like":299.37,"temp_min":295.99,"temp_max":295.99,"pressure":1009,"humidity":94,"sea_level":1009,"grnd_level":932},"wind":{"speed":1.75,"deg":62},"rain":{"3h":0.88},"clouds":{"all":100},"dt":1579680287,"sys":{"country":"AU","sunrise":1579636761,"sunset":1579683638},"timezone":36000,"id":2162679,"name":"Innot
3659
+ Hot Springs","cod":200}'
3660
+ http_version:
3661
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3662
+ - request:
3663
+ method: get
3664
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-19.357&lon=144.601
3665
+ body:
3666
+ encoding: US-ASCII
3667
+ string: ''
3668
+ headers:
3669
+ User-Agent:
3670
+ - Faraday v0.15.4
3671
+ response:
3672
+ status:
3673
+ code: 200
3674
+ message: OK
3675
+ headers:
3676
+ server:
3677
+ - openresty
3678
+ date:
3679
+ - Wed, 22 Jan 2020 08:04:47 GMT
3680
+ content-type:
3681
+ - application/json; charset=utf-8
3682
+ content-length:
3683
+ - '482'
3684
+ connection:
3685
+ - close
3686
+ x-cache-key:
3687
+ - "/data/2.5/weather?lat=-19.36&lon=144.6"
3688
+ access-control-allow-origin:
3689
+ - "*"
3690
+ access-control-allow-credentials:
3691
+ - 'true'
3692
+ access-control-allow-methods:
3693
+ - GET, POST
3694
+ body:
3695
+ encoding: UTF-8
3696
+ string: '{"coord":{"lon":144.6,"lat":-19.36},"weather":[{"id":500,"main":"Rain","description":"light
3697
+ rain","icon":"10d"}],"base":"model","main":{"temp":297.72,"feels_like":300.17,"temp_min":297.72,"temp_max":297.72,"pressure":1008,"humidity":76,"sea_level":1008,"grnd_level":929},"wind":{"speed":1.82,"deg":123},"rain":{"3h":2.81},"clouds":{"all":99},"dt":1579680287,"sys":{"country":"AU","sunrise":1579636784,"sunset":1579683942},"timezone":36000,"id":2152274,"name":"Queensland","cod":200}'
3698
+ http_version:
3699
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3700
+ - request:
3701
+ method: get
3702
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-19.355&lon=144.613
3703
+ body:
3704
+ encoding: US-ASCII
3705
+ string: ''
3706
+ headers:
3707
+ User-Agent:
3708
+ - Faraday v0.15.4
3709
+ response:
3710
+ status:
3711
+ code: 200
3712
+ message: OK
3713
+ headers:
3714
+ server:
3715
+ - openresty
3716
+ date:
3717
+ - Wed, 22 Jan 2020 08:04:47 GMT
3718
+ content-type:
3719
+ - application/json; charset=utf-8
3720
+ content-length:
3721
+ - '483'
3722
+ connection:
3723
+ - close
3724
+ x-cache-key:
3725
+ - "/data/2.5/weather?lat=-19.36&lon=144.61"
3726
+ access-control-allow-origin:
3727
+ - "*"
3728
+ access-control-allow-credentials:
3729
+ - 'true'
3730
+ access-control-allow-methods:
3731
+ - GET, POST
3732
+ body:
3733
+ encoding: UTF-8
3734
+ string: '{"coord":{"lon":144.61,"lat":-19.36},"weather":[{"id":500,"main":"Rain","description":"light
3735
+ rain","icon":"10d"}],"base":"model","main":{"temp":297.72,"feels_like":300.17,"temp_min":297.72,"temp_max":297.72,"pressure":1008,"humidity":76,"sea_level":1008,"grnd_level":929},"wind":{"speed":1.82,"deg":123},"rain":{"3h":2.81},"clouds":{"all":99},"dt":1579680287,"sys":{"country":"AU","sunrise":1579636781,"sunset":1579683940},"timezone":36000,"id":2152274,"name":"Queensland","cod":200}'
3736
+ http_version:
3737
+ recorded_at: Wed, 22 Jan 2020 08:04:47 GMT
3738
+ - request:
3739
+ method: get
3740
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-19.365&lon=144.614
3741
+ body:
3742
+ encoding: US-ASCII
3743
+ string: ''
3744
+ headers:
3745
+ User-Agent:
3746
+ - Faraday v0.15.4
3747
+ response:
3748
+ status:
3749
+ code: 200
3750
+ message: OK
3751
+ headers:
3752
+ server:
3753
+ - openresty
3754
+ date:
3755
+ - Wed, 22 Jan 2020 08:04:48 GMT
3756
+ content-type:
3757
+ - application/json; charset=utf-8
3758
+ content-length:
3759
+ - '483'
3760
+ connection:
3761
+ - close
3762
+ x-cache-key:
3763
+ - "/data/2.5/weather?lat=-19.36&lon=144.61"
3764
+ access-control-allow-origin:
3765
+ - "*"
3766
+ access-control-allow-credentials:
3767
+ - 'true'
3768
+ access-control-allow-methods:
3769
+ - GET, POST
3770
+ body:
3771
+ encoding: UTF-8
3772
+ string: '{"coord":{"lon":144.61,"lat":-19.36},"weather":[{"id":500,"main":"Rain","description":"light
3773
+ rain","icon":"10d"}],"base":"model","main":{"temp":297.72,"feels_like":300.17,"temp_min":297.72,"temp_max":297.72,"pressure":1008,"humidity":76,"sea_level":1008,"grnd_level":929},"wind":{"speed":1.82,"deg":123},"rain":{"3h":2.81},"clouds":{"all":99},"dt":1579680287,"sys":{"country":"AU","sunrise":1579636781,"sunset":1579683940},"timezone":36000,"id":2152274,"name":"Queensland","cod":200}'
3774
+ http_version:
3775
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
3776
+ - request:
3777
+ method: get
3778
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-22.171&lon=148.893
3779
+ body:
3780
+ encoding: US-ASCII
3781
+ string: ''
3782
+ headers:
3783
+ User-Agent:
3784
+ - Faraday v0.15.4
3785
+ response:
3786
+ status:
3787
+ code: 200
3788
+ message: OK
3789
+ headers:
3790
+ server:
3791
+ - openresty
3792
+ date:
3793
+ - Wed, 22 Jan 2020 08:04:48 GMT
3794
+ content-type:
3795
+ - application/json; charset=utf-8
3796
+ content-length:
3797
+ - '456'
3798
+ connection:
3799
+ - close
3800
+ x-cache-key:
3801
+ - "/data/2.5/weather?lat=-22.17&lon=148.89"
3802
+ access-control-allow-origin:
3803
+ - "*"
3804
+ access-control-allow-credentials:
3805
+ - 'true'
3806
+ access-control-allow-methods:
3807
+ - GET, POST
3808
+ body:
3809
+ encoding: UTF-8
3810
+ string: '{"coord":{"lon":148.89,"lat":-22.17},"weather":[{"id":800,"main":"Clear","description":"clear
3811
+ sky","icon":"01d"}],"base":"model","main":{"temp":299.49,"feels_like":300.23,"temp_min":299.49,"temp_max":299.49,"pressure":1009,"humidity":73,"sea_level":1009,"grnd_level":983},"wind":{"speed":4.99,"deg":43},"clouds":{"all":9},"dt":1579680288,"sys":{"country":"AU","sunrise":1579635467,"sunset":1579683199},"timezone":36000,"id":2155628,"name":"Nebo","cod":200}'
3812
+ http_version:
3813
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
3814
+ - request:
3815
+ method: get
3816
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-22.366&lon=150.261
3817
+ body:
3818
+ encoding: US-ASCII
3819
+ string: ''
3820
+ headers:
3821
+ User-Agent:
3822
+ - Faraday v0.15.4
3823
+ response:
3824
+ status:
3825
+ code: 200
3826
+ message: OK
3827
+ headers:
3828
+ server:
3829
+ - openresty
3830
+ date:
3831
+ - Wed, 22 Jan 2020 08:04:48 GMT
3832
+ content-type:
3833
+ - application/json; charset=utf-8
3834
+ content-length:
3835
+ - '463'
3836
+ connection:
3837
+ - close
3838
+ x-cache-key:
3839
+ - "/data/2.5/weather?lat=-22.37&lon=150.26"
3840
+ access-control-allow-origin:
3841
+ - "*"
3842
+ access-control-allow-credentials:
3843
+ - 'true'
3844
+ access-control-allow-methods:
3845
+ - GET, POST
3846
+ body:
3847
+ encoding: UTF-8
3848
+ string: '{"coord":{"lon":150.26,"lat":-22.37},"weather":[{"id":800,"main":"Clear","description":"clear
3849
+ sky","icon":"01d"}],"base":"model","main":{"temp":300.54,"feels_like":303.85,"temp_min":300.54,"temp_max":300.54,"pressure":1010,"humidity":79,"sea_level":1010,"grnd_level":1006},"wind":{"speed":3.1,"deg":19},"clouds":{"all":8},"dt":1579680288,"sys":{"country":"AU","sunrise":1579635117,"sunset":1579682891},"timezone":36000,"id":7839389,"name":"Rockhampton","cod":200}'
3850
+ http_version:
3851
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
3852
+ - request:
3853
+ method: get
3854
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-23.919&lon=148.315
3855
+ body:
3856
+ encoding: US-ASCII
3857
+ string: ''
3858
+ headers:
3859
+ User-Agent:
3860
+ - Faraday v0.15.4
3861
+ response:
3862
+ status:
3863
+ code: 200
3864
+ message: OK
3865
+ headers:
3866
+ server:
3867
+ - openresty
3868
+ date:
3869
+ - Wed, 22 Jan 2020 08:04:48 GMT
3870
+ content-type:
3871
+ - application/json; charset=utf-8
3872
+ content-length:
3873
+ - '485'
3874
+ connection:
3875
+ - close
3876
+ x-cache-key:
3877
+ - "/data/2.5/weather?lat=-23.92&lon=148.31"
3878
+ access-control-allow-origin:
3879
+ - "*"
3880
+ access-control-allow-credentials:
3881
+ - 'true'
3882
+ access-control-allow-methods:
3883
+ - GET, POST
3884
+ body:
3885
+ encoding: UTF-8
3886
+ string: '{"coord":{"lon":148.32,"lat":-23.92},"weather":[{"id":802,"main":"Clouds","description":"scattered
3887
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":310.15,"feels_like":309.18,"temp_min":310.15,"temp_max":310.15,"pressure":1006,"humidity":32},"visibility":10000,"wind":{"speed":5.1,"deg":360},"clouds":{"all":49},"dt":1579680288,"sys":{"type":1,"id":9524,"country":"AU","sunrise":1579635419,"sunset":1579683521},"timezone":36000,"id":7839569,"name":"Central
3888
+ Highlands","cod":200}'
3889
+ http_version:
3890
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
3891
+ - request:
3892
+ method: get
3893
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-23.918&lon=148.324
3894
+ body:
3895
+ encoding: US-ASCII
3896
+ string: ''
3897
+ headers:
3898
+ User-Agent:
3899
+ - Faraday v0.15.4
3900
+ response:
3901
+ status:
3902
+ code: 200
3903
+ message: OK
3904
+ headers:
3905
+ server:
3906
+ - openresty
3907
+ date:
3908
+ - Wed, 22 Jan 2020 08:04:48 GMT
3909
+ content-type:
3910
+ - application/json; charset=utf-8
3911
+ content-length:
3912
+ - '485'
3913
+ connection:
3914
+ - close
3915
+ x-cache-key:
3916
+ - "/data/2.5/weather?lat=-23.92&lon=148.32"
3917
+ access-control-allow-origin:
3918
+ - "*"
3919
+ access-control-allow-credentials:
3920
+ - 'true'
3921
+ access-control-allow-methods:
3922
+ - GET, POST
3923
+ body:
3924
+ encoding: UTF-8
3925
+ string: '{"coord":{"lon":148.32,"lat":-23.92},"weather":[{"id":802,"main":"Clouds","description":"scattered
3926
+ clouds","icon":"03d"}],"base":"stations","main":{"temp":310.15,"feels_like":309.18,"temp_min":310.15,"temp_max":310.15,"pressure":1006,"humidity":32},"visibility":10000,"wind":{"speed":5.1,"deg":360},"clouds":{"all":49},"dt":1579680288,"sys":{"type":1,"id":9524,"country":"AU","sunrise":1579635419,"sunset":1579683521},"timezone":36000,"id":7839569,"name":"Central
3927
+ Highlands","cod":200}'
3928
+ http_version:
3929
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
3930
+ - request:
3931
+ method: get
3932
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-24.412&lon=149.665
3933
+ body:
3934
+ encoding: US-ASCII
3935
+ string: ''
3936
+ headers:
3937
+ User-Agent:
3938
+ - Faraday v0.15.4
3939
+ response:
3940
+ status:
3941
+ code: 200
3942
+ message: OK
3943
+ headers:
3944
+ server:
3945
+ - openresty
3946
+ date:
3947
+ - Wed, 22 Jan 2020 08:04:48 GMT
3948
+ content-type:
3949
+ - application/json; charset=utf-8
3950
+ content-length:
3951
+ - '477'
3952
+ connection:
3953
+ - close
3954
+ x-cache-key:
3955
+ - "/data/2.5/weather?lat=-24.41&lon=149.66"
3956
+ access-control-allow-origin:
3957
+ - "*"
3958
+ access-control-allow-credentials:
3959
+ - 'true'
3960
+ access-control-allow-methods:
3961
+ - GET, POST
3962
+ body:
3963
+ encoding: UTF-8
3964
+ string: '{"coord":{"lon":149.67,"lat":-24.41},"weather":[{"id":500,"main":"Rain","description":"light
3965
+ rain","icon":"10d"}],"base":"model","main":{"temp":304.36,"feels_like":303,"temp_min":304.36,"temp_max":304.36,"pressure":1009,"humidity":51,"sea_level":1009,"grnd_level":992},"wind":{"speed":7.12,"deg":32},"rain":{"3h":0.13},"clouds":{"all":25},"dt":1579680288,"sys":{"country":"AU","sunrise":1579635041,"sunset":1579683250},"timezone":36000,"id":2176910,"name":"Baralaba","cod":200}'
3966
+ http_version:
3967
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
3968
+ - request:
3969
+ method: get
3970
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-24.448&lon=149.487
3971
+ body:
3972
+ encoding: US-ASCII
3973
+ string: ''
3974
+ headers:
3975
+ User-Agent:
3976
+ - Faraday v0.15.4
3977
+ response:
3978
+ status:
3979
+ code: 200
3980
+ message: OK
3981
+ headers:
3982
+ server:
3983
+ - openresty
3984
+ date:
3985
+ - Wed, 22 Jan 2020 08:04:48 GMT
3986
+ content-type:
3987
+ - application/json; charset=utf-8
3988
+ content-length:
3989
+ - '479'
3990
+ connection:
3991
+ - close
3992
+ x-cache-key:
3993
+ - "/data/2.5/weather?lat=-24.45&lon=149.49"
3994
+ access-control-allow-origin:
3995
+ - "*"
3996
+ access-control-allow-credentials:
3997
+ - 'true'
3998
+ access-control-allow-methods:
3999
+ - GET, POST
4000
+ body:
4001
+ encoding: UTF-8
4002
+ string: '{"coord":{"lon":149.49,"lat":-24.45},"weather":[{"id":500,"main":"Rain","description":"light
4003
+ rain","icon":"10d"}],"base":"model","main":{"temp":304.36,"feels_like":303,"temp_min":304.36,"temp_max":304.36,"pressure":1009,"humidity":51,"sea_level":1009,"grnd_level":992},"wind":{"speed":7.12,"deg":32},"rain":{"3h":0.13},"clouds":{"all":25},"dt":1579680288,"sys":{"country":"AU","sunrise":1579635080,"sunset":1579683298},"timezone":36000,"id":2142940,"name":"Woorabinda","cod":200}'
4004
+ http_version:
4005
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
4006
+ - request:
4007
+ method: get
4008
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-24.427&lon=149.626
4009
+ body:
4010
+ encoding: US-ASCII
4011
+ string: ''
4012
+ headers:
4013
+ User-Agent:
4014
+ - Faraday v0.15.4
4015
+ response:
4016
+ status:
4017
+ code: 200
4018
+ message: OK
4019
+ headers:
4020
+ server:
4021
+ - openresty
4022
+ date:
4023
+ - Wed, 22 Jan 2020 08:04:48 GMT
4024
+ content-type:
4025
+ - application/json; charset=utf-8
4026
+ content-length:
4027
+ - '477'
4028
+ connection:
4029
+ - close
4030
+ x-cache-key:
4031
+ - "/data/2.5/weather?lat=-24.43&lon=149.63"
4032
+ access-control-allow-origin:
4033
+ - "*"
4034
+ access-control-allow-credentials:
4035
+ - 'true'
4036
+ access-control-allow-methods:
4037
+ - GET, POST
4038
+ body:
4039
+ encoding: UTF-8
4040
+ string: '{"coord":{"lon":149.63,"lat":-24.43},"weather":[{"id":500,"main":"Rain","description":"light
4041
+ rain","icon":"10d"}],"base":"model","main":{"temp":304.36,"feels_like":303,"temp_min":304.36,"temp_max":304.36,"pressure":1009,"humidity":51,"sea_level":1009,"grnd_level":992},"wind":{"speed":7.12,"deg":32},"rain":{"3h":0.13},"clouds":{"all":25},"dt":1579680288,"sys":{"country":"AU","sunrise":1579635049,"sunset":1579683262},"timezone":36000,"id":2176910,"name":"Baralaba","cod":200}'
4042
+ http_version:
4043
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
4044
+ - request:
4045
+ method: get
4046
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-24.425&lon=149.636
4047
+ body:
4048
+ encoding: US-ASCII
4049
+ string: ''
4050
+ headers:
4051
+ User-Agent:
4052
+ - Faraday v0.15.4
4053
+ response:
4054
+ status:
4055
+ code: 200
4056
+ message: OK
4057
+ headers:
4058
+ server:
4059
+ - openresty
4060
+ date:
4061
+ - Wed, 22 Jan 2020 08:04:48 GMT
4062
+ content-type:
4063
+ - application/json; charset=utf-8
4064
+ content-length:
4065
+ - '477'
4066
+ connection:
4067
+ - close
4068
+ x-cache-key:
4069
+ - "/data/2.5/weather?lat=-24.43&lon=149.64"
4070
+ access-control-allow-origin:
4071
+ - "*"
4072
+ access-control-allow-credentials:
4073
+ - 'true'
4074
+ access-control-allow-methods:
4075
+ - GET, POST
4076
+ body:
4077
+ encoding: UTF-8
4078
+ string: '{"coord":{"lon":149.64,"lat":-24.43},"weather":[{"id":500,"main":"Rain","description":"light
4079
+ rain","icon":"10d"}],"base":"model","main":{"temp":304.36,"feels_like":303,"temp_min":304.36,"temp_max":304.36,"pressure":1009,"humidity":51,"sea_level":1009,"grnd_level":992},"wind":{"speed":7.12,"deg":32},"rain":{"3h":0.13},"clouds":{"all":25},"dt":1579680288,"sys":{"country":"AU","sunrise":1579635047,"sunset":1579683259},"timezone":36000,"id":2176910,"name":"Baralaba","cod":200}'
4080
+ http_version:
4081
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
4082
+ - request:
4083
+ method: get
4084
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-24.421&lon=149.667
4085
+ body:
4086
+ encoding: US-ASCII
4087
+ string: ''
4088
+ headers:
4089
+ User-Agent:
4090
+ - Faraday v0.15.4
4091
+ response:
4092
+ status:
4093
+ code: 200
4094
+ message: OK
4095
+ headers:
4096
+ server:
4097
+ - openresty
4098
+ date:
4099
+ - Wed, 22 Jan 2020 08:04:48 GMT
4100
+ content-type:
4101
+ - application/json; charset=utf-8
4102
+ content-length:
4103
+ - '477'
4104
+ connection:
4105
+ - close
4106
+ x-cache-key:
4107
+ - "/data/2.5/weather?lat=-24.42&lon=149.67"
4108
+ access-control-allow-origin:
4109
+ - "*"
4110
+ access-control-allow-credentials:
4111
+ - 'true'
4112
+ access-control-allow-methods:
4113
+ - GET, POST
4114
+ body:
4115
+ encoding: UTF-8
4116
+ string: '{"coord":{"lon":149.67,"lat":-24.42},"weather":[{"id":500,"main":"Rain","description":"light
4117
+ rain","icon":"10d"}],"base":"model","main":{"temp":304.36,"feels_like":303,"temp_min":304.36,"temp_max":304.36,"pressure":1009,"humidity":51,"sea_level":1009,"grnd_level":992},"wind":{"speed":7.12,"deg":32},"rain":{"3h":0.13},"clouds":{"all":25},"dt":1579680288,"sys":{"country":"AU","sunrise":1579635040,"sunset":1579683251},"timezone":36000,"id":2176910,"name":"Baralaba","cod":200}'
4118
+ http_version:
4119
+ recorded_at: Wed, 22 Jan 2020 08:04:48 GMT
4120
+ - request:
4121
+ method: get
4122
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-24.436&lon=149.628
4123
+ body:
4124
+ encoding: US-ASCII
4125
+ string: ''
4126
+ headers:
4127
+ User-Agent:
4128
+ - Faraday v0.15.4
4129
+ response:
4130
+ status:
4131
+ code: 200
4132
+ message: OK
4133
+ headers:
4134
+ server:
4135
+ - openresty
4136
+ date:
4137
+ - Wed, 22 Jan 2020 08:04:49 GMT
4138
+ content-type:
4139
+ - application/json; charset=utf-8
4140
+ content-length:
4141
+ - '477'
4142
+ connection:
4143
+ - close
4144
+ x-cache-key:
4145
+ - "/data/2.5/weather?lat=-24.44&lon=149.63"
4146
+ access-control-allow-origin:
4147
+ - "*"
4148
+ access-control-allow-credentials:
4149
+ - 'true'
4150
+ access-control-allow-methods:
4151
+ - GET, POST
4152
+ body:
4153
+ encoding: UTF-8
4154
+ string: '{"coord":{"lon":149.63,"lat":-24.44},"weather":[{"id":500,"main":"Rain","description":"light
4155
+ rain","icon":"10d"}],"base":"model","main":{"temp":304.36,"feels_like":303,"temp_min":304.36,"temp_max":304.36,"pressure":1009,"humidity":51,"sea_level":1009,"grnd_level":992},"wind":{"speed":7.12,"deg":32},"rain":{"3h":0.13},"clouds":{"all":25},"dt":1579680289,"sys":{"country":"AU","sunrise":1579635048,"sunset":1579683263},"timezone":36000,"id":2176910,"name":"Baralaba","cod":200}'
4156
+ http_version:
4157
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4158
+ - request:
4159
+ method: get
4160
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-24.435&lon=149.638
4161
+ body:
4162
+ encoding: US-ASCII
4163
+ string: ''
4164
+ headers:
4165
+ User-Agent:
4166
+ - Faraday v0.15.4
4167
+ response:
4168
+ status:
4169
+ code: 200
4170
+ message: OK
4171
+ headers:
4172
+ server:
4173
+ - openresty
4174
+ date:
4175
+ - Wed, 22 Jan 2020 08:04:49 GMT
4176
+ content-type:
4177
+ - application/json; charset=utf-8
4178
+ content-length:
4179
+ - '477'
4180
+ connection:
4181
+ - close
4182
+ x-cache-key:
4183
+ - "/data/2.5/weather?lat=-24.43&lon=149.64"
4184
+ access-control-allow-origin:
4185
+ - "*"
4186
+ access-control-allow-credentials:
4187
+ - 'true'
4188
+ access-control-allow-methods:
4189
+ - GET, POST
4190
+ body:
4191
+ encoding: UTF-8
4192
+ string: '{"coord":{"lon":149.64,"lat":-24.43},"weather":[{"id":500,"main":"Rain","description":"light
4193
+ rain","icon":"10d"}],"base":"model","main":{"temp":304.36,"feels_like":303,"temp_min":304.36,"temp_max":304.36,"pressure":1009,"humidity":51,"sea_level":1009,"grnd_level":992},"wind":{"speed":7.12,"deg":32},"rain":{"3h":0.13},"clouds":{"all":25},"dt":1579680288,"sys":{"country":"AU","sunrise":1579635047,"sunset":1579683259},"timezone":36000,"id":2176910,"name":"Baralaba","cod":200}'
4194
+ http_version:
4195
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4196
+ - request:
4197
+ method: get
4198
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-25.268&lon=150.155
4199
+ body:
4200
+ encoding: US-ASCII
4201
+ string: ''
4202
+ headers:
4203
+ User-Agent:
4204
+ - Faraday v0.15.4
4205
+ response:
4206
+ status:
4207
+ code: 200
4208
+ message: OK
4209
+ headers:
4210
+ server:
4211
+ - openresty
4212
+ date:
4213
+ - Wed, 22 Jan 2020 08:04:49 GMT
4214
+ content-type:
4215
+ - application/json; charset=utf-8
4216
+ content-length:
4217
+ - '464'
4218
+ connection:
4219
+ - close
4220
+ x-cache-key:
4221
+ - "/data/2.5/weather?lat=-25.27&lon=150.16"
4222
+ access-control-allow-origin:
4223
+ - "*"
4224
+ access-control-allow-credentials:
4225
+ - 'true'
4226
+ access-control-allow-methods:
4227
+ - GET, POST
4228
+ body:
4229
+ encoding: UTF-8
4230
+ string: '{"coord":{"lon":150.16,"lat":-25.27},"weather":[{"id":803,"main":"Clouds","description":"broken
4231
+ clouds","icon":"04d"}],"base":"model","main":{"temp":303.3,"feels_like":306.57,"temp_min":303.3,"temp_max":303.3,"pressure":1010,"humidity":56,"sea_level":1010,"grnd_level":982},"wind":{"speed":0.88,"deg":336},"clouds":{"all":67},"dt":1579680289,"sys":{"country":"AU","sunrise":1579634830,"sunset":1579683226},"timezone":36000,"id":2146901,"name":"Theodore","cod":200}'
4232
+ http_version:
4233
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4234
+ - request:
4235
+ method: get
4236
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-25.284&lon=150.899
4237
+ body:
4238
+ encoding: US-ASCII
4239
+ string: ''
4240
+ headers:
4241
+ User-Agent:
4242
+ - Faraday v0.15.4
4243
+ response:
4244
+ status:
4245
+ code: 200
4246
+ message: OK
4247
+ headers:
4248
+ server:
4249
+ - openresty
4250
+ date:
4251
+ - Wed, 22 Jan 2020 08:04:49 GMT
4252
+ content-type:
4253
+ - application/json; charset=utf-8
4254
+ content-length:
4255
+ - '478'
4256
+ connection:
4257
+ - close
4258
+ x-cache-key:
4259
+ - "/data/2.5/weather?lat=-25.28&lon=150.9"
4260
+ access-control-allow-origin:
4261
+ - "*"
4262
+ access-control-allow-credentials:
4263
+ - 'true'
4264
+ access-control-allow-methods:
4265
+ - GET, POST
4266
+ body:
4267
+ encoding: UTF-8
4268
+ string: '{"coord":{"lon":150.9,"lat":-25.28},"weather":[{"id":500,"main":"Rain","description":"light
4269
+ rain","icon":"10d"}],"base":"model","main":{"temp":300.59,"feels_like":302.44,"temp_min":300.59,"temp_max":300.59,"pressure":1010,"humidity":67,"sea_level":1010,"grnd_level":984},"wind":{"speed":3.16,"deg":58},"rain":{"3h":0.94},"clouds":{"all":65},"dt":1579680289,"sys":{"country":"AU","sunrise":1579634651,"sunset":1579683050},"timezone":36000,"id":2169585,"name":"Cynthia","cod":200}'
4270
+ http_version:
4271
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4272
+ - request:
4273
+ method: get
4274
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-25.282&lon=150.909
4275
+ body:
4276
+ encoding: US-ASCII
4277
+ string: ''
4278
+ headers:
4279
+ User-Agent:
4280
+ - Faraday v0.15.4
4281
+ response:
4282
+ status:
4283
+ code: 200
4284
+ message: OK
4285
+ headers:
4286
+ server:
4287
+ - openresty
4288
+ date:
4289
+ - Wed, 22 Jan 2020 08:04:49 GMT
4290
+ content-type:
4291
+ - application/json; charset=utf-8
4292
+ content-length:
4293
+ - '479'
4294
+ connection:
4295
+ - close
4296
+ x-cache-key:
4297
+ - "/data/2.5/weather?lat=-25.28&lon=150.91"
4298
+ access-control-allow-origin:
4299
+ - "*"
4300
+ access-control-allow-credentials:
4301
+ - 'true'
4302
+ access-control-allow-methods:
4303
+ - GET, POST
4304
+ body:
4305
+ encoding: UTF-8
4306
+ string: '{"coord":{"lon":150.91,"lat":-25.28},"weather":[{"id":500,"main":"Rain","description":"light
4307
+ rain","icon":"10d"}],"base":"model","main":{"temp":300.59,"feels_like":302.44,"temp_min":300.59,"temp_max":300.59,"pressure":1010,"humidity":67,"sea_level":1010,"grnd_level":984},"wind":{"speed":3.16,"deg":58},"rain":{"3h":0.94},"clouds":{"all":65},"dt":1579680289,"sys":{"country":"AU","sunrise":1579634649,"sunset":1579683048},"timezone":36000,"id":2169585,"name":"Cynthia","cod":200}'
4308
+ http_version:
4309
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4310
+ - request:
4311
+ method: get
4312
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-25.799&lon=152.105
4313
+ body:
4314
+ encoding: US-ASCII
4315
+ string: ''
4316
+ headers:
4317
+ User-Agent:
4318
+ - Faraday v0.15.4
4319
+ response:
4320
+ status:
4321
+ code: 200
4322
+ message: OK
4323
+ headers:
4324
+ server:
4325
+ - openresty
4326
+ date:
4327
+ - Wed, 22 Jan 2020 08:04:49 GMT
4328
+ content-type:
4329
+ - application/json; charset=utf-8
4330
+ content-length:
4331
+ - '475'
4332
+ connection:
4333
+ - close
4334
+ x-cache-key:
4335
+ - "/data/2.5/weather?lat=-25.8&lon=152.1"
4336
+ access-control-allow-origin:
4337
+ - "*"
4338
+ access-control-allow-credentials:
4339
+ - 'true'
4340
+ access-control-allow-methods:
4341
+ - GET, POST
4342
+ body:
4343
+ encoding: UTF-8
4344
+ string: '{"coord":{"lon":152.1,"lat":-25.8},"weather":[{"id":500,"main":"Rain","description":"light
4345
+ rain","icon":"10d"}],"base":"model","main":{"temp":297.9,"feels_like":300.56,"temp_min":297.9,"temp_max":297.9,"pressure":1011,"humidity":85,"sea_level":1011,"grnd_level":978},"wind":{"speed":2.96,"deg":40},"rain":{"3h":1.44},"clouds":{"all":35},"dt":1579680289,"sys":{"country":"AU","sunrise":1579634305,"sunset":1579682820},"timezone":36000,"id":2160732,"name":"Lakeside","cod":200}'
4346
+ http_version:
4347
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4348
+ - request:
4349
+ method: get
4350
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-26.014&lon=151.22
4351
+ body:
4352
+ encoding: US-ASCII
4353
+ string: ''
4354
+ headers:
4355
+ User-Agent:
4356
+ - Faraday v0.15.4
4357
+ response:
4358
+ status:
4359
+ code: 200
4360
+ message: OK
4361
+ headers:
4362
+ server:
4363
+ - openresty
4364
+ date:
4365
+ - Wed, 22 Jan 2020 08:04:49 GMT
4366
+ content-type:
4367
+ - application/json; charset=utf-8
4368
+ content-length:
4369
+ - '484'
4370
+ connection:
4371
+ - close
4372
+ x-cache-key:
4373
+ - "/data/2.5/weather?lat=-26.01&lon=151.22"
4374
+ access-control-allow-origin:
4375
+ - "*"
4376
+ access-control-allow-credentials:
4377
+ - 'true'
4378
+ access-control-allow-methods:
4379
+ - GET, POST
4380
+ body:
4381
+ encoding: UTF-8
4382
+ string: '{"coord":{"lon":151.22,"lat":-26.01},"weather":[{"id":501,"main":"Rain","description":"moderate
4383
+ rain","icon":"10d"}],"base":"model","main":{"temp":297.99,"feels_like":300.21,"temp_min":297.99,"temp_max":297.99,"pressure":1010,"humidity":81,"sea_level":1010,"grnd_level":968},"wind":{"speed":3.06,"deg":64},"rain":{"3h":3.19},"clouds":{"all":86},"dt":1579680289,"sys":{"country":"AU","sunrise":1579634493,"sunset":1579683054},"timezone":36000,"id":2174734,"name":"Boondooma","cod":200}'
4384
+ http_version:
4385
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4386
+ - request:
4387
+ method: get
4388
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-26.012&lon=151.231
4389
+ body:
4390
+ encoding: US-ASCII
4391
+ string: ''
4392
+ headers:
4393
+ User-Agent:
4394
+ - Faraday v0.15.4
4395
+ response:
4396
+ status:
4397
+ code: 200
4398
+ message: OK
4399
+ headers:
4400
+ server:
4401
+ - openresty
4402
+ date:
4403
+ - Wed, 22 Jan 2020 08:04:49 GMT
4404
+ content-type:
4405
+ - application/json; charset=utf-8
4406
+ content-length:
4407
+ - '484'
4408
+ connection:
4409
+ - close
4410
+ x-cache-key:
4411
+ - "/data/2.5/weather?lat=-26.01&lon=151.23"
4412
+ access-control-allow-origin:
4413
+ - "*"
4414
+ access-control-allow-credentials:
4415
+ - 'true'
4416
+ access-control-allow-methods:
4417
+ - GET, POST
4418
+ body:
4419
+ encoding: UTF-8
4420
+ string: '{"coord":{"lon":151.23,"lat":-26.01},"weather":[{"id":501,"main":"Rain","description":"moderate
4421
+ rain","icon":"10d"}],"base":"model","main":{"temp":297.99,"feels_like":300.21,"temp_min":297.99,"temp_max":297.99,"pressure":1010,"humidity":81,"sea_level":1010,"grnd_level":968},"wind":{"speed":3.06,"deg":64},"rain":{"3h":3.19},"clouds":{"all":86},"dt":1579680289,"sys":{"country":"AU","sunrise":1579634491,"sunset":1579683052},"timezone":36000,"id":2174734,"name":"Boondooma","cod":200}'
4422
+ http_version:
4423
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4424
+ - request:
4425
+ method: get
4426
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-10.073&lon=148.196
4427
+ body:
4428
+ encoding: US-ASCII
4429
+ string: ''
4430
+ headers:
4431
+ User-Agent:
4432
+ - Faraday v0.15.4
4433
+ response:
4434
+ status:
4435
+ code: 200
4436
+ message: OK
4437
+ headers:
4438
+ server:
4439
+ - openresty
4440
+ date:
4441
+ - Wed, 22 Jan 2020 08:04:49 GMT
4442
+ content-type:
4443
+ - application/json; charset=utf-8
4444
+ content-length:
4445
+ - '479'
4446
+ connection:
4447
+ - close
4448
+ x-cache-key:
4449
+ - "/data/2.5/weather?lat=-10.07&lon=148.2"
4450
+ access-control-allow-origin:
4451
+ - "*"
4452
+ access-control-allow-credentials:
4453
+ - 'true'
4454
+ access-control-allow-methods:
4455
+ - GET, POST
4456
+ body:
4457
+ encoding: UTF-8
4458
+ string: '{"coord":{"lon":148.2,"lat":-10.07},"weather":[{"id":802,"main":"Clouds","description":"scattered
4459
+ clouds","icon":"03d"}],"base":"model","main":{"temp":301.32,"feels_like":304.08,"temp_min":301.32,"temp_max":301.32,"pressure":1010,"humidity":68,"sea_level":1010,"grnd_level":1002},"wind":{"speed":2.54,"deg":266},"clouds":{"all":37},"dt":1579680289,"sys":{"country":"PG","sunrise":1579636799,"sunset":1579682199},"timezone":36000,"id":2089478,"name":"Northern
4460
+ Province","cod":200}'
4461
+ http_version:
4462
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4463
+ - request:
4464
+ method: get
4465
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-13.973&lon=123.312
4466
+ body:
4467
+ encoding: US-ASCII
4468
+ string: ''
4469
+ headers:
4470
+ User-Agent:
4471
+ - Faraday v0.15.4
4472
+ response:
4473
+ status:
4474
+ code: 200
4475
+ message: OK
4476
+ headers:
4477
+ server:
4478
+ - openresty
4479
+ date:
4480
+ - Wed, 22 Jan 2020 08:04:49 GMT
4481
+ content-type:
4482
+ - application/json; charset=utf-8
4483
+ content-length:
4484
+ - '453'
4485
+ connection:
4486
+ - close
4487
+ x-cache-key:
4488
+ - "/data/2.5/weather?lat=-13.97&lon=123.31"
4489
+ access-control-allow-origin:
4490
+ - "*"
4491
+ access-control-allow-credentials:
4492
+ - 'true'
4493
+ access-control-allow-methods:
4494
+ - GET, POST
4495
+ body:
4496
+ encoding: UTF-8
4497
+ string: '{"coord":{"lon":123.31,"lat":-13.97},"weather":[{"id":500,"main":"Rain","description":"light
4498
+ rain","icon":"10d"}],"base":"model","main":{"temp":302.35,"feels_like":304.58,"temp_min":302.35,"temp_max":302.35,"pressure":1008,"humidity":81,"sea_level":1008,"grnd_level":1008},"wind":{"speed":6.52,"deg":250},"rain":{"3h":0.13},"clouds":{"all":25},"dt":1579680289,"sys":{"sunrise":1579642416,"sunset":1579688531},"timezone":28800,"id":0,"name":"","cod":200}'
4499
+ http_version:
4500
+ recorded_at: Wed, 22 Jan 2020 08:04:49 GMT
4501
+ - request:
4502
+ method: get
4503
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-22.824&lon=120.904
4504
+ body:
4505
+ encoding: US-ASCII
4506
+ string: ''
4507
+ headers:
4508
+ User-Agent:
4509
+ - Faraday v0.15.4
4510
+ response:
4511
+ status:
4512
+ code: 200
4513
+ message: OK
4514
+ headers:
4515
+ server:
4516
+ - openresty
4517
+ date:
4518
+ - Wed, 22 Jan 2020 08:04:50 GMT
4519
+ content-type:
4520
+ - application/json; charset=utf-8
4521
+ content-length:
4522
+ - '458'
4523
+ connection:
4524
+ - close
4525
+ x-cache-key:
4526
+ - "/data/2.5/weather?lat=-22.82&lon=120.9"
4527
+ access-control-allow-origin:
4528
+ - "*"
4529
+ access-control-allow-credentials:
4530
+ - 'true'
4531
+ access-control-allow-methods:
4532
+ - GET, POST
4533
+ body:
4534
+ encoding: UTF-8
4535
+ string: '{"coord":{"lon":120.9,"lat":-22.82},"weather":[{"id":800,"main":"Clear","description":"clear
4536
+ sky","icon":"01d"}],"base":"model","main":{"temp":312.3,"feels_like":307.51,"temp_min":312.3,"temp_max":312.3,"pressure":1003,"humidity":15,"sea_level":1003,"grnd_level":946},"wind":{"speed":6.09,"deg":245},"clouds":{"all":1},"dt":1579680290,"sys":{"country":"AU","sunrise":1579642120,"sunset":1579689984},"timezone":28800,"id":2064403,"name":"Nullagine","cod":200}'
4537
+ http_version:
4538
+ recorded_at: Wed, 22 Jan 2020 08:04:50 GMT
4539
+ - request:
4540
+ method: get
4541
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-22.826&lon=120.893
4542
+ body:
4543
+ encoding: US-ASCII
4544
+ string: ''
4545
+ headers:
4546
+ User-Agent:
4547
+ - Faraday v0.15.4
4548
+ response:
4549
+ status:
4550
+ code: 200
4551
+ message: OK
4552
+ headers:
4553
+ server:
4554
+ - openresty
4555
+ date:
4556
+ - Wed, 22 Jan 2020 08:04:50 GMT
4557
+ content-type:
4558
+ - application/json; charset=utf-8
4559
+ content-length:
4560
+ - '456'
4561
+ connection:
4562
+ - close
4563
+ x-cache-key:
4564
+ - "/data/2.5/weather?lat=-22.83&lon=120.89"
4565
+ access-control-allow-origin:
4566
+ - "*"
4567
+ access-control-allow-credentials:
4568
+ - 'true'
4569
+ access-control-allow-methods:
4570
+ - GET, POST
4571
+ body:
4572
+ encoding: UTF-8
4573
+ string: '{"coord":{"lon":120.89,"lat":-22.83},"weather":[{"id":800,"main":"Clear","description":"clear
4574
+ sky","icon":"01d"}],"base":"model","main":{"temp":312.3,"feels_like":307.51,"temp_min":312.3,"temp_max":312.3,"pressure":1003,"humidity":15,"sea_level":1003,"grnd_level":946},"wind":{"speed":6.09,"deg":245},"clouds":{"all":1},"dt":1579680290,"sys":{"country":"AU","sunrise":1579642121,"sunset":1579689988},"timezone":28800,"id":2064768,"name":"Newman","cod":200}'
4575
+ http_version:
4576
+ recorded_at: Wed, 22 Jan 2020 08:04:50 GMT
4577
+ - request:
4578
+ method: get
4579
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-21.866&lon=115.737
4580
+ body:
4581
+ encoding: US-ASCII
4582
+ string: ''
4583
+ headers:
4584
+ User-Agent:
4585
+ - Faraday v0.15.4
4586
+ response:
4587
+ status:
4588
+ code: 200
4589
+ message: OK
4590
+ headers:
4591
+ server:
4592
+ - openresty
4593
+ date:
4594
+ - Wed, 22 Jan 2020 08:04:50 GMT
4595
+ content-type:
4596
+ - application/json; charset=utf-8
4597
+ content-length:
4598
+ - '459'
4599
+ connection:
4600
+ - close
4601
+ x-cache-key:
4602
+ - "/data/2.5/weather?lat=-21.87&lon=115.74"
4603
+ access-control-allow-origin:
4604
+ - "*"
4605
+ access-control-allow-credentials:
4606
+ - 'true'
4607
+ access-control-allow-methods:
4608
+ - GET, POST
4609
+ body:
4610
+ encoding: UTF-8
4611
+ string: '{"coord":{"lon":115.74,"lat":-21.87},"weather":[{"id":800,"main":"Clear","description":"clear
4612
+ sky","icon":"01d"}],"base":"model","main":{"temp":314.16,"feels_like":309.64,"temp_min":314.16,"temp_max":314.16,"pressure":1005,"humidity":11,"sea_level":1005,"grnd_level":996},"wind":{"speed":4.76,"deg":250},"clouds":{"all":0},"dt":1579680290,"sys":{"country":"AU","sunrise":1579643458,"sunset":1579691123},"timezone":28800,"id":2064155,"name":"Onslow","cod":200}'
4613
+ http_version:
4614
+ recorded_at: Wed, 22 Jan 2020 08:04:50 GMT
4615
+ - request:
4616
+ method: get
4617
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-21.026&lon=117.091
4618
+ body:
4619
+ encoding: US-ASCII
4620
+ string: ''
4621
+ headers:
4622
+ User-Agent:
4623
+ - Faraday v0.15.4
4624
+ response:
4625
+ status:
4626
+ code: 200
4627
+ message: OK
4628
+ headers:
4629
+ server:
4630
+ - openresty
4631
+ date:
4632
+ - Wed, 22 Jan 2020 08:04:50 GMT
4633
+ content-type:
4634
+ - application/json; charset=utf-8
4635
+ content-length:
4636
+ - '462'
4637
+ connection:
4638
+ - close
4639
+ x-cache-key:
4640
+ - "/data/2.5/weather?lat=-21.03&lon=117.09"
4641
+ access-control-allow-origin:
4642
+ - "*"
4643
+ access-control-allow-credentials:
4644
+ - 'true'
4645
+ access-control-allow-methods:
4646
+ - GET, POST
4647
+ body:
4648
+ encoding: UTF-8
4649
+ string: '{"coord":{"lon":117.09,"lat":-21.03},"weather":[{"id":800,"main":"Clear","description":"clear
4650
+ sky","icon":"01d"}],"base":"model","main":{"temp":310.18,"feels_like":305.37,"temp_min":310.18,"temp_max":310.18,"pressure":1005,"humidity":27,"sea_level":1005,"grnd_level":994},"wind":{"speed":9.13,"deg":291},"clouds":{"all":0},"dt":1579680290,"sys":{"country":"AU","sunrise":1579643220,"sunset":1579690713},"timezone":28800,"id":7839634,"name":"Roebourne","cod":200}'
4651
+ http_version:
4652
+ recorded_at: Wed, 22 Jan 2020 08:04:50 GMT
4653
+ - request:
4654
+ method: get
4655
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-15.027&lon=124.777
4656
+ body:
4657
+ encoding: US-ASCII
4658
+ string: ''
4659
+ headers:
4660
+ User-Agent:
4661
+ - Faraday v0.15.4
4662
+ response:
4663
+ status:
4664
+ code: 200
4665
+ message: OK
4666
+ headers:
4667
+ server:
4668
+ - openresty
4669
+ date:
4670
+ - Wed, 22 Jan 2020 08:04:50 GMT
4671
+ content-type:
4672
+ - application/json; charset=utf-8
4673
+ content-length:
4674
+ - '452'
4675
+ connection:
4676
+ - close
4677
+ x-cache-key:
4678
+ - "/data/2.5/weather?lat=-15.03&lon=124.78"
4679
+ access-control-allow-origin:
4680
+ - "*"
4681
+ access-control-allow-credentials:
4682
+ - 'true'
4683
+ access-control-allow-methods:
4684
+ - GET, POST
4685
+ body:
4686
+ encoding: UTF-8
4687
+ string: '{"coord":{"lon":124.78,"lat":-15.03},"weather":[{"id":500,"main":"Rain","description":"light
4688
+ rain","icon":"10d"}],"base":"model","main":{"temp":302.37,"feels_like":303.5,"temp_min":302.37,"temp_max":302.37,"pressure":1007,"humidity":78,"sea_level":1007,"grnd_level":1005},"wind":{"speed":7.54,"deg":257},"rain":{"3h":0.13},"clouds":{"all":27},"dt":1579680290,"sys":{"sunrise":1579641963,"sunset":1579688278},"timezone":28800,"id":0,"name":"","cod":200}'
4689
+ http_version:
4690
+ recorded_at: Wed, 22 Jan 2020 08:04:50 GMT
4691
+ - request:
4692
+ method: get
4693
+ uri: http://api.openweathermap.org/data/2.5/weather?appid=<OPEN_WEATHER_API_KEY>&lat=-13.971&lon=123.322
4694
+ body:
4695
+ encoding: US-ASCII
4696
+ string: ''
4697
+ headers:
4698
+ User-Agent:
4699
+ - Faraday v0.15.4
4700
+ response:
4701
+ status:
4702
+ code: 200
4703
+ message: OK
4704
+ headers:
4705
+ server:
4706
+ - openresty
4707
+ date:
4708
+ - Wed, 22 Jan 2020 08:04:50 GMT
4709
+ content-type:
4710
+ - application/json; charset=utf-8
4711
+ content-length:
4712
+ - '453'
4713
+ connection:
4714
+ - close
4715
+ x-cache-key:
4716
+ - "/data/2.5/weather?lat=-13.97&lon=123.32"
4717
+ access-control-allow-origin:
4718
+ - "*"
4719
+ access-control-allow-credentials:
4720
+ - 'true'
4721
+ access-control-allow-methods:
4722
+ - GET, POST
4723
+ body:
4724
+ encoding: UTF-8
4725
+ string: '{"coord":{"lon":123.32,"lat":-13.97},"weather":[{"id":500,"main":"Rain","description":"light
4726
+ rain","icon":"10d"}],"base":"model","main":{"temp":302.35,"feels_like":304.58,"temp_min":302.35,"temp_max":302.35,"pressure":1008,"humidity":81,"sea_level":1008,"grnd_level":1008},"wind":{"speed":6.52,"deg":250},"rain":{"3h":0.13},"clouds":{"all":25},"dt":1579680290,"sys":{"sunrise":1579642413,"sunset":1579688529},"timezone":28800,"id":0,"name":"","cod":200}'
4727
+ http_version:
4728
+ recorded_at: Wed, 22 Jan 2020 08:04:50 GMT
4729
+ - request:
4730
+ method: get
4731
+ uri: https://nrt4.modaps.eosdis.nasa.gov/api/v2/content/archives/FIRMS/viirs/Global/VIIRS_I_Global_VNP14IMGTDL_NRT_2020022.txt
4732
+ body:
4733
+ encoding: US-ASCII
4734
+ string: ''
4735
+ headers:
4736
+ User-Agent:
4737
+ - Faraday v0.15.4
4738
+ Authorization:
4739
+ - Bearer <NASA_API_KEY>
4740
+ response:
4741
+ status:
4742
+ code: 404
4743
+ message: Not Found
4744
+ headers:
4745
+ server:
4746
+ - openresty
4747
+ date:
4748
+ - Wed, 22 Jan 2020 08:04:50 GMT
4749
+ content-type:
4750
+ - text/html;charset=UTF-8
4751
+ content-length:
4752
+ - '9'
4753
+ connection:
4754
+ - close
4755
+ access-control-allow-credentials:
4756
+ - 'true'
4757
+ x-frame-options:
4758
+ - SAMEORIGIN
4759
+ strict-transport-security:
4760
+ - max-age=31536000; includeSubDomains
4761
+ body:
4762
+ encoding: UTF-8
4763
+ string: Not Found
4764
+ http_version:
4765
+ recorded_at: Wed, 22 Jan 2020 08:04:50 GMT
4766
+ recorded_with: VCR 5.0.0