weather-forecasts 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile +3 -3
- data/README.md +1 -1
- data/lib/weather_forecasts.rb +20 -1
- data/lib/weather_forecasts/client/version.rb +1 -1
- data/spec/fixtures/vcr_cassettes/select_by_days_query.yml +74 -72
- data/spec/fixtures/vcr_cassettes/select_coordinates_by_cities_query.yml +6 -6
- data/spec/fixtures/vcr_cassettes/select_coordinates_by_zip_query.yml +7 -7
- data/spec/fixtures/vcr_cassettes/select_corner_coordinates_query.yml +7 -7
- data/spec/fixtures/vcr_cassettes/select_gridpoint_coordinates_query.yml +7 -7
- data/spec/fixtures/vcr_cassettes/select_hourly_query.yml +192 -150
- data/spec/fixtures/vcr_cassettes/select_linepoint_coordinates_query.yml +6 -6
- data/spec/fixtures/vcr_cassettes/select_query.yml +707 -673
- data/spec/fixtures/vcr_cassettes/select_square_coordinates_query.yml +7 -7
- data/spec/lib/{ndfd → weather_forecasts}/client/query/query_property_spec.rb +6 -6
- data/spec/lib/{ndfd → weather_forecasts}/client/query/select_by_days_query_spec.rb +2 -2
- data/spec/lib/{ndfd → weather_forecasts}/client/query/select_coordinates_by_cities_query_spec.rb +2 -2
- data/spec/lib/{ndfd → weather_forecasts}/client/query/select_coordinates_by_zip_query_spec.rb +5 -3
- data/spec/lib/{ndfd → weather_forecasts}/client/query/select_corner_coordinates_query_spec.rb +3 -3
- data/spec/lib/{ndfd → weather_forecasts}/client/query/select_gridpoint_coordinates_query_spec.rb +3 -3
- data/spec/lib/{ndfd → weather_forecasts}/client/query/select_hourly_query_spec.rb +2 -2
- data/spec/lib/{ndfd → weather_forecasts}/client/query/select_linepoint_coordinates_query_spec.rb +3 -3
- data/spec/lib/{ndfd → weather_forecasts}/client/query/select_query_spec.rb +2 -2
- data/spec/lib/{ndfd → weather_forecasts}/client/query/select_square_coordinates_query_spec.rb +3 -3
- data/spec/lib/{ndfd → weather_forecasts}/client/query/selection_attributes_spec.rb +0 -0
- data/spec/lib/{ndfd → weather_forecasts}/client/query_spec.rb +3 -3
- data/spec/lib/{ndfd → weather_forecasts}/client_spec.rb +9 -9
- data/spec/spec_helper.rb +5 -1
- data/weather-forecasts.gemspec +3 -3
- metadata +41 -42
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5bd5c641047465f3584ee15a3719392686f80ece
|
|
4
|
+
data.tar.gz: b3cfb8bf024e4100ee2dd5f9844e2409d878889a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b7ca2efd54f3cda18cbdbf7234978dfbb40996301b81404f6a71f89dcfa4aedc58d710591ea0cc158eb702530db557115edf3951e3b03d7e186b11863058216
|
|
7
|
+
data.tar.gz: 92705ebb5c8cdb07df82db3aa7982b3c8e04b51d01129e15af7410b1ac16cfc3aa6b54bfb50d7e8356156bf20cfd05b2d9fd60837237389ba2a6ed225aeeb2ba
|
data/.gitignore
CHANGED
data/Gemfile
CHANGED
|
@@ -2,9 +2,9 @@ source 'https://rubygems.org'
|
|
|
2
2
|
gemspec
|
|
3
3
|
|
|
4
4
|
group :test do
|
|
5
|
-
gem 'simplecov', '~>0.
|
|
5
|
+
gem 'simplecov', '~>0.9.0', :require => false
|
|
6
6
|
gem 'coveralls', :require => false
|
|
7
|
-
gem 'webmock', '~>1.
|
|
7
|
+
gem 'webmock', '~>1.18.0'
|
|
8
8
|
gem 'vcr', '~>2.9.0'
|
|
9
|
-
gem 'rspec', '~>
|
|
9
|
+
gem 'rspec', '~>3.0.0'
|
|
10
10
|
end
|
data/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://gemnasium.com/alakra/weather-forecasts)
|
|
6
6
|
[](https://coveralls.io/r/alakra/weather-forecasts?branch=master)
|
|
7
7
|
[](https://codeclimate.com/github/alakra/weather-forecasts)
|
|
8
|
-
[](http://inch-ci.org/github/alakra/weather-forecasts)
|
|
9
9
|
|
|
10
10
|
## Summary
|
|
11
11
|
|
data/lib/weather_forecasts.rb
CHANGED
|
@@ -1,18 +1,37 @@
|
|
|
1
|
+
# The weather forecasts library retrieves weather forecast data from
|
|
2
|
+
# NOAA. The dataset that is specifically being retrieved is from the
|
|
3
|
+
# NDFD ( National Digital Forecast Database )/
|
|
4
|
+
#
|
|
5
|
+
# Author:: Angelo Lakra (mailto:angelo.lakra@gmail.com)
|
|
6
|
+
# License:: MIT License
|
|
7
|
+
|
|
1
8
|
module WeatherForecasts
|
|
2
9
|
module_function
|
|
3
10
|
|
|
11
|
+
# Returns the currently set environment (`:test, :development or
|
|
12
|
+
# :production`)
|
|
13
|
+
#
|
|
14
|
+
# This can be set from the shell environment using the `ENV`
|
|
15
|
+
# variable.
|
|
16
|
+
|
|
4
17
|
def env
|
|
5
|
-
@@env ||= (ENV['ENV'] || :production)
|
|
18
|
+
@@env ||= (ENV['ENV'].to_sym || :production)
|
|
6
19
|
end
|
|
7
20
|
|
|
21
|
+
# Returns a new instance of WeatherForecasts::Client
|
|
22
|
+
|
|
8
23
|
def client(options = {})
|
|
9
24
|
Client.new(options)
|
|
10
25
|
end
|
|
11
26
|
|
|
27
|
+
# Returns the root path from the install path of the project
|
|
28
|
+
|
|
12
29
|
def root_path
|
|
13
30
|
File.expand_path(File.join(File.dirname(__FILE__), "../"))
|
|
14
31
|
end
|
|
15
32
|
|
|
33
|
+
# Returns the vendor path from the install path of the project
|
|
34
|
+
|
|
16
35
|
def vendor_path
|
|
17
36
|
File.join(root_path, "vendor")
|
|
18
37
|
end
|
|
@@ -31,7 +31,7 @@ http_interactions:
|
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/wsdl+xml
|
|
33
33
|
Date:
|
|
34
|
-
-
|
|
34
|
+
- Mon, 28 Jul 2014 17:52:37 GMT
|
|
35
35
|
Connection:
|
|
36
36
|
- keep-alive
|
|
37
37
|
body:
|
|
@@ -380,7 +380,7 @@ http_interactions:
|
|
|
380
380
|
\ <soap:address location=\"http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php\"/>\n
|
|
381
381
|
\ </port>\n</service>\n\n</definitions>\n"
|
|
382
382
|
http_version:
|
|
383
|
-
recorded_at:
|
|
383
|
+
recorded_at: Mon, 28 Jul 2014 17:52:37 GMT
|
|
384
384
|
- request:
|
|
385
385
|
method: post
|
|
386
386
|
uri: http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php
|
|
@@ -388,7 +388,7 @@ http_interactions:
|
|
|
388
388
|
encoding: UTF-8
|
|
389
389
|
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
390
390
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://graphical.weather.gov/xml/DWMLgen/wsdl/ndfdXML.wsdl"
|
|
391
|
-
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://graphical.weather.gov/xml/DWMLgen/schema/DWML.xsd"><env:Body><tns:NDFDgenByDayLatLonList><listLatLong>38.99,-77.01</listLatLong><startDate>2014-
|
|
391
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://graphical.weather.gov/xml/DWMLgen/schema/DWML.xsd"><env:Body><tns:NDFDgenByDayLatLonList><listLatLong>38.99,-77.01</listLatLong><startDate>2014-07-28T17:52:37Z</startDate><numDay>5</numDay><unit>e</unit><format>24
|
|
392
392
|
hourly</format></tns:NDFDgenByDayLatLonList></env:Body></env:Envelope>
|
|
393
393
|
headers:
|
|
394
394
|
Soapaction:
|
|
@@ -421,11 +421,11 @@ http_interactions:
|
|
|
421
421
|
Cache-Control:
|
|
422
422
|
- max-age=180
|
|
423
423
|
Expires:
|
|
424
|
-
-
|
|
424
|
+
- Mon, 28 Jul 2014 17:55:48 GMT
|
|
425
425
|
Date:
|
|
426
|
-
-
|
|
426
|
+
- Mon, 28 Jul 2014 17:52:48 GMT
|
|
427
427
|
Content-Length:
|
|
428
|
-
- '
|
|
428
|
+
- '9066'
|
|
429
429
|
Connection:
|
|
430
430
|
- keep-alive
|
|
431
431
|
body:
|
|
@@ -438,7 +438,7 @@ http_interactions:
|
|
|
438
438
|
<title>NOAA's National Weather Service Forecast by 24 Hour Period</title>
|
|
439
439
|
<field>meteorological</field>
|
|
440
440
|
<category>forecast</category>
|
|
441
|
-
<creation-date refresh-frequency="PT1H">2014-
|
|
441
|
+
<creation-date refresh-frequency="PT1H">2014-07-28T17:52:47Z</creation-date>
|
|
442
442
|
</product>
|
|
443
443
|
<source>
|
|
444
444
|
<more-information>http://www.nws.noaa.gov/forecasts/xml/</more-information>
|
|
@@ -457,103 +457,105 @@ http_interactions:
|
|
|
457
457
|
<moreWeatherInformation applicable-location="point1">http://forecast.weather.gov/MapClick.php?textField1=38.99&amp;textField2=-77.01</moreWeatherInformation>
|
|
458
458
|
<time-layout time-coordinate="local" summarization="24hourly">
|
|
459
459
|
<layout-key>k-p24h-n5-1</layout-key>
|
|
460
|
-
<start-valid-time>2014-
|
|
461
|
-
<end-valid-time>2014-
|
|
462
|
-
<start-valid-time>2014-
|
|
463
|
-
<end-valid-time>2014-
|
|
464
|
-
<start-valid-time>2014-
|
|
465
|
-
<end-valid-time>2014-
|
|
466
|
-
<start-valid-time>2014-
|
|
467
|
-
<end-valid-time>2014-
|
|
468
|
-
<start-valid-time>2014-
|
|
469
|
-
<end-valid-time>2014-
|
|
460
|
+
<start-valid-time>2014-07-28T06:00:00-04:00</start-valid-time>
|
|
461
|
+
<end-valid-time>2014-07-29T06:00:00-04:00</end-valid-time>
|
|
462
|
+
<start-valid-time>2014-07-29T06:00:00-04:00</start-valid-time>
|
|
463
|
+
<end-valid-time>2014-07-30T06:00:00-04:00</end-valid-time>
|
|
464
|
+
<start-valid-time>2014-07-30T06:00:00-04:00</start-valid-time>
|
|
465
|
+
<end-valid-time>2014-07-31T06:00:00-04:00</end-valid-time>
|
|
466
|
+
<start-valid-time>2014-07-31T06:00:00-04:00</start-valid-time>
|
|
467
|
+
<end-valid-time>2014-08-01T06:00:00-04:00</end-valid-time>
|
|
468
|
+
<start-valid-time>2014-08-01T06:00:00-04:00</start-valid-time>
|
|
469
|
+
<end-valid-time>2014-08-02T06:00:00-04:00</end-valid-time>
|
|
470
470
|
</time-layout>
|
|
471
471
|
<time-layout time-coordinate="local" summarization="12hourly">
|
|
472
472
|
<layout-key>k-p12h-n10-2</layout-key>
|
|
473
|
-
<start-valid-time>2014-
|
|
474
|
-
<end-valid-time>2014-
|
|
475
|
-
<start-valid-time>2014-
|
|
476
|
-
<end-valid-time>2014-
|
|
477
|
-
<start-valid-time>2014-
|
|
478
|
-
<end-valid-time>2014-
|
|
479
|
-
<start-valid-time>2014-
|
|
480
|
-
<end-valid-time>2014-
|
|
481
|
-
<start-valid-time>2014-
|
|
482
|
-
<end-valid-time>2014-
|
|
483
|
-
<start-valid-time>2014-
|
|
484
|
-
<end-valid-time>2014-
|
|
485
|
-
<start-valid-time>2014-
|
|
486
|
-
<end-valid-time>2014-
|
|
487
|
-
<start-valid-time>2014-
|
|
488
|
-
<end-valid-time>2014-
|
|
489
|
-
<start-valid-time>2014-
|
|
490
|
-
<end-valid-time>2014-
|
|
491
|
-
<start-valid-time>2014-
|
|
492
|
-
<end-valid-time>2014-
|
|
473
|
+
<start-valid-time>2014-07-28T06:00:00-04:00</start-valid-time>
|
|
474
|
+
<end-valid-time>2014-07-28T18:00:00-04:00</end-valid-time>
|
|
475
|
+
<start-valid-time>2014-07-28T18:00:00-04:00</start-valid-time>
|
|
476
|
+
<end-valid-time>2014-07-29T06:00:00-04:00</end-valid-time>
|
|
477
|
+
<start-valid-time>2014-07-29T06:00:00-04:00</start-valid-time>
|
|
478
|
+
<end-valid-time>2014-07-29T18:00:00-04:00</end-valid-time>
|
|
479
|
+
<start-valid-time>2014-07-29T18:00:00-04:00</start-valid-time>
|
|
480
|
+
<end-valid-time>2014-07-30T06:00:00-04:00</end-valid-time>
|
|
481
|
+
<start-valid-time>2014-07-30T06:00:00-04:00</start-valid-time>
|
|
482
|
+
<end-valid-time>2014-07-30T18:00:00-04:00</end-valid-time>
|
|
483
|
+
<start-valid-time>2014-07-30T18:00:00-04:00</start-valid-time>
|
|
484
|
+
<end-valid-time>2014-07-31T06:00:00-04:00</end-valid-time>
|
|
485
|
+
<start-valid-time>2014-07-31T06:00:00-04:00</start-valid-time>
|
|
486
|
+
<end-valid-time>2014-07-31T18:00:00-04:00</end-valid-time>
|
|
487
|
+
<start-valid-time>2014-07-31T18:00:00-04:00</start-valid-time>
|
|
488
|
+
<end-valid-time>2014-08-01T06:00:00-04:00</end-valid-time>
|
|
489
|
+
<start-valid-time>2014-08-01T06:00:00-04:00</start-valid-time>
|
|
490
|
+
<end-valid-time>2014-08-01T18:00:00-04:00</end-valid-time>
|
|
491
|
+
<start-valid-time>2014-08-01T18:00:00-04:00</start-valid-time>
|
|
492
|
+
<end-valid-time>2014-08-02T06:00:00-04:00</end-valid-time>
|
|
493
493
|
</time-layout>
|
|
494
494
|
<time-layout time-coordinate="local" summarization="24hourly">
|
|
495
|
-
<layout-key>k-
|
|
496
|
-
<start-valid-time>2014-
|
|
497
|
-
<end-valid-time>2014-
|
|
495
|
+
<layout-key>k-p5d-n1-3</layout-key>
|
|
496
|
+
<start-valid-time>2014-07-28T06:00:00-04:00</start-valid-time>
|
|
497
|
+
<end-valid-time>2014-08-02T06:00:00-04:00</end-valid-time>
|
|
498
498
|
</time-layout>
|
|
499
499
|
<parameters applicable-location="point1">
|
|
500
500
|
<temperature type="maximum" units="Fahrenheit" time-layout="k-p24h-n5-1">
|
|
501
501
|
<name>Daily Maximum Temperature</name>
|
|
502
|
-
<value>87</value>
|
|
503
|
-
<value>76</value>
|
|
504
|
-
<value>76</value>
|
|
505
502
|
<value>83</value>
|
|
503
|
+
<value>79</value>
|
|
504
|
+
<value>81</value>
|
|
505
|
+
<value>84</value>
|
|
506
506
|
<value>83</value>
|
|
507
507
|
</temperature>
|
|
508
508
|
<temperature type="minimum" units="Fahrenheit" time-layout="k-p24h-n5-1">
|
|
509
509
|
<name>Daily Minimum Temperature</name>
|
|
510
|
-
<value>
|
|
511
|
-
<value>
|
|
512
|
-
<value>
|
|
513
|
-
<value>57</value>
|
|
510
|
+
<value>61</value>
|
|
511
|
+
<value>60</value>
|
|
512
|
+
<value>61</value>
|
|
514
513
|
<value>63</value>
|
|
514
|
+
<value>66</value>
|
|
515
515
|
</temperature>
|
|
516
516
|
<probability-of-precipitation type="12 hour" units="percent" time-layout="k-p12h-n10-2">
|
|
517
517
|
<name>12 Hourly Probability of Precipitation</name>
|
|
518
|
-
<value>
|
|
519
|
-
<value>
|
|
520
|
-
<value>
|
|
521
|
-
<value>
|
|
522
|
-
<value>
|
|
523
|
-
<value>
|
|
518
|
+
<value>31</value>
|
|
519
|
+
<value>10</value>
|
|
520
|
+
<value>4</value>
|
|
521
|
+
<value>9</value>
|
|
522
|
+
<value>6</value>
|
|
523
|
+
<value>7</value>
|
|
524
|
+
<value>8</value>
|
|
524
525
|
<value>10</value>
|
|
525
|
-
<value>
|
|
526
|
-
<value>
|
|
527
|
-
<value>0</value>
|
|
526
|
+
<value>17</value>
|
|
527
|
+
<value>19</value>
|
|
528
528
|
</probability-of-precipitation>
|
|
529
529
|
<weather time-layout="k-p24h-n5-1">
|
|
530
530
|
<name>Weather Type, Coverage, and Intensity</name>
|
|
531
|
+
<weather-conditions weather-summary="Chance Rain Showers">
|
|
532
|
+
<value coverage="chance" intensity="light" weather-type="rain showers" qualifier="none"/>
|
|
533
|
+
<value coverage="isolated" intensity="none" additive="and" weather-type="thunderstorms" qualifier="none"/>
|
|
534
|
+
</weather-conditions>
|
|
535
|
+
<weather-conditions weather-summary="Mostly Sunny"/>
|
|
536
|
+
<weather-conditions weather-summary="Mostly Sunny"/>
|
|
531
537
|
<weather-conditions weather-summary="Partly Sunny"/>
|
|
532
|
-
<weather-conditions weather-summary="
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
<
|
|
538
|
+
<weather-conditions weather-summary="Slight Chance Thunderstorms">
|
|
539
|
+
<value coverage="slight chance" intensity="none" weather-type="thunderstorms" qualifier="none"/>
|
|
540
|
+
<value coverage="slight chance" intensity="light" additive="and" weather-type="rain showers" qualifier="none"/>
|
|
541
|
+
</weather-conditions>
|
|
536
542
|
</weather>
|
|
537
543
|
<conditions-icon type="forecast-NWS" time-layout="k-p24h-n5-1">
|
|
538
544
|
<name>Conditions Icons</name>
|
|
545
|
+
<icon-link>http://www.nws.noaa.gov/weather/images/fcicons/hi_shwrs30.jpg</icon-link>
|
|
546
|
+
<icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>
|
|
547
|
+
<icon-link>http://www.nws.noaa.gov/weather/images/fcicons/few.jpg</icon-link>
|
|
539
548
|
<icon-link>http://www.nws.noaa.gov/weather/images/fcicons/sct.jpg</icon-link>
|
|
540
|
-
<icon-link>http://www.nws.noaa.gov/weather/images/fcicons/
|
|
541
|
-
<icon-link>http://www.nws.noaa.gov/weather/images/fcicons/sct.jpg</icon-link>
|
|
542
|
-
<icon-link>http://www.nws.noaa.gov/weather/images/fcicons/sct.jpg</icon-link>
|
|
543
|
-
<icon-link>http://www.nws.noaa.gov/weather/images/fcicons/sct.jpg</icon-link>
|
|
549
|
+
<icon-link>http://www.nws.noaa.gov/weather/images/fcicons/tsra20.jpg</icon-link>
|
|
544
550
|
</conditions-icon>
|
|
545
|
-
<hazards time-layout="k-
|
|
551
|
+
<hazards time-layout="k-p5d-n1-3">
|
|
546
552
|
<name>Watches, Warnings, and Advisories</name>
|
|
547
|
-
<hazard-conditions>
|
|
548
|
-
<hazard hazardCode="SV.A:174" phenomena="Severe Thunderstorm" significance="Watch" eventTrackingNumber="174" hazardType="long duration">
|
|
549
|
-
<hazardTextURL>http://forecast.weather.gov/wwamap/wwatxtget.php?cwa=lwx&amp;wwa=Severe%20Thunderstorm%20Watch</hazardTextURL>
|
|
550
|
-
</hazard>
|
|
551
|
-
</hazard-conditions>
|
|
553
|
+
<hazard-conditions xsi:nil="true"/>
|
|
552
554
|
</hazards>
|
|
553
555
|
</parameters>
|
|
554
556
|
</data>
|
|
555
557
|
</dwml>
|
|
556
558
|
</dwmlByDayOut></ns1:NDFDgenByDayLatLonListResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
|
557
559
|
http_version:
|
|
558
|
-
recorded_at:
|
|
559
|
-
recorded_with: VCR 2.9.
|
|
560
|
+
recorded_at: Mon, 28 Jul 2014 17:52:48 GMT
|
|
561
|
+
recorded_with: VCR 2.9.2
|
|
@@ -31,7 +31,7 @@ http_interactions:
|
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/wsdl+xml
|
|
33
33
|
Date:
|
|
34
|
-
-
|
|
34
|
+
- Mon, 28 Jul 2014 17:52:35 GMT
|
|
35
35
|
Connection:
|
|
36
36
|
- keep-alive
|
|
37
37
|
body:
|
|
@@ -380,7 +380,7 @@ http_interactions:
|
|
|
380
380
|
\ <soap:address location=\"http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php\"/>\n
|
|
381
381
|
\ </port>\n</service>\n\n</definitions>\n"
|
|
382
382
|
http_version:
|
|
383
|
-
recorded_at:
|
|
383
|
+
recorded_at: Mon, 28 Jul 2014 17:52:35 GMT
|
|
384
384
|
- request:
|
|
385
385
|
method: post
|
|
386
386
|
uri: http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php
|
|
@@ -420,9 +420,9 @@ http_interactions:
|
|
|
420
420
|
Cache-Control:
|
|
421
421
|
- max-age=180
|
|
422
422
|
Expires:
|
|
423
|
-
-
|
|
423
|
+
- Mon, 28 Jul 2014 17:55:36 GMT
|
|
424
424
|
Date:
|
|
425
|
-
-
|
|
425
|
+
- Mon, 28 Jul 2014 17:52:36 GMT
|
|
426
426
|
Content-Length:
|
|
427
427
|
- '13799'
|
|
428
428
|
Connection:
|
|
@@ -437,5 +437,5 @@ http_interactions:
|
|
|
437
437
|
</dwml>
|
|
438
438
|
</listLatLonOut></ns1:LatLonListCityNamesResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
|
439
439
|
http_version:
|
|
440
|
-
recorded_at:
|
|
441
|
-
recorded_with: VCR 2.9.
|
|
440
|
+
recorded_at: Mon, 28 Jul 2014 17:52:36 GMT
|
|
441
|
+
recorded_with: VCR 2.9.2
|
|
@@ -31,7 +31,7 @@ http_interactions:
|
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/wsdl+xml
|
|
33
33
|
Date:
|
|
34
|
-
-
|
|
34
|
+
- Mon, 28 Jul 2014 17:52:37 GMT
|
|
35
35
|
Connection:
|
|
36
36
|
- keep-alive
|
|
37
37
|
body:
|
|
@@ -380,7 +380,7 @@ http_interactions:
|
|
|
380
380
|
\ <soap:address location=\"http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php\"/>\n
|
|
381
381
|
\ </port>\n</service>\n\n</definitions>\n"
|
|
382
382
|
http_version:
|
|
383
|
-
recorded_at:
|
|
383
|
+
recorded_at: Mon, 28 Jul 2014 17:52:37 GMT
|
|
384
384
|
- request:
|
|
385
385
|
method: post
|
|
386
386
|
uri: http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php
|
|
@@ -411,7 +411,7 @@ http_interactions:
|
|
|
411
411
|
Server:
|
|
412
412
|
- Apache/2.2.15 (Red Hat)
|
|
413
413
|
X-Nids-Serverid:
|
|
414
|
-
-
|
|
414
|
+
- www5.mo
|
|
415
415
|
X-Soap-Server:
|
|
416
416
|
- NuSOAP/0.9.5 (1.123)
|
|
417
417
|
Content-Length:
|
|
@@ -421,9 +421,9 @@ http_interactions:
|
|
|
421
421
|
Cache-Control:
|
|
422
422
|
- max-age=180
|
|
423
423
|
Expires:
|
|
424
|
-
-
|
|
424
|
+
- Mon, 28 Jul 2014 17:55:37 GMT
|
|
425
425
|
Date:
|
|
426
|
-
-
|
|
426
|
+
- Mon, 28 Jul 2014 17:52:37 GMT
|
|
427
427
|
Connection:
|
|
428
428
|
- keep-alive
|
|
429
429
|
body:
|
|
@@ -437,5 +437,5 @@ http_interactions:
|
|
|
437
437
|
xsi:noNamespaceSchemaLocation='http://graphical.weather.gov/xml/DWMLgen/schema/DWML.xsd'><latLonList>39.5457,-105.002
|
|
438
438
|
39.5946,-105.014</latLonList></dwml></listLatLonOut></ns1:LatLonListZipCodeResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
|
439
439
|
http_version:
|
|
440
|
-
recorded_at:
|
|
441
|
-
recorded_with: VCR 2.9.
|
|
440
|
+
recorded_at: Mon, 28 Jul 2014 17:52:37 GMT
|
|
441
|
+
recorded_with: VCR 2.9.2
|
|
@@ -31,7 +31,7 @@ http_interactions:
|
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/wsdl+xml
|
|
33
33
|
Date:
|
|
34
|
-
-
|
|
34
|
+
- Mon, 28 Jul 2014 17:52:48 GMT
|
|
35
35
|
Connection:
|
|
36
36
|
- keep-alive
|
|
37
37
|
body:
|
|
@@ -380,7 +380,7 @@ http_interactions:
|
|
|
380
380
|
\ <soap:address location=\"http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php\"/>\n
|
|
381
381
|
\ </port>\n</service>\n\n</definitions>\n"
|
|
382
382
|
http_version:
|
|
383
|
-
recorded_at:
|
|
383
|
+
recorded_at: Mon, 28 Jul 2014 17:52:48 GMT
|
|
384
384
|
- request:
|
|
385
385
|
method: post
|
|
386
386
|
uri: http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php
|
|
@@ -418,11 +418,11 @@ http_interactions:
|
|
|
418
418
|
Vary:
|
|
419
419
|
- Accept-Encoding
|
|
420
420
|
Cache-Control:
|
|
421
|
-
- max-age=
|
|
421
|
+
- max-age=180
|
|
422
422
|
Expires:
|
|
423
|
-
-
|
|
423
|
+
- Mon, 28 Jul 2014 17:55:49 GMT
|
|
424
424
|
Date:
|
|
425
|
-
-
|
|
425
|
+
- Mon, 28 Jul 2014 17:52:49 GMT
|
|
426
426
|
Content-Length:
|
|
427
427
|
- '1053'
|
|
428
428
|
Connection:
|
|
@@ -438,5 +438,5 @@ http_interactions:
|
|
|
438
438
|
xsi:noNamespaceSchemaLocation='http://graphical.weather.gov/xml/DWMLgen/schema/DWML.xsd'><minResolution>304.000000</minResolution><latLonList>20.191999,-121.554001
|
|
439
439
|
20.331773,-69.208160 50.105547,-60.885558 49.939721,-130.103438</latLonList></dwml></listLatLonOut></ns1:CornerPointsResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
|
440
440
|
http_version:
|
|
441
|
-
recorded_at:
|
|
442
|
-
recorded_with: VCR 2.9.
|
|
441
|
+
recorded_at: Mon, 28 Jul 2014 17:52:49 GMT
|
|
442
|
+
recorded_with: VCR 2.9.2
|
|
@@ -31,7 +31,7 @@ http_interactions:
|
|
|
31
31
|
Content-Type:
|
|
32
32
|
- application/wsdl+xml
|
|
33
33
|
Date:
|
|
34
|
-
-
|
|
34
|
+
- Mon, 28 Jul 2014 17:52:48 GMT
|
|
35
35
|
Connection:
|
|
36
36
|
- keep-alive
|
|
37
37
|
body:
|
|
@@ -380,7 +380,7 @@ http_interactions:
|
|
|
380
380
|
\ <soap:address location=\"http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php\"/>\n
|
|
381
381
|
\ </port>\n</service>\n\n</definitions>\n"
|
|
382
382
|
http_version:
|
|
383
|
-
recorded_at:
|
|
383
|
+
recorded_at: Mon, 28 Jul 2014 17:52:48 GMT
|
|
384
384
|
- request:
|
|
385
385
|
method: post
|
|
386
386
|
uri: http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php
|
|
@@ -418,11 +418,11 @@ http_interactions:
|
|
|
418
418
|
Vary:
|
|
419
419
|
- Accept-Encoding
|
|
420
420
|
Cache-Control:
|
|
421
|
-
- max-age=
|
|
421
|
+
- max-age=174
|
|
422
422
|
Expires:
|
|
423
|
-
-
|
|
423
|
+
- Mon, 28 Jul 2014 17:55:42 GMT
|
|
424
424
|
Date:
|
|
425
|
-
-
|
|
425
|
+
- Mon, 28 Jul 2014 17:52:48 GMT
|
|
426
426
|
Content-Length:
|
|
427
427
|
- '3586'
|
|
428
428
|
Connection:
|
|
@@ -467,5 +467,5 @@ http_interactions:
|
|
|
467
467
|
39.725028,-104.643652 39.769024,-104.647730 39.813010,-104.651812 39.856986,-104.655897
|
|
468
468
|
39.900953,-104.659985 39.944910,-104.664077 39.988857,-104.668172 40.032794,-104.672271</latLonList></dwml></listLatLonOut></ns1:LatLonListSubgridResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
|
469
469
|
http_version:
|
|
470
|
-
recorded_at:
|
|
471
|
-
recorded_with: VCR 2.9.
|
|
470
|
+
recorded_at: Mon, 28 Jul 2014 17:52:48 GMT
|
|
471
|
+
recorded_with: VCR 2.9.2
|