Ankündigung

Einklappen
Keine Ankündigung bisher.

EDOMI Fatal Error

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

    #16
    ... vielen Dank, das hatte ich nicht gefunden.

    Ich habe jetzt die Version 0.2 mit EXEC-Script erst einmal hier zum Testen angehängt (bitte ".txt" vom Download entfernen).
    Zusätzlich habe ich in der Hilfe des LBS den Verweis hx5 zur Bereitstellung der API-Keys ergänzt.

    Vielleicht kann ja jemand testen - vielen Dank. Wenn es läuft kommt der aktuelle LBS ins Download-Portal.

    19000696_lbs.php.txt

    Kommentar


      #17
      Hallo mars,

      bei mir wird noch nichts ausgegeben. Die Abfrage muss wohl ebenfalls über apixu erfolgen. Das müsste wahrscheinlich so aussehen:
      Code:
      http://api.apixu.com/v1/forecast.json?key=<Key>=<Location>:
      Habe es erfolglos mit
      PHP-Code:
      $url "http://api.apixu.com/v1/forecast.json?key=".$key."=".$location
      versucht.

      Evtl. hilft auch das hier.

      Willst du vielleicht mal einen neuen Thread auf machen?

      Gruß
      Michael

      Kommentar


        #18

        Hallo hx5,

        bei mir wird noch nichts ausgegeben
        ... aber auch kein FATAL-Error. Damit scheint Version 0.2 des LBS robuster und ich werde ihn heute Abend ins Download-Portal stellen.

        Die Abfrage muss wohl ebenfalls über apixu erfolgen
        ... sieht mir auch so aus. Damit sollte dann ein neuer LBS für apixu-Abfrage erstellt werden - kann ich ja in Angriff nehmen.
        Dann gibt es auch einen neuen Thread dafür.

        Dein Code aus dem vorherigen Post wird nicht funktionieren. Schau mal hier. Sollte (ungetestet) so aussehen:
        PHP-Code:
        $url ="http://api.apixu.com/v1/forecast.xml?key=".$key."&q=".$location."&days=5&="

        Gruß Marco

        Kommentar


          #19
          Zitat von mars Beitrag anzeigen
          ... aber auch kein FATAL-Error.


          Sollte (ungetestet) so aussehen:
          PHP-Code:
          $url ="http://api.apixu.com/v1/forecast.xml?key=".$key."&q=".$location."&days=5&="
          Hat leider nicht funktioniert. Wahrscheinlich ist XML-Teil anders aufgebaut:
          Code:
          <root>
          <location>
          <name>Paris</name>
          <region>Ile-de-France</region>
          <country>France</country>
          <lat>48.87</lat>
          <lon>2.33</lon>
          <tz_id>Europe/Paris</tz_id>
          <localtime_epoch>1491248570</localtime_epoch>
          <localtime>2017-04-03 21:42</localtime>
          </location>
          <current>
          <last_updated_epoch>1491247807</last_updated_epoch>
          <last_updated>2017-04-03 21:30</last_updated>
          <temp_c>16</temp_c>
          <temp_f>60.8</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>0</wind_mph>
          <wind_kph>0</wind_kph>
          <wind_degree>328</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>42</humidity>
          <cloud>0</cloud>
          <feelslike_c>16</feelslike_c>
          <feelslike_f>60.8</feelslike_f>
          <vis_km>10</vis_km>
          <vis_miles>6</vis_miles>
          </current>
          <forecast>
          <forecastday>
          <date>2017-04-03</date>
          <date_epoch>1491177600</date_epoch>
          <day>
          <maxtemp_c>17.2</maxtemp_c>
          <maxtemp_f>63</maxtemp_f>
          <mintemp_c>10.2</mintemp_c>
          <mintemp_f>50.4</mintemp_f>
          <avgtemp_c>12.2</avgtemp_c>
          <avgtemp_f>54</avgtemp_f>
          <maxwind_mph>5.6</maxwind_mph>
          <maxwind_kph>9</maxwind_kph>
          <totalprecip_mm>0</totalprecip_mm>
          <totalprecip_in>0</totalprecip_in>
          <avgvis_km>18.6</avgvis_km>
          <avgvis_miles>11</avgvis_miles>
          <avghumidity>66</avghumidity>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          </day>
          <astro>
          <sunrise>07:24 AM</sunrise>
          <sunset>08:24 PM</sunset>
          <moonrise>12:10 PM</moonrise>
          <moonset>02:52 AM</moonset>
          </astro>
          <hour>
          <time_epoch>1491174000</time_epoch>
          <time>2017-04-03 00:00</time>
          <temp_c>10.5</temp_c>
          <temp_f>50.9</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4.7</wind_mph>
          <wind_kph>7.6</wind_kph>
          <wind_degree>12</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>70</humidity>
          <cloud>100</cloud>
          <feelslike_c>11.3</feelslike_c>
          <feelslike_f>52.3</feelslike_f>
          <windchill_c>11.3</windchill_c>
          <windchill_f>52.3</windchill_f>
          <heatindex_c>11.3</heatindex_c>
          <heatindex_f>52.3</heatindex_f>
          <dewpoint_c>6.3</dewpoint_c>
          <dewpoint_f>43.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>10</vis_km>
          <vis_miles>6</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491177600</time_epoch>
          <time>2017-04-03 01:00</time>
          <temp_c>10.2</temp_c>
          <temp_f>50.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Mist</text>
          <icon>//cdn.apixu.com/weather/64x64/night/143.png</icon>
          <code>1030</code>
          </condition>
          <wind_mph>5.6</wind_mph>
          <wind_kph>9</wind_kph>
          <wind_degree>14</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>70</humidity>
          <cloud>100</cloud>
          <feelslike_c>11</feelslike_c>
          <feelslike_f>51.8</feelslike_f>
          <windchill_c>11</windchill_c>
          <windchill_f>51.8</windchill_f>
          <heatindex_c>11</heatindex_c>
          <heatindex_f>51.8</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>10</vis_km>
          <vis_miles>6</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491181200</time_epoch>
          <time>2017-04-03 02:00</time>
          <temp_c>9.2</temp_c>
          <temp_f>48.6</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Mist</text>
          <icon>//cdn.apixu.com/weather/64x64/night/143.png</icon>
          <code>1030</code>
          </condition>
          <wind_mph>4</wind_mph>
          <wind_kph>6.5</wind_kph>
          <wind_degree>128</wind_degree>
          <wind_dir>SE</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>75</humidity>
          <cloud>100</cloud>
          <feelslike_c>10</feelslike_c>
          <feelslike_f>50</feelslike_f>
          <windchill_c>10</windchill_c>
          <windchill_f>50</windchill_f>
          <heatindex_c>10</heatindex_c>
          <heatindex_f>50</heatindex_f>
          <dewpoint_c>5.7</dewpoint_c>
          <dewpoint_f>42.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>13.3</vis_km>
          <vis_miles>8</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491184800</time_epoch>
          <time>2017-04-03 03:00</time>
          <temp_c>8.2</temp_c>
          <temp_f>46.8</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Mist</text>
          <icon>//cdn.apixu.com/weather/64x64/night/143.png</icon>
          <code>1030</code>
          </condition>
          <wind_mph>2.5</wind_mph>
          <wind_kph>4</wind_kph>
          <wind_degree>243</wind_degree>
          <wind_dir>WSW</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>79</humidity>
          <cloud>100</cloud>
          <feelslike_c>9</feelslike_c>
          <feelslike_f>48.2</feelslike_f>
          <windchill_c>9</windchill_c>
          <windchill_f>48.2</windchill_f>
          <heatindex_c>9</heatindex_c>
          <heatindex_f>48.2</heatindex_f>
          <dewpoint_c>5.3</dewpoint_c>
          <dewpoint_f>41.5</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>16.7</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491188400</time_epoch>
          <time>2017-04-03 04:00</time>
          <temp_c>7.2</temp_c>
          <temp_f>45</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Mist</text>
          <icon>//cdn.apixu.com/weather/64x64/night/143.png</icon>
          <code>1030</code>
          </condition>
          <wind_mph>0.9</wind_mph>
          <wind_kph>1.4</wind_kph>
          <wind_degree>358</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>84</humidity>
          <cloud>100</cloud>
          <feelslike_c>8</feelslike_c>
          <feelslike_f>46.4</feelslike_f>
          <windchill_c>8</windchill_c>
          <windchill_f>46.4</windchill_f>
          <heatindex_c>8</heatindex_c>
          <heatindex_f>46.4</heatindex_f>
          <dewpoint_c>5</dewpoint_c>
          <dewpoint_f>41</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491192000</time_epoch>
          <time>2017-04-03 05:00</time>
          <temp_c>6.9</temp_c>
          <temp_f>44.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>0.4</wind_mph>
          <wind_kph>0.7</wind_kph>
          <wind_degree>240</wind_degree>
          <wind_dir>WSW</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>84</humidity>
          <cloud>100</cloud>
          <feelslike_c>7.7</feelslike_c>
          <feelslike_f>45.9</feelslike_f>
          <windchill_c>7.7</windchill_c>
          <windchill_f>45.9</windchill_f>
          <heatindex_c>7.7</heatindex_c>
          <heatindex_f>45.9</heatindex_f>
          <dewpoint_c>4.7</dewpoint_c>
          <dewpoint_f>40.5</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491195600</time_epoch>
          <time>2017-04-03 06:00</time>
          <temp_c>6.5</temp_c>
          <temp_f>43.7</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Mist</text>
          <icon>//cdn.apixu.com/weather/64x64/night/143.png</icon>
          <code>1030</code>
          </condition>
          <wind_mph>0.2</wind_mph>
          <wind_kph>0.4</wind_kph>
          <wind_degree>121</wind_degree>
          <wind_dir>ESE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>84</humidity>
          <cloud>100</cloud>
          <feelslike_c>7.3</feelslike_c>
          <feelslike_f>45.1</feelslike_f>
          <windchill_c>7.3</windchill_c>
          <windchill_f>45.1</windchill_f>
          <heatindex_c>7.3</heatindex_c>
          <heatindex_f>45.1</heatindex_f>
          <dewpoint_c>4.3</dewpoint_c>
          <dewpoint_f>39.7</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491199200</time_epoch>
          <time>2017-04-03 07:00</time>
          <temp_c>6.2</temp_c>
          <temp_f>43.2</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>0.2</wind_mph>
          <wind_kph>0.4</wind_kph>
          <wind_degree>3</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>84</humidity>
          <cloud>100</cloud>
          <feelslike_c>7</feelslike_c>
          <feelslike_f>44.6</feelslike_f>
          <windchill_c>7</windchill_c>
          <windchill_f>44.6</windchill_f>
          <heatindex_c>7</heatindex_c>
          <heatindex_f>44.6</heatindex_f>
          <dewpoint_c>4</dewpoint_c>
          <dewpoint_f>39.2</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491202800</time_epoch>
          <time>2017-04-03 08:00</time>
          <temp_c>7.2</temp_c>
          <temp_f>45</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>0.9</wind_mph>
          <wind_kph>1.4</wind_kph>
          <wind_degree>6</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>83</humidity>
          <cloud>100</cloud>
          <feelslike_c>8</feelslike_c>
          <feelslike_f>46.4</feelslike_f>
          <windchill_c>8</windchill_c>
          <windchill_f>46.4</windchill_f>
          <heatindex_c>8</heatindex_c>
          <heatindex_f>46.4</heatindex_f>
          <dewpoint_c>5</dewpoint_c>
          <dewpoint_f>41</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491206400</time_epoch>
          <time>2017-04-03 09:00</time>
          <temp_c>8.2</temp_c>
          <temp_f>46.8</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.2</wind_mph>
          <wind_kph>3.6</wind_kph>
          <wind_degree>8</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>82</humidity>
          <cloud>100</cloud>
          <feelslike_c>9</feelslike_c>
          <feelslike_f>48.2</feelslike_f>
          <windchill_c>9</windchill_c>
          <windchill_f>48.2</windchill_f>
          <heatindex_c>9</heatindex_c>
          <heatindex_f>48.2</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491210000</time_epoch>
          <time>2017-04-03 10:00</time>
          <temp_c>9.2</temp_c>
          <temp_f>48.6</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>3.4</wind_mph>
          <wind_kph>5.4</wind_kph>
          <wind_degree>11</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>81</humidity>
          <cloud>100</cloud>
          <feelslike_c>10</feelslike_c>
          <feelslike_f>50</feelslike_f>
          <windchill_c>10</windchill_c>
          <windchill_f>50</windchill_f>
          <heatindex_c>10</heatindex_c>
          <heatindex_f>50</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491213600</time_epoch>
          <time>2017-04-03 11:00</time>
          <temp_c>11.2</temp_c>
          <temp_f>52.2</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.7</wind_mph>
          <wind_kph>4.3</wind_kph>
          <wind_degree>123</wind_degree>
          <wind_dir>ESE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>73</humidity>
          <cloud>100</cloud>
          <feelslike_c>12</feelslike_c>
          <feelslike_f>53.6</feelslike_f>
          <windchill_c>12</windchill_c>
          <windchill_f>53.6</windchill_f>
          <heatindex_c>12</heatindex_c>
          <heatindex_f>53.6</heatindex_f>
          <dewpoint_c>7.3</dewpoint_c>
          <dewpoint_f>45.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491217200</time_epoch>
          <time>2017-04-03 12:00</time>
          <temp_c>13.2</temp_c>
          <temp_f>55.8</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.2</wind_mph>
          <wind_kph>3.6</wind_kph>
          <wind_degree>234</wind_degree>
          <wind_dir>SW</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>65</humidity>
          <cloud>100</cloud>
          <feelslike_c>14</feelslike_c>
          <feelslike_f>57.2</feelslike_f>
          <windchill_c>14</windchill_c>
          <windchill_f>57.2</windchill_f>
          <heatindex_c>14</heatindex_c>
          <heatindex_f>57.2</heatindex_f>
          <dewpoint_c>7.7</dewpoint_c>
          <dewpoint_f>45.9</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491220800</time_epoch>
          <time>2017-04-03 13:00</time>
          <temp_c>15.2</temp_c>
          <temp_f>59.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>1.6</wind_mph>
          <wind_kph>2.5</wind_kph>
          <wind_degree>346</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>57</humidity>
          <cloud>100</cloud>
          <feelslike_c>16</feelslike_c>
          <feelslike_f>60.8</feelslike_f>
          <windchill_c>16</windchill_c>
          <windchill_f>60.8</windchill_f>
          <heatindex_c>16</heatindex_c>
          <heatindex_f>60.8</heatindex_f>
          <dewpoint_c>8</dewpoint_c>
          <dewpoint_f>46.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491224400</time_epoch>
          <time>2017-04-03 14:00</time>
          <temp_c>15.9</temp_c>
          <temp_f>60.6</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>1.6</wind_mph>
          <wind_kph>2.5</wind_kph>
          <wind_degree>341</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>54</humidity>
          <cloud>100</cloud>
          <feelslike_c>16.7</feelslike_c>
          <feelslike_f>62.1</feelslike_f>
          <windchill_c>16.7</windchill_c>
          <windchill_f>62.1</windchill_f>
          <heatindex_c>16.7</heatindex_c>
          <heatindex_f>62.1</heatindex_f>
          <dewpoint_c>7.7</dewpoint_c>
          <dewpoint_f>45.9</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.8</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491228000</time_epoch>
          <time>2017-04-03 15:00</time>
          <temp_c>16.5</temp_c>
          <temp_f>61.7</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>1.8</wind_mph>
          <wind_kph>2.9</wind_kph>
          <wind_degree>335</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>51</humidity>
          <cloud>100</cloud>
          <feelslike_c>17.3</feelslike_c>
          <feelslike_f>63.1</feelslike_f>
          <windchill_c>17.3</windchill_c>
          <windchill_f>63.1</windchill_f>
          <heatindex_c>17.3</heatindex_c>
          <heatindex_f>63.1</heatindex_f>
          <dewpoint_c>7.3</dewpoint_c>
          <dewpoint_f>45.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.6</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491231600</time_epoch>
          <time>2017-04-03 16:00</time>
          <temp_c>17.2</temp_c>
          <temp_f>63</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>1.8</wind_mph>
          <wind_kph>2.9</wind_kph>
          <wind_degree>330</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>48</humidity>
          <cloud>100</cloud>
          <feelslike_c>18</feelslike_c>
          <feelslike_f>64.4</feelslike_f>
          <windchill_c>18</windchill_c>
          <windchill_f>64.4</windchill_f>
          <heatindex_c>18</heatindex_c>
          <heatindex_f>64.4</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.4</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491235200</time_epoch>
          <time>2017-04-03 17:00</time>
          <temp_c>17.2</temp_c>
          <temp_f>63</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.5</wind_mph>
          <wind_kph>4</wind_kph>
          <wind_degree>329</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>47</humidity>
          <cloud>100</cloud>
          <feelslike_c>18</feelslike_c>
          <feelslike_f>64.4</feelslike_f>
          <windchill_c>18</windchill_c>
          <windchill_f>64.4</windchill_f>
          <heatindex_c>18</heatindex_c>
          <heatindex_f>64.4</heatindex_f>
          <dewpoint_c>6.3</dewpoint_c>
          <dewpoint_f>43.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.5</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491238800</time_epoch>
          <time>2017-04-03 18:00</time>
          <temp_c>17.2</temp_c>
          <temp_f>63</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>2.9</wind_mph>
          <wind_kph>4.7</wind_kph>
          <wind_degree>328</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>45</humidity>
          <cloud>100</cloud>
          <feelslike_c>18</feelslike_c>
          <feelslike_f>64.4</feelslike_f>
          <windchill_c>18</windchill_c>
          <windchill_f>64.4</windchill_f>
          <heatindex_c>18</heatindex_c>
          <heatindex_f>64.4</heatindex_f>
          <dewpoint_c>5.7</dewpoint_c>
          <dewpoint_f>42.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.6</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491242400</time_epoch>
          <time>2017-04-03 19:00</time>
          <temp_c>17.2</temp_c>
          <temp_f>63</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>3.6</wind_mph>
          <wind_kph>5.8</wind_kph>
          <wind_degree>326</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>44</humidity>
          <cloud>100</cloud>
          <feelslike_c>18</feelslike_c>
          <feelslike_f>64.4</feelslike_f>
          <windchill_c>18</windchill_c>
          <windchill_f>64.4</windchill_f>
          <heatindex_c>18</heatindex_c>
          <heatindex_f>64.4</heatindex_f>
          <dewpoint_c>5</dewpoint_c>
          <dewpoint_f>41</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.7</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491246000</time_epoch>
          <time>2017-04-03 20:00</time>
          <temp_c>16.5</temp_c>
          <temp_f>61.7</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>3.1</wind_mph>
          <wind_kph>5</wind_kph>
          <wind_degree>333</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>50</humidity>
          <cloud>100</cloud>
          <feelslike_c>17.1</feelslike_c>
          <feelslike_f>62.8</feelslike_f>
          <windchill_c>17.1</windchill_c>
          <windchill_f>62.8</windchill_f>
          <heatindex_c>17.7</heatindex_c>
          <heatindex_f>63.9</heatindex_f>
          <dewpoint_c>5.3</dewpoint_c>
          <dewpoint_f>41.5</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.8</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491249600</time_epoch>
          <time>2017-04-03 21:00</time>
          <temp_c>15.9</temp_c>
          <temp_f>60.6</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.7</wind_mph>
          <wind_kph>4.3</wind_kph>
          <wind_degree>339</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>56</humidity>
          <cloud>100</cloud>
          <feelslike_c>16.1</feelslike_c>
          <feelslike_f>61</feelslike_f>
          <windchill_c>16.1</windchill_c>
          <windchill_f>61</windchill_f>
          <heatindex_c>17.5</heatindex_c>
          <heatindex_f>63.5</heatindex_f>
          <dewpoint_c>5.7</dewpoint_c>
          <dewpoint_f>42.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491253200</time_epoch>
          <time>2017-04-03 22:00</time>
          <temp_c>15.2</temp_c>
          <temp_f>59.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>2.2</wind_mph>
          <wind_kph>3.6</wind_kph>
          <wind_degree>345</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>62</humidity>
          <cloud>100</cloud>
          <feelslike_c>15.2</feelslike_c>
          <feelslike_f>59.4</feelslike_f>
          <windchill_c>15.2</windchill_c>
          <windchill_f>59.4</windchill_f>
          <heatindex_c>17.2</heatindex_c>
          <heatindex_f>63</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491256800</time_epoch>
          <time>2017-04-03 23:00</time>
          <temp_c>13.9</temp_c>
          <temp_f>57</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>1.1</wind_mph>
          <wind_kph>1.8</wind_kph>
          <wind_degree>339</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>64</humidity>
          <cloud>100</cloud>
          <feelslike_c>14.1</feelslike_c>
          <feelslike_f>57.4</feelslike_f>
          <windchill_c>14.1</windchill_c>
          <windchill_f>57.4</windchill_f>
          <heatindex_c>15.5</heatindex_c>
          <heatindex_f>59.9</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          </forecastday>
          <forecastday>
          <date>2017-04-04</date>
          <date_epoch>1491264000</date_epoch>
          <day>
          <maxtemp_c>15.2</maxtemp_c>
          <maxtemp_f>59.4</maxtemp_f>
          <mintemp_c>8.2</mintemp_c>
          <mintemp_f>46.8</mintemp_f>
          <avgtemp_c>11.8</avgtemp_c>
          <avgtemp_f>53.3</avgtemp_f>
          <maxwind_mph>8.1</maxwind_mph>
          <maxwind_kph>13</maxwind_kph>
          <totalprecip_mm>0.3</totalprecip_mm>
          <totalprecip_in>0.01</totalprecip_in>
          <avgvis_km>18.3</avgvis_km>
          <avgvis_miles>11</avgvis_miles>
          <avghumidity>67</avghumidity>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          </day>
          <astro>
          <sunrise>07:22 AM</sunrise>
          <sunset>08:26 PM</sunset>
          <moonrise>01:12 PM</moonrise>
          <moonset>03:47 AM</moonset>
          </astro>
          <hour>
          <time_epoch>1491260400</time_epoch>
          <time>2017-04-04 00:00</time>
          <temp_c>12.5</temp_c>
          <temp_f>54.5</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>0</wind_mph>
          <wind_kph>0</wind_kph>
          <wind_degree>333</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>67</humidity>
          <cloud>100</cloud>
          <feelslike_c>13.1</feelslike_c>
          <feelslike_f>55.6</feelslike_f>
          <windchill_c>13.1</windchill_c>
          <windchill_f>55.6</windchill_f>
          <heatindex_c>13.7</heatindex_c>
          <heatindex_f>56.7</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491264000</time_epoch>
          <time>2017-04-04 01:00</time>
          <temp_c>11.2</temp_c>
          <temp_f>52.2</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>1.1</wind_mph>
          <wind_kph>1.8</wind_kph>
          <wind_degree>326</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>69</humidity>
          <cloud>100</cloud>
          <feelslike_c>12</feelslike_c>
          <feelslike_f>53.6</feelslike_f>
          <windchill_c>12</windchill_c>
          <windchill_f>53.6</windchill_f>
          <heatindex_c>12</heatindex_c>
          <heatindex_f>53.6</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.8</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491267600</time_epoch>
          <time>2017-04-04 02:00</time>
          <temp_c>10.9</temp_c>
          <temp_f>51.6</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>0.4</wind_mph>
          <wind_kph>0.7</wind_kph>
          <wind_degree>330</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>70</humidity>
          <cloud>100</cloud>
          <feelslike_c>11.7</feelslike_c>
          <feelslike_f>53.1</feelslike_f>
          <windchill_c>11.7</windchill_c>
          <windchill_f>53.1</windchill_f>
          <heatindex_c>11.7</heatindex_c>
          <heatindex_f>53.1</heatindex_f>
          <dewpoint_c>5.7</dewpoint_c>
          <dewpoint_f>42.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.8</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491271200</time_epoch>
          <time>2017-04-04 03:00</time>
          <temp_c>10.5</temp_c>
          <temp_f>50.9</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>0.2</wind_mph>
          <wind_kph>0.4</wind_kph>
          <wind_degree>334</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>70</humidity>
          <cloud>100</cloud>
          <feelslike_c>11.3</feelslike_c>
          <feelslike_f>52.3</feelslike_f>
          <windchill_c>11.3</windchill_c>
          <windchill_f>52.3</windchill_f>
          <heatindex_c>11.3</heatindex_c>
          <heatindex_f>52.3</heatindex_f>
          <dewpoint_c>5.3</dewpoint_c>
          <dewpoint_f>41.5</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491274800</time_epoch>
          <time>2017-04-04 04:00</time>
          <temp_c>10.2</temp_c>
          <temp_f>50.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>0.9</wind_mph>
          <wind_kph>1.4</wind_kph>
          <wind_degree>338</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>71</humidity>
          <cloud>100</cloud>
          <feelslike_c>11</feelslike_c>
          <feelslike_f>51.8</feelslike_f>
          <windchill_c>11</windchill_c>
          <windchill_f>51.8</windchill_f>
          <heatindex_c>11</heatindex_c>
          <heatindex_f>51.8</heatindex_f>
          <dewpoint_c>5</dewpoint_c>
          <dewpoint_f>41</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491278400</time_epoch>
          <time>2017-04-04 05:00</time>
          <temp_c>9.2</temp_c>
          <temp_f>48.6</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>0.9</wind_mph>
          <wind_kph>1.4</wind_kph>
          <wind_degree>228</wind_degree>
          <wind_dir>SW</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>76</humidity>
          <cloud>100</cloud>
          <feelslike_c>10</feelslike_c>
          <feelslike_f>50</feelslike_f>
          <windchill_c>10</windchill_c>
          <windchill_f>50</windchill_f>
          <heatindex_c>10</heatindex_c>
          <heatindex_f>50</heatindex_f>
          <dewpoint_c>5.3</dewpoint_c>
          <dewpoint_f>41.5</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491282000</time_epoch>
          <time>2017-04-04 06:00</time>
          <temp_c>8.2</temp_c>
          <temp_f>46.8</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>0.9</wind_mph>
          <wind_kph>1.4</wind_kph>
          <wind_degree>118</wind_degree>
          <wind_dir>ESE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>80</humidity>
          <cloud>100</cloud>
          <feelslike_c>9</feelslike_c>
          <feelslike_f>48.2</feelslike_f>
          <windchill_c>9</windchill_c>
          <windchill_f>48.2</windchill_f>
          <heatindex_c>9</heatindex_c>
          <heatindex_f>48.2</heatindex_f>
          <dewpoint_c>5.7</dewpoint_c>
          <dewpoint_f>42.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.8</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491285600</time_epoch>
          <time>2017-04-04 07:00</time>
          <temp_c>7.2</temp_c>
          <temp_f>45</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>0.9</wind_mph>
          <wind_kph>1.4</wind_kph>
          <wind_degree>7</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>85</humidity>
          <cloud>100</cloud>
          <feelslike_c>8</feelslike_c>
          <feelslike_f>46.4</feelslike_f>
          <windchill_c>8</windchill_c>
          <windchill_f>46.4</windchill_f>
          <heatindex_c>8</heatindex_c>
          <heatindex_f>46.4</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.8</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491289200</time_epoch>
          <time>2017-04-04 08:00</time>
          <temp_c>8.5</temp_c>
          <temp_f>47.3</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>1.1</wind_mph>
          <wind_kph>1.8</wind_kph>
          <wind_degree>15</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>81</humidity>
          <cloud>100</cloud>
          <feelslike_c>9.3</feelslike_c>
          <feelslike_f>48.7</feelslike_f>
          <windchill_c>9.3</windchill_c>
          <windchill_f>48.7</windchill_f>
          <heatindex_c>9.3</heatindex_c>
          <heatindex_f>48.7</heatindex_f>
          <dewpoint_c>6.3</dewpoint_c>
          <dewpoint_f>43.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.1</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491292800</time_epoch>
          <time>2017-04-04 09:00</time>
          <temp_c>9.9</temp_c>
          <temp_f>49.8</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>1.6</wind_mph>
          <wind_kph>2.5</wind_kph>
          <wind_degree>24</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>77</humidity>
          <cloud>100</cloud>
          <feelslike_c>10.7</feelslike_c>
          <feelslike_f>51.3</feelslike_f>
          <windchill_c>10.7</windchill_c>
          <windchill_f>51.3</windchill_f>
          <heatindex_c>10.7</heatindex_c>
          <heatindex_f>51.3</heatindex_f>
          <dewpoint_c>6.7</dewpoint_c>
          <dewpoint_f>44.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.4</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491296400</time_epoch>
          <time>2017-04-04 10:00</time>
          <temp_c>11.2</temp_c>
          <temp_f>52.2</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>1.8</wind_mph>
          <wind_kph>2.9</wind_kph>
          <wind_degree>32</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>73</humidity>
          <cloud>100</cloud>
          <feelslike_c>12</feelslike_c>
          <feelslike_f>53.6</feelslike_f>
          <windchill_c>12</windchill_c>
          <windchill_f>53.6</windchill_f>
          <heatindex_c>12</heatindex_c>
          <heatindex_f>53.6</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>17.7</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491300000</time_epoch>
          <time>2017-04-04 11:00</time>
          <temp_c>12.5</temp_c>
          <temp_f>54.5</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>3.8</wind_mph>
          <wind_kph>6.1</wind_kph>
          <wind_degree>140</wind_degree>
          <wind_dir>SE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>68</humidity>
          <cloud>100</cloud>
          <feelslike_c>13.3</feelslike_c>
          <feelslike_f>55.9</feelslike_f>
          <windchill_c>13.3</windchill_c>
          <windchill_f>55.9</windchill_f>
          <heatindex_c>13.3</heatindex_c>
          <heatindex_f>55.9</heatindex_f>
          <dewpoint_c>7.3</dewpoint_c>
          <dewpoint_f>45.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>17.5</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491303600</time_epoch>
          <time>2017-04-04 12:00</time>
          <temp_c>13.9</temp_c>
          <temp_f>57</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>5.6</wind_mph>
          <wind_kph>9</wind_kph>
          <wind_degree>249</wind_degree>
          <wind_dir>WSW</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>62</humidity>
          <cloud>100</cloud>
          <feelslike_c>14.7</feelslike_c>
          <feelslike_f>58.5</feelslike_f>
          <windchill_c>14.7</windchill_c>
          <windchill_f>58.5</windchill_f>
          <heatindex_c>14.7</heatindex_c>
          <heatindex_f>58.5</heatindex_f>
          <dewpoint_c>7.7</dewpoint_c>
          <dewpoint_f>45.9</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>17.2</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491307200</time_epoch>
          <time>2017-04-04 13:00</time>
          <temp_c>15.2</temp_c>
          <temp_f>59.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>7.6</wind_mph>
          <wind_kph>12.2</wind_kph>
          <wind_degree>358</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>57</humidity>
          <cloud>100</cloud>
          <feelslike_c>16</feelslike_c>
          <feelslike_f>60.8</feelslike_f>
          <windchill_c>16</windchill_c>
          <windchill_f>60.8</windchill_f>
          <heatindex_c>16</heatindex_c>
          <heatindex_f>60.8</heatindex_f>
          <dewpoint_c>8</dewpoint_c>
          <dewpoint_f>46.4</dewpoint_f>
          <will_it_rain>1</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>17</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491310800</time_epoch>
          <time>2017-04-04 14:00</time>
          <temp_c>15.2</temp_c>
          <temp_f>59.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>7.6</wind_mph>
          <wind_kph>12.2</wind_kph>
          <wind_degree>358</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>57</humidity>
          <cloud>100</cloud>
          <feelslike_c>16</feelslike_c>
          <feelslike_f>60.8</feelslike_f>
          <windchill_c>16</windchill_c>
          <windchill_f>60.8</windchill_f>
          <heatindex_c>16</heatindex_c>
          <heatindex_f>60.8</heatindex_f>
          <dewpoint_c>7.7</dewpoint_c>
          <dewpoint_f>45.9</dewpoint_f>
          <will_it_rain>1</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>16.4</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491314400</time_epoch>
          <time>2017-04-04 15:00</time>
          <temp_c>15.2</temp_c>
          <temp_f>59.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>7.8</wind_mph>
          <wind_kph>12.6</wind_kph>
          <wind_degree>357</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.2</precip_mm>
          <precip_in>0.01</precip_in>
          <humidity>58</humidity>
          <cloud>100</cloud>
          <feelslike_c>16</feelslike_c>
          <feelslike_f>60.8</feelslike_f>
          <windchill_c>16</windchill_c>
          <windchill_f>60.8</windchill_f>
          <heatindex_c>16</heatindex_c>
          <heatindex_f>60.8</heatindex_f>
          <dewpoint_c>7.3</dewpoint_c>
          <dewpoint_f>45.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>15.9</vis_km>
          <vis_miles>9</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491318000</time_epoch>
          <time>2017-04-04 16:00</time>
          <temp_c>15.2</temp_c>
          <temp_f>59.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>7.8</wind_mph>
          <wind_kph>12.6</wind_kph>
          <wind_degree>357</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.2</precip_mm>
          <precip_in>0.01</precip_in>
          <humidity>58</humidity>
          <cloud>100</cloud>
          <feelslike_c>16</feelslike_c>
          <feelslike_f>60.8</feelslike_f>
          <windchill_c>16</windchill_c>
          <windchill_f>60.8</windchill_f>
          <heatindex_c>16</heatindex_c>
          <heatindex_f>60.8</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>15.3</vis_km>
          <vis_miles>9</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491321600</time_epoch>
          <time>2017-04-04 17:00</time>
          <temp_c>14.2</temp_c>
          <temp_f>57.6</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>7.6</wind_mph>
          <wind_kph>12.2</wind_kph>
          <wind_degree>353</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.2</precip_mm>
          <precip_in>0.01</precip_in>
          <humidity>56</humidity>
          <cloud>100</cloud>
          <feelslike_c>14.7</feelslike_c>
          <feelslike_f>58.5</feelslike_f>
          <windchill_c>14.7</windchill_c>
          <windchill_f>58.5</windchill_f>
          <heatindex_c>15.4</heatindex_c>
          <heatindex_f>59.7</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>15.9</vis_km>
          <vis_miles>9</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491325200</time_epoch>
          <time>2017-04-04 18:00</time>
          <temp_c>13.2</temp_c>
          <temp_f>55.8</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>7.6</wind_mph>
          <wind_kph>12.2</wind_kph>
          <wind_degree>348</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>55</humidity>
          <cloud>100</cloud>
          <feelslike_c>13.5</feelslike_c>
          <feelslike_f>56.3</feelslike_f>
          <windchill_c>13.5</windchill_c>
          <windchill_f>56.3</windchill_f>
          <heatindex_c>14.8</heatindex_c>
          <heatindex_f>58.6</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>16.4</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491328800</time_epoch>
          <time>2017-04-04 19:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>7.4</wind_mph>
          <wind_kph>11.9</wind_kph>
          <wind_degree>344</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>53</humidity>
          <cloud>100</cloud>
          <feelslike_c>12.2</feelslike_c>
          <feelslike_f>54</feelslike_f>
          <windchill_c>12.2</windchill_c>
          <windchill_f>54</windchill_f>
          <heatindex_c>14.2</heatindex_c>
          <heatindex_f>57.6</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>17</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491332400</time_epoch>
          <time>2017-04-04 20:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>7.6</wind_mph>
          <wind_kph>12.2</wind_kph>
          <wind_degree>345</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>59</humidity>
          <cloud>100</cloud>
          <feelslike_c>12.5</feelslike_c>
          <feelslike_f>54.5</feelslike_f>
          <windchill_c>12.5</windchill_c>
          <windchill_f>54.5</windchill_f>
          <heatindex_c>13.8</heatindex_c>
          <heatindex_f>56.8</heatindex_f>
          <dewpoint_c>7.3</dewpoint_c>
          <dewpoint_f>45.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491336000</time_epoch>
          <time>2017-04-04 21:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/night/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>7.8</wind_mph>
          <wind_kph>12.6</wind_kph>
          <wind_degree>347</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>64</humidity>
          <cloud>100</cloud>
          <feelslike_c>12.7</feelslike_c>
          <feelslike_f>54.9</feelslike_f>
          <windchill_c>12.7</windchill_c>
          <windchill_f>54.9</windchill_f>
          <heatindex_c>13.4</heatindex_c>
          <heatindex_f>56.1</heatindex_f>
          <dewpoint_c>7.7</dewpoint_c>
          <dewpoint_f>45.9</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.9</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491339600</time_epoch>
          <time>2017-04-04 22:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>8.1</wind_mph>
          <wind_kph>13</wind_kph>
          <wind_degree>348</wind_degree>
          <wind_dir>NNW</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>70</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>8</dewpoint_c>
          <dewpoint_f>46.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491343200</time_epoch>
          <time>2017-04-04 23:00</time>
          <temp_c>11.5</temp_c>
          <temp_f>52.7</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>8.1</wind_mph>
          <wind_kph>13</wind_kph>
          <wind_degree>232</wind_degree>
          <wind_dir>SW</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>73</humidity>
          <cloud>100</cloud>
          <feelslike_c>12.3</feelslike_c>
          <feelslike_f>54.1</feelslike_f>
          <windchill_c>12.3</windchill_c>
          <windchill_f>54.1</windchill_f>
          <heatindex_c>12.3</heatindex_c>
          <heatindex_f>54.1</heatindex_f>
          <dewpoint_c>7.7</dewpoint_c>
          <dewpoint_f>45.9</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.2</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          </forecastday>
          <forecastday>
          <date>2017-04-05</date>
          <date_epoch>1491350400</date_epoch>
          <day>
          <maxtemp_c>16.2</maxtemp_c>
          <maxtemp_f>61.2</maxtemp_f>
          <mintemp_c>7.2</mintemp_c>
          <mintemp_f>45</mintemp_f>
          <avgtemp_c>11.2</avgtemp_c>
          <avgtemp_f>52.2</avgtemp_f>
          <maxwind_mph>12.1</maxwind_mph>
          <maxwind_kph>19.4</maxwind_kph>
          <totalprecip_mm>0.1</totalprecip_mm>
          <totalprecip_in>0</totalprecip_in>
          <avgvis_km>17.9</avgvis_km>
          <avgvis_miles>11</avgvis_miles>
          <avghumidity>67</avghumidity>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          </day>
          <astro>
          <sunrise>07:20 AM</sunrise>
          <sunset>08:27 PM</sunset>
          <moonrise>02:17 PM</moonrise>
          <moonset>04:34 AM</moonset>
          </astro>
          <hour>
          <time_epoch>1491346800</time_epoch>
          <time>2017-04-05 00:00</time>
          <temp_c>10.9</temp_c>
          <temp_f>51.6</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>7.8</wind_mph>
          <wind_kph>12.6</wind_kph>
          <wind_degree>116</wind_degree>
          <wind_dir>ESE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>77</humidity>
          <cloud>100</cloud>
          <feelslike_c>11.7</feelslike_c>
          <feelslike_f>53.1</feelslike_f>
          <windchill_c>11.7</windchill_c>
          <windchill_f>53.1</windchill_f>
          <heatindex_c>11.7</heatindex_c>
          <heatindex_f>53.1</heatindex_f>
          <dewpoint_c>7.3</dewpoint_c>
          <dewpoint_f>45.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.5</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491350400</time_epoch>
          <time>2017-04-05 01:00</time>
          <temp_c>10.2</temp_c>
          <temp_f>50.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>7.8</wind_mph>
          <wind_kph>12.6</wind_kph>
          <wind_degree>0</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>80</humidity>
          <cloud>100</cloud>
          <feelslike_c>11</feelslike_c>
          <feelslike_f>51.8</feelslike_f>
          <windchill_c>11</windchill_c>
          <windchill_f>51.8</windchill_f>
          <heatindex_c>11</heatindex_c>
          <heatindex_f>51.8</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>17.8</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491354000</time_epoch>
          <time>2017-04-05 02:00</time>
          <temp_c>9.5</temp_c>
          <temp_f>49.1</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>7.2</wind_mph>
          <wind_kph>11.5</wind_kph>
          <wind_degree>1</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>80</humidity>
          <cloud>100</cloud>
          <feelslike_c>10.3</feelslike_c>
          <feelslike_f>50.5</feelslike_f>
          <windchill_c>10.3</windchill_c>
          <windchill_f>50.5</windchill_f>
          <heatindex_c>10.3</heatindex_c>
          <heatindex_f>50.5</heatindex_f>
          <dewpoint_c>6.7</dewpoint_c>
          <dewpoint_f>44.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>16.8</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491357600</time_epoch>
          <time>2017-04-05 03:00</time>
          <temp_c>8.9</temp_c>
          <temp_f>48</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>6.5</wind_mph>
          <wind_kph>10.4</wind_kph>
          <wind_degree>3</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>81</humidity>
          <cloud>100</cloud>
          <feelslike_c>9.7</feelslike_c>
          <feelslike_f>49.5</feelslike_f>
          <windchill_c>9.7</windchill_c>
          <windchill_f>49.5</windchill_f>
          <heatindex_c>9.7</heatindex_c>
          <heatindex_f>49.5</heatindex_f>
          <dewpoint_c>6.3</dewpoint_c>
          <dewpoint_f>43.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>15.9</vis_km>
          <vis_miles>9</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491361200</time_epoch>
          <time>2017-04-05 04:00</time>
          <temp_c>8.2</temp_c>
          <temp_f>46.8</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>5.8</wind_mph>
          <wind_kph>9.4</wind_kph>
          <wind_degree>4</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>81</humidity>
          <cloud>100</cloud>
          <feelslike_c>9</feelslike_c>
          <feelslike_f>48.2</feelslike_f>
          <windchill_c>9</windchill_c>
          <windchill_f>48.2</windchill_f>
          <heatindex_c>9</heatindex_c>
          <heatindex_f>48.2</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>14.9</vis_km>
          <vis_miles>9</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491364800</time_epoch>
          <time>2017-04-05 05:00</time>
          <temp_c>7.9</temp_c>
          <temp_f>46.2</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>5.1</wind_mph>
          <wind_kph>8.3</wind_kph>
          <wind_degree>121</wind_degree>
          <wind_dir>ESE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>82</humidity>
          <cloud>100</cloud>
          <feelslike_c>8.3</feelslike_c>
          <feelslike_f>46.9</feelslike_f>
          <windchill_c>8.3</windchill_c>
          <windchill_f>46.9</windchill_f>
          <heatindex_c>8.7</heatindex_c>
          <heatindex_f>47.7</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>15.1</vis_km>
          <vis_miles>9</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491368400</time_epoch>
          <time>2017-04-05 06:00</time>
          <temp_c>7.5</temp_c>
          <temp_f>45.5</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4.5</wind_mph>
          <wind_kph>7.2</wind_kph>
          <wind_degree>238</wind_degree>
          <wind_dir>WSW</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>82</humidity>
          <cloud>100</cloud>
          <feelslike_c>7.7</feelslike_c>
          <feelslike_f>45.9</feelslike_f>
          <windchill_c>7.7</windchill_c>
          <windchill_f>45.9</windchill_f>
          <heatindex_c>8.3</heatindex_c>
          <heatindex_f>46.9</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>15.3</vis_km>
          <vis_miles>9</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491372000</time_epoch>
          <time>2017-04-05 07:00</time>
          <temp_c>7.2</temp_c>
          <temp_f>45</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>3.8</wind_mph>
          <wind_kph>6.1</wind_kph>
          <wind_degree>355</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>83</humidity>
          <cloud>100</cloud>
          <feelslike_c>7</feelslike_c>
          <feelslike_f>44.6</feelslike_f>
          <windchill_c>7</windchill_c>
          <windchill_f>44.6</windchill_f>
          <heatindex_c>8</heatindex_c>
          <heatindex_f>46.4</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>15.5</vis_km>
          <vis_miles>9</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491375600</time_epoch>
          <time>2017-04-05 08:00</time>
          <temp_c>8.9</temp_c>
          <temp_f>48</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>5.6</wind_mph>
          <wind_kph>9</wind_kph>
          <wind_degree>239</wind_degree>
          <wind_dir>WSW</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>79</humidity>
          <cloud>100</cloud>
          <feelslike_c>9</feelslike_c>
          <feelslike_f>48.2</feelslike_f>
          <windchill_c>9</windchill_c>
          <windchill_f>48.2</windchill_f>
          <heatindex_c>9.7</heatindex_c>
          <heatindex_f>49.5</heatindex_f>
          <dewpoint_c>6.7</dewpoint_c>
          <dewpoint_f>44.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>16.7</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491379200</time_epoch>
          <time>2017-04-05 09:00</time>
          <temp_c>10.5</temp_c>
          <temp_f>50.9</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>7.2</wind_mph>
          <wind_kph>11.5</wind_kph>
          <wind_degree>123</wind_degree>
          <wind_dir>ESE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>74</humidity>
          <cloud>100</cloud>
          <feelslike_c>11</feelslike_c>
          <feelslike_f>51.8</feelslike_f>
          <windchill_c>11</windchill_c>
          <windchill_f>51.8</windchill_f>
          <heatindex_c>11.3</heatindex_c>
          <heatindex_f>52.3</heatindex_f>
          <dewpoint_c>7.3</dewpoint_c>
          <dewpoint_f>45.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491382800</time_epoch>
          <time>2017-04-05 10:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>8.9</wind_mph>
          <wind_kph>14.4</wind_kph>
          <wind_degree>8</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>70</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>8</dewpoint_c>
          <dewpoint_f>46.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.2</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491386400</time_epoch>
          <time>2017-04-05 11:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>9.6</wind_mph>
          <wind_kph>15.5</wind_kph>
          <wind_degree>6</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>68</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>7.7</dewpoint_c>
          <dewpoint_f>45.9</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.1</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491390000</time_epoch>
          <time>2017-04-05 12:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>10.5</wind_mph>
          <wind_kph>16.9</wind_kph>
          <wind_degree>5</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>65</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>7.3</dewpoint_c>
          <dewpoint_f>45.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491393600</time_epoch>
          <time>2017-04-05 13:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>11.2</wind_mph>
          <wind_kph>18</wind_kph>
          <wind_degree>4</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>63</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>1</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.9</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491397200</time_epoch>
          <time>2017-04-05 14:00</time>
          <temp_c>13.5</temp_c>
          <temp_f>56.3</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Overcast</text>
          <icon>//cdn.apixu.com/weather/64x64/day/122.png</icon>
          <code>1009</code>
          </condition>
          <wind_mph>10.5</wind_mph>
          <wind_kph>16.9</wind_kph>
          <wind_degree>120</wind_degree>
          <wind_dir>ESE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>58</humidity>
          <cloud>100</cloud>
          <feelslike_c>14.3</feelslike_c>
          <feelslike_f>57.7</feelslike_f>
          <windchill_c>14.3</windchill_c>
          <windchill_f>57.7</windchill_f>
          <heatindex_c>14.3</heatindex_c>
          <heatindex_f>57.7</heatindex_f>
          <dewpoint_c>6.7</dewpoint_c>
          <dewpoint_f>44.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.6</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491400800</time_epoch>
          <time>2017-04-05 15:00</time>
          <temp_c>14.9</temp_c>
          <temp_f>58.8</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>9.6</wind_mph>
          <wind_kph>15.5</wind_kph>
          <wind_degree>235</wind_degree>
          <wind_dir>SW</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>52</humidity>
          <cloud>100</cloud>
          <feelslike_c>15.7</feelslike_c>
          <feelslike_f>60.3</feelslike_f>
          <windchill_c>15.7</windchill_c>
          <windchill_f>60.3</windchill_f>
          <heatindex_c>15.7</heatindex_c>
          <heatindex_f>60.3</heatindex_f>
          <dewpoint_c>6.3</dewpoint_c>
          <dewpoint_f>43.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.2</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491404400</time_epoch>
          <time>2017-04-05 16:00</time>
          <temp_c>16.2</temp_c>
          <temp_f>61.2</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Overcast</text>
          <icon>//cdn.apixu.com/weather/64x64/day/122.png</icon>
          <code>1009</code>
          </condition>
          <wind_mph>8.9</wind_mph>
          <wind_kph>14.4</wind_kph>
          <wind_degree>351</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>47</humidity>
          <cloud>100</cloud>
          <feelslike_c>17</feelslike_c>
          <feelslike_f>62.6</feelslike_f>
          <windchill_c>17</windchill_c>
          <windchill_f>62.6</windchill_f>
          <heatindex_c>17</heatindex_c>
          <heatindex_f>62.6</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>17.9</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491408000</time_epoch>
          <time>2017-04-05 17:00</time>
          <temp_c>15.2</temp_c>
          <temp_f>59.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Overcast</text>
          <icon>//cdn.apixu.com/weather/64x64/day/122.png</icon>
          <code>1009</code>
          </condition>
          <wind_mph>10.1</wind_mph>
          <wind_kph>16.2</wind_kph>
          <wind_degree>352</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>48</humidity>
          <cloud>100</cloud>
          <feelslike_c>16</feelslike_c>
          <feelslike_f>60.8</feelslike_f>
          <windchill_c>16</windchill_c>
          <windchill_f>60.8</windchill_f>
          <heatindex_c>16</heatindex_c>
          <heatindex_f>60.8</heatindex_f>
          <dewpoint_c>5.3</dewpoint_c>
          <dewpoint_f>41.5</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.3</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491411600</time_epoch>
          <time>2017-04-05 18:00</time>
          <temp_c>14.2</temp_c>
          <temp_f>57.6</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Overcast</text>
          <icon>//cdn.apixu.com/weather/64x64/day/122.png</icon>
          <code>1009</code>
          </condition>
          <wind_mph>11</wind_mph>
          <wind_kph>17.6</wind_kph>
          <wind_degree>353</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>50</humidity>
          <cloud>100</cloud>
          <feelslike_c>15</feelslike_c>
          <feelslike_f>59</feelslike_f>
          <windchill_c>15</windchill_c>
          <windchill_f>59</windchill_f>
          <heatindex_c>15</heatindex_c>
          <heatindex_f>59</heatindex_f>
          <dewpoint_c>4.7</dewpoint_c>
          <dewpoint_f>40.5</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.6</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491415200</time_epoch>
          <time>2017-04-05 19:00</time>
          <temp_c>13.2</temp_c>
          <temp_f>55.8</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Overcast</text>
          <icon>//cdn.apixu.com/weather/64x64/day/122.png</icon>
          <code>1009</code>
          </condition>
          <wind_mph>12.1</wind_mph>
          <wind_kph>19.4</wind_kph>
          <wind_degree>355</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>51</humidity>
          <cloud>100</cloud>
          <feelslike_c>14</feelslike_c>
          <feelslike_f>57.2</feelslike_f>
          <windchill_c>14</windchill_c>
          <windchill_f>57.2</windchill_f>
          <heatindex_c>14</heatindex_c>
          <heatindex_f>57.2</heatindex_f>
          <dewpoint_c>4</dewpoint_c>
          <dewpoint_f>39.2</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491418800</time_epoch>
          <time>2017-04-05 20:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>10.3</wind_mph>
          <wind_kph>16.6</wind_kph>
          <wind_degree>243</wind_degree>
          <wind_dir>WSW</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>55</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>4</dewpoint_c>
          <dewpoint_f>39.2</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.3</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491422400</time_epoch>
          <time>2017-04-05 21:00</time>
          <temp_c>11.2</temp_c>
          <temp_f>52.2</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Overcast</text>
          <icon>//cdn.apixu.com/weather/64x64/night/122.png</icon>
          <code>1009</code>
          </condition>
          <wind_mph>8.7</wind_mph>
          <wind_kph>14</wind_kph>
          <wind_degree>130</wind_degree>
          <wind_dir>SE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>60</humidity>
          <cloud>100</cloud>
          <feelslike_c>12</feelslike_c>
          <feelslike_f>53.6</feelslike_f>
          <windchill_c>12</windchill_c>
          <windchill_f>53.6</windchill_f>
          <heatindex_c>12</heatindex_c>
          <heatindex_f>53.6</heatindex_f>
          <dewpoint_c>4</dewpoint_c>
          <dewpoint_f>39.2</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.7</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491426000</time_epoch>
          <time>2017-04-05 22:00</time>
          <temp_c>10.2</temp_c>
          <temp_f>50.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>6.9</wind_mph>
          <wind_kph>11.2</wind_kph>
          <wind_degree>18</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>64</humidity>
          <cloud>100</cloud>
          <feelslike_c>11</feelslike_c>
          <feelslike_f>51.8</feelslike_f>
          <windchill_c>11</windchill_c>
          <windchill_f>51.8</windchill_f>
          <heatindex_c>11</heatindex_c>
          <heatindex_f>51.8</heatindex_f>
          <dewpoint_c>4</dewpoint_c>
          <dewpoint_f>39.2</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491429600</time_epoch>
          <time>2017-04-05 23:00</time>
          <temp_c>9.2</temp_c>
          <temp_f>48.6</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>5.6</wind_mph>
          <wind_kph>9</wind_kph>
          <wind_degree>14</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>66</humidity>
          <cloud>100</cloud>
          <feelslike_c>9.7</feelslike_c>
          <feelslike_f>49.5</feelslike_f>
          <windchill_c>9.7</windchill_c>
          <windchill_f>49.5</windchill_f>
          <heatindex_c>10</heatindex_c>
          <heatindex_f>50</heatindex_f>
          <dewpoint_c>3.7</dewpoint_c>
          <dewpoint_f>38.7</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          </forecastday>
          <forecastday>
          <date>2017-04-06</date>
          <date_epoch>1491436800</date_epoch>
          <day>
          <maxtemp_c>12.2</maxtemp_c>
          <maxtemp_f>54</maxtemp_f>
          <mintemp_c>5.2</mintemp_c>
          <mintemp_f>41.4</mintemp_f>
          <avgtemp_c>9.3</avgtemp_c>
          <avgtemp_f>48.8</avgtemp_f>
          <maxwind_mph>12.1</maxwind_mph>
          <maxwind_kph>19.4</maxwind_kph>
          <totalprecip_mm>0.1</totalprecip_mm>
          <totalprecip_in>0</totalprecip_in>
          <avgvis_km>19.1</avgvis_km>
          <avgvis_miles>11</avgvis_miles>
          <avghumidity>64</avghumidity>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/116.png</icon>
          <code>1003</code>
          </condition>
          </day>
          <astro>
          <sunrise>07:18 AM</sunrise>
          <sunset>08:29 PM</sunset>
          <moonrise>03:24 PM</moonrise>
          <moonset>05:14 AM</moonset>
          </astro>
          <hour>
          <time_epoch>1491433200</time_epoch>
          <time>2017-04-06 00:00</time>
          <temp_c>8.2</temp_c>
          <temp_f>46.8</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4.3</wind_mph>
          <wind_kph>6.8</wind_kph>
          <wind_degree>10</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1030</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>69</humidity>
          <cloud>100</cloud>
          <feelslike_c>8.3</feelslike_c>
          <feelslike_f>46.9</feelslike_f>
          <windchill_c>8.3</windchill_c>
          <windchill_f>46.9</windchill_f>
          <heatindex_c>9</heatindex_c>
          <heatindex_f>48.2</heatindex_f>
          <dewpoint_c>3.3</dewpoint_c>
          <dewpoint_f>37.9</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491436800</time_epoch>
          <time>2017-04-06 01:00</time>
          <temp_c>7.2</temp_c>
          <temp_f>45</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.9</wind_mph>
          <wind_kph>4.7</wind_kph>
          <wind_degree>6</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1030</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>71</humidity>
          <cloud>100</cloud>
          <feelslike_c>7</feelslike_c>
          <feelslike_f>44.6</feelslike_f>
          <windchill_c>7</windchill_c>
          <windchill_f>44.6</windchill_f>
          <heatindex_c>8</heatindex_c>
          <heatindex_f>46.4</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491440400</time_epoch>
          <time>2017-04-06 02:00</time>
          <temp_c>7.2</temp_c>
          <temp_f>45</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.5</wind_mph>
          <wind_kph>4</wind_kph>
          <wind_degree>4</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1030</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>72</humidity>
          <cloud>100</cloud>
          <feelslike_c>7.3</feelslike_c>
          <feelslike_f>45.1</feelslike_f>
          <windchill_c>7.3</windchill_c>
          <windchill_f>45.1</windchill_f>
          <heatindex_c>8</heatindex_c>
          <heatindex_f>46.4</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491444000</time_epoch>
          <time>2017-04-06 03:00</time>
          <temp_c>7.2</temp_c>
          <temp_f>45</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.2</wind_mph>
          <wind_kph>3.6</wind_kph>
          <wind_degree>2</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>74</humidity>
          <cloud>100</cloud>
          <feelslike_c>7.7</feelslike_c>
          <feelslike_f>45.9</feelslike_f>
          <windchill_c>7.7</windchill_c>
          <windchill_f>45.9</windchill_f>
          <heatindex_c>8</heatindex_c>
          <heatindex_f>46.4</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491447600</time_epoch>
          <time>2017-04-06 04:00</time>
          <temp_c>7.2</temp_c>
          <temp_f>45</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>1.8</wind_mph>
          <wind_kph>2.9</wind_kph>
          <wind_degree>0</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>75</humidity>
          <cloud>100</cloud>
          <feelslike_c>8</feelslike_c>
          <feelslike_f>46.4</feelslike_f>
          <windchill_c>8</windchill_c>
          <windchill_f>46.4</windchill_f>
          <heatindex_c>8</heatindex_c>
          <heatindex_f>46.4</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491451200</time_epoch>
          <time>2017-04-06 05:00</time>
          <temp_c>6.9</temp_c>
          <temp_f>44.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>2.2</wind_mph>
          <wind_kph>3.6</wind_kph>
          <wind_degree>2</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>76</humidity>
          <cloud>100</cloud>
          <feelslike_c>7.3</feelslike_c>
          <feelslike_f>45.1</feelslike_f>
          <windchill_c>7.3</windchill_c>
          <windchill_f>45.1</windchill_f>
          <heatindex_c>7.7</heatindex_c>
          <heatindex_f>45.9</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.5</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491454800</time_epoch>
          <time>2017-04-06 06:00</time>
          <temp_c>6.5</temp_c>
          <temp_f>43.7</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.5</wind_mph>
          <wind_kph>4</wind_kph>
          <wind_degree>4</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>76</humidity>
          <cloud>100</cloud>
          <feelslike_c>6.7</feelslike_c>
          <feelslike_f>44.1</feelslike_f>
          <windchill_c>6.7</windchill_c>
          <windchill_f>44.1</windchill_f>
          <heatindex_c>7.3</heatindex_c>
          <heatindex_f>45.1</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.1</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491458400</time_epoch>
          <time>2017-04-06 07:00</time>
          <temp_c>6.2</temp_c>
          <temp_f>43.2</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>2.9</wind_mph>
          <wind_kph>4.7</wind_kph>
          <wind_degree>5</wind_degree>
          <wind_dir>N</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>77</humidity>
          <cloud>100</cloud>
          <feelslike_c>6</feelslike_c>
          <feelslike_f>42.8</feelslike_f>
          <windchill_c>6</windchill_c>
          <windchill_f>42.8</windchill_f>
          <heatindex_c>7</heatindex_c>
          <heatindex_f>44.6</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.7</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491462000</time_epoch>
          <time>2017-04-06 08:00</time>
          <temp_c>6.9</temp_c>
          <temp_f>44.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4.5</wind_mph>
          <wind_kph>7.2</wind_kph>
          <wind_degree>15</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>76</humidity>
          <cloud>100</cloud>
          <feelslike_c>7</feelslike_c>
          <feelslike_f>44.6</feelslike_f>
          <windchill_c>7</windchill_c>
          <windchill_f>44.6</windchill_f>
          <heatindex_c>7.7</heatindex_c>
          <heatindex_f>45.9</heatindex_f>
          <dewpoint_c>3.7</dewpoint_c>
          <dewpoint_f>38.7</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.5</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491465600</time_epoch>
          <time>2017-04-06 09:00</time>
          <temp_c>7.5</temp_c>
          <temp_f>45.5</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Partly cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/116.png</icon>
          <code>1003</code>
          </condition>
          <wind_mph>6.3</wind_mph>
          <wind_kph>10.1</wind_kph>
          <wind_degree>24</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>75</humidity>
          <cloud>100</cloud>
          <feelslike_c>8</feelslike_c>
          <feelslike_f>46.4</feelslike_f>
          <windchill_c>8</windchill_c>
          <windchill_f>46.4</windchill_f>
          <heatindex_c>8.3</heatindex_c>
          <heatindex_f>46.9</heatindex_f>
          <dewpoint_c>4.3</dewpoint_c>
          <dewpoint_f>39.7</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.4</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491469200</time_epoch>
          <time>2017-04-06 10:00</time>
          <temp_c>8.2</temp_c>
          <temp_f>46.8</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>7.8</wind_mph>
          <wind_kph>12.6</wind_kph>
          <wind_degree>33</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>74</humidity>
          <cloud>100</cloud>
          <feelslike_c>9</feelslike_c>
          <feelslike_f>48.2</feelslike_f>
          <windchill_c>9</windchill_c>
          <windchill_f>48.2</windchill_f>
          <heatindex_c>9</heatindex_c>
          <heatindex_f>48.2</heatindex_f>
          <dewpoint_c>5</dewpoint_c>
          <dewpoint_f>41</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.2</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491472800</time_epoch>
          <time>2017-04-06 11:00</time>
          <temp_c>9.2</temp_c>
          <temp_f>48.6</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>8.3</wind_mph>
          <wind_kph>13.3</wind_kph>
          <wind_degree>32</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>67</humidity>
          <cloud>100</cloud>
          <feelslike_c>10</feelslike_c>
          <feelslike_f>50</feelslike_f>
          <windchill_c>10</windchill_c>
          <windchill_f>50</windchill_f>
          <heatindex_c>10</heatindex_c>
          <heatindex_f>50</heatindex_f>
          <dewpoint_c>4.3</dewpoint_c>
          <dewpoint_f>39.7</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491476400</time_epoch>
          <time>2017-04-06 12:00</time>
          <temp_c>10.2</temp_c>
          <temp_f>50.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>8.5</wind_mph>
          <wind_kph>13.7</wind_kph>
          <wind_degree>30</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>60</humidity>
          <cloud>100</cloud>
          <feelslike_c>11</feelslike_c>
          <feelslike_f>51.8</feelslike_f>
          <windchill_c>11</windchill_c>
          <windchill_f>51.8</windchill_f>
          <heatindex_c>11</heatindex_c>
          <heatindex_f>51.8</heatindex_f>
          <dewpoint_c>3.7</dewpoint_c>
          <dewpoint_f>38.7</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>17.8</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491480000</time_epoch>
          <time>2017-04-06 13:00</time>
          <temp_c>11.2</temp_c>
          <temp_f>52.2</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>8.9</wind_mph>
          <wind_kph>14.4</wind_kph>
          <wind_degree>29</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1030</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>53</humidity>
          <cloud>100</cloud>
          <feelslike_c>12</feelslike_c>
          <feelslike_f>53.6</feelslike_f>
          <windchill_c>12</windchill_c>
          <windchill_f>53.6</windchill_f>
          <heatindex_c>12</heatindex_c>
          <heatindex_f>53.6</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>17.6</vis_km>
          <vis_miles>10</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491483600</time_epoch>
          <time>2017-04-06 14:00</time>
          <temp_c>11.5</temp_c>
          <temp_f>52.7</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>10.1</wind_mph>
          <wind_kph>16.2</wind_kph>
          <wind_degree>27</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1030</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0.1</precip_mm>
          <precip_in>0</precip_in>
          <humidity>52</humidity>
          <cloud>100</cloud>
          <feelslike_c>12.3</feelslike_c>
          <feelslike_f>54.1</feelslike_f>
          <windchill_c>12.3</windchill_c>
          <windchill_f>54.1</windchill_f>
          <heatindex_c>12.3</heatindex_c>
          <heatindex_f>54.1</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491487200</time_epoch>
          <time>2017-04-06 15:00</time>
          <temp_c>11.9</temp_c>
          <temp_f>53.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Patchy rain possible</text>
          <icon>//cdn.apixu.com/weather/64x64/day/176.png</icon>
          <code>1063</code>
          </condition>
          <wind_mph>11</wind_mph>
          <wind_kph>17.6</wind_kph>
          <wind_degree>26</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>52</humidity>
          <cloud>100</cloud>
          <feelslike_c>12.7</feelslike_c>
          <feelslike_f>54.9</feelslike_f>
          <windchill_c>12.7</windchill_c>
          <windchill_f>54.9</windchill_f>
          <heatindex_c>12.7</heatindex_c>
          <heatindex_f>54.9</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.3</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491490800</time_epoch>
          <time>2017-04-06 16:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>12.1</wind_mph>
          <wind_kph>19.4</wind_kph>
          <wind_degree>24</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>51</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>18.7</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491494400</time_epoch>
          <time>2017-04-06 17:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>10.7</wind_mph>
          <wind_kph>17.3</wind_kph>
          <wind_degree>25</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>51</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491498000</time_epoch>
          <time>2017-04-06 18:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>9.4</wind_mph>
          <wind_kph>15.1</wind_kph>
          <wind_degree>26</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>52</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.3</vis_km>
          <vis_miles>11</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491501600</time_epoch>
          <time>2017-04-06 19:00</time>
          <temp_c>12.2</temp_c>
          <temp_f>54</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/day/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>8.1</wind_mph>
          <wind_kph>13</wind_kph>
          <wind_degree>27</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>52</humidity>
          <cloud>100</cloud>
          <feelslike_c>13</feelslike_c>
          <feelslike_f>55.4</feelslike_f>
          <windchill_c>13</windchill_c>
          <windchill_f>55.4</windchill_f>
          <heatindex_c>13</heatindex_c>
          <heatindex_f>55.4</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.6</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491505200</time_epoch>
          <time>2017-04-06 20:00</time>
          <temp_c>11.5</temp_c>
          <temp_f>52.7</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>6.3</wind_mph>
          <wind_kph>10.1</wind_kph>
          <wind_degree>28</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>55</humidity>
          <cloud>100</cloud>
          <feelslike_c>12.3</feelslike_c>
          <feelslike_f>54.1</feelslike_f>
          <windchill_c>12.3</windchill_c>
          <windchill_f>54.1</windchill_f>
          <heatindex_c>12.3</heatindex_c>
          <heatindex_f>54.1</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.7</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491508800</time_epoch>
          <time>2017-04-06 21:00</time>
          <temp_c>10.9</temp_c>
          <temp_f>51.6</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Cloudy</text>
          <icon>//cdn.apixu.com/weather/64x64/night/119.png</icon>
          <code>1006</code>
          </condition>
          <wind_mph>4.7</wind_mph>
          <wind_kph>7.6</wind_kph>
          <wind_degree>30</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>59</humidity>
          <cloud>100</cloud>
          <feelslike_c>11.7</feelslike_c>
          <feelslike_f>53.1</feelslike_f>
          <windchill_c>11.7</windchill_c>
          <windchill_f>53.1</windchill_f>
          <heatindex_c>11.7</heatindex_c>
          <heatindex_f>53.1</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491512400</time_epoch>
          <time>2017-04-06 22:00</time>
          <temp_c>10.2</temp_c>
          <temp_f>50.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.9</wind_mph>
          <wind_kph>4.7</wind_kph>
          <wind_degree>32</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>62</humidity>
          <cloud>100</cloud>
          <feelslike_c>11</feelslike_c>
          <feelslike_f>51.8</feelslike_f>
          <windchill_c>11</windchill_c>
          <windchill_f>51.8</windchill_f>
          <heatindex_c>11</heatindex_c>
          <heatindex_f>51.8</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491516000</time_epoch>
          <time>2017-04-06 23:00</time>
          <temp_c>8.9</temp_c>
          <temp_f>48</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.5</wind_mph>
          <wind_kph>4</wind_kph>
          <wind_degree>32</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1029</pressure_mb>
          <pressure_in>30.9</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>66</humidity>
          <cloud>100</cloud>
          <feelslike_c>9.7</feelslike_c>
          <feelslike_f>49.5</feelslike_f>
          <windchill_c>9.7</windchill_c>
          <windchill_f>49.5</windchill_f>
          <heatindex_c>9.7</heatindex_c>
          <heatindex_f>49.5</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          </forecastday>
          <forecastday>
          <date>2017-04-07</date>
          <date_epoch>1491523200</date_epoch>
          <day>
          <maxtemp_c>17.2</maxtemp_c>
          <maxtemp_f>63</maxtemp_f>
          <mintemp_c>6.2</mintemp_c>
          <mintemp_f>43.2</mintemp_f>
          <avgtemp_c>10.3</avgtemp_c>
          <avgtemp_f>50.6</avgtemp_f>
          <maxwind_mph>6</maxwind_mph>
          <maxwind_kph>9.7</maxwind_kph>
          <totalprecip_mm>0</totalprecip_mm>
          <totalprecip_in>0</totalprecip_in>
          <avgvis_km>20</avgvis_km>
          <avgvis_miles>12</avgvis_miles>
          <avghumidity>68</avghumidity>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          </day>
          <astro>
          <sunrise>07:16 AM</sunrise>
          <sunset>08:30 PM</sunset>
          <moonrise>04:31 PM</moonrise>
          <moonset>05:47 AM</moonset>
          </astro>
          <hour>
          <time_epoch>1491519600</time_epoch>
          <time>2017-04-07 00:00</time>
          <temp_c>7.5</temp_c>
          <temp_f>45.5</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.2</wind_mph>
          <wind_kph>3.6</wind_kph>
          <wind_degree>32</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>71</humidity>
          <cloud>100</cloud>
          <feelslike_c>8.3</feelslike_c>
          <feelslike_f>46.9</feelslike_f>
          <windchill_c>8.3</windchill_c>
          <windchill_f>46.9</windchill_f>
          <heatindex_c>8.3</heatindex_c>
          <heatindex_f>46.9</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491523200</time_epoch>
          <time>2017-04-07 01:00</time>
          <temp_c>6.2</temp_c>
          <temp_f>43.2</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>1.8</wind_mph>
          <wind_kph>2.9</wind_kph>
          <wind_degree>33</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>75</humidity>
          <cloud>100</cloud>
          <feelslike_c>7</feelslike_c>
          <feelslike_f>44.6</feelslike_f>
          <windchill_c>7</windchill_c>
          <windchill_f>44.6</windchill_f>
          <heatindex_c>7</heatindex_c>
          <heatindex_f>44.6</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491526800</time_epoch>
          <time>2017-04-07 02:00</time>
          <temp_c>5.9</temp_c>
          <temp_f>42.6</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Mist</text>
          <icon>//cdn.apixu.com/weather/64x64/night/143.png</icon>
          <code>1030</code>
          </condition>
          <wind_mph>1.8</wind_mph>
          <wind_kph>2.9</wind_kph>
          <wind_degree>33</wind_degree>
          <wind_dir>NNE</wind_dir>
          <pressure_mb>1028</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>77</humidity>
          <cloud>100</cloud>
          <feelslike_c>6.7</feelslike_c>
          <feelslike_f>44.1</feelslike_f>
          <windchill_c>6.7</windchill_c>
          <windchill_f>44.1</windchill_f>
          <heatindex_c>6.7</heatindex_c>
          <heatindex_f>44.1</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491530400</time_epoch>
          <time>2017-04-07 03:00</time>
          <temp_c>5.5</temp_c>
          <temp_f>41.9</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>1.8</wind_mph>
          <wind_kph>2.9</wind_kph>
          <wind_degree>34</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>80</humidity>
          <cloud>100</cloud>
          <feelslike_c>6.3</feelslike_c>
          <feelslike_f>43.3</feelslike_f>
          <windchill_c>6.3</windchill_c>
          <windchill_f>43.3</windchill_f>
          <heatindex_c>6.3</heatindex_c>
          <heatindex_f>43.3</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491534000</time_epoch>
          <time>2017-04-07 04:00</time>
          <temp_c>5.2</temp_c>
          <temp_f>41.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Mist</text>
          <icon>//cdn.apixu.com/weather/64x64/night/143.png</icon>
          <code>1030</code>
          </condition>
          <wind_mph>1.8</wind_mph>
          <wind_kph>2.9</wind_kph>
          <wind_degree>34</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>82</humidity>
          <cloud>100</cloud>
          <feelslike_c>6</feelslike_c>
          <feelslike_f>42.8</feelslike_f>
          <windchill_c>6</windchill_c>
          <windchill_f>42.8</windchill_f>
          <heatindex_c>6</heatindex_c>
          <heatindex_f>42.8</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491537600</time_epoch>
          <time>2017-04-07 05:00</time>
          <temp_c>5.2</temp_c>
          <temp_f>41.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>1.6</wind_mph>
          <wind_kph>2.5</wind_kph>
          <wind_degree>35</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>83</humidity>
          <cloud>100</cloud>
          <feelslike_c>6</feelslike_c>
          <feelslike_f>42.8</feelslike_f>
          <windchill_c>6</windchill_c>
          <windchill_f>42.8</windchill_f>
          <heatindex_c>6</heatindex_c>
          <heatindex_f>42.8</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491541200</time_epoch>
          <time>2017-04-07 06:00</time>
          <temp_c>5.2</temp_c>
          <temp_f>41.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Mist</text>
          <icon>//cdn.apixu.com/weather/64x64/night/143.png</icon>
          <code>1030</code>
          </condition>
          <wind_mph>1.1</wind_mph>
          <wind_kph>1.8</wind_kph>
          <wind_degree>37</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>83</humidity>
          <cloud>100</cloud>
          <feelslike_c>6</feelslike_c>
          <feelslike_f>42.8</feelslike_f>
          <windchill_c>6</windchill_c>
          <windchill_f>42.8</windchill_f>
          <heatindex_c>6</heatindex_c>
          <heatindex_f>42.8</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491544800</time_epoch>
          <time>2017-04-07 07:00</time>
          <temp_c>5.2</temp_c>
          <temp_f>41.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>0.9</wind_mph>
          <wind_kph>1.4</wind_kph>
          <wind_degree>39</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>84</humidity>
          <cloud>100</cloud>
          <feelslike_c>6</feelslike_c>
          <feelslike_f>42.8</feelslike_f>
          <windchill_c>6</windchill_c>
          <windchill_f>42.8</windchill_f>
          <heatindex_c>6</heatindex_c>
          <heatindex_f>42.8</heatindex_f>
          <dewpoint_c>3</dewpoint_c>
          <dewpoint_f>37.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491548400</time_epoch>
          <time>2017-04-07 08:00</time>
          <temp_c>6.5</temp_c>
          <temp_f>43.7</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>1.8</wind_mph>
          <wind_kph>2.9</wind_kph>
          <wind_degree>43</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1027</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>81</humidity>
          <cloud>100</cloud>
          <feelslike_c>7.3</feelslike_c>
          <feelslike_f>45.1</feelslike_f>
          <windchill_c>7.3</windchill_c>
          <windchill_f>45.1</windchill_f>
          <heatindex_c>7.3</heatindex_c>
          <heatindex_f>45.1</heatindex_f>
          <dewpoint_c>4</dewpoint_c>
          <dewpoint_f>39.2</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491552000</time_epoch>
          <time>2017-04-07 09:00</time>
          <temp_c>7.9</temp_c>
          <temp_f>46.2</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.5</wind_mph>
          <wind_kph>4</wind_kph>
          <wind_degree>48</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>78</humidity>
          <cloud>100</cloud>
          <feelslike_c>8.7</feelslike_c>
          <feelslike_f>47.7</feelslike_f>
          <windchill_c>8.7</windchill_c>
          <windchill_f>47.7</windchill_f>
          <heatindex_c>8.7</heatindex_c>
          <heatindex_f>47.7</heatindex_f>
          <dewpoint_c>5</dewpoint_c>
          <dewpoint_f>41</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491555600</time_epoch>
          <time>2017-04-07 10:00</time>
          <temp_c>9.2</temp_c>
          <temp_f>48.6</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>3.4</wind_mph>
          <wind_kph>5.4</wind_kph>
          <wind_degree>52</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1026</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>75</humidity>
          <cloud>100</cloud>
          <feelslike_c>10</feelslike_c>
          <feelslike_f>50</feelslike_f>
          <windchill_c>10</windchill_c>
          <windchill_f>50</windchill_f>
          <heatindex_c>10</heatindex_c>
          <heatindex_f>50</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491559200</time_epoch>
          <time>2017-04-07 11:00</time>
          <temp_c>10.5</temp_c>
          <temp_f>50.9</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>3.8</wind_mph>
          <wind_kph>6.1</wind_kph>
          <wind_degree>54</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>71</humidity>
          <cloud>100</cloud>
          <feelslike_c>11.3</feelslike_c>
          <feelslike_f>52.3</feelslike_f>
          <windchill_c>11.3</windchill_c>
          <windchill_f>52.3</windchill_f>
          <heatindex_c>11.3</heatindex_c>
          <heatindex_f>52.3</heatindex_f>
          <dewpoint_c>6.7</dewpoint_c>
          <dewpoint_f>44.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491562800</time_epoch>
          <time>2017-04-07 12:00</time>
          <temp_c>11.9</temp_c>
          <temp_f>53.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4.5</wind_mph>
          <wind_kph>7.2</wind_kph>
          <wind_degree>55</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>67</humidity>
          <cloud>100</cloud>
          <feelslike_c>12.7</feelslike_c>
          <feelslike_f>54.9</feelslike_f>
          <windchill_c>12.7</windchill_c>
          <windchill_f>54.9</windchill_f>
          <heatindex_c>12.7</heatindex_c>
          <heatindex_f>54.9</heatindex_f>
          <dewpoint_c>7.3</dewpoint_c>
          <dewpoint_f>45.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491566400</time_epoch>
          <time>2017-04-07 13:00</time>
          <temp_c>13.2</temp_c>
          <temp_f>55.8</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4.9</wind_mph>
          <wind_kph>7.9</wind_kph>
          <wind_degree>56</wind_degree>
          <wind_dir>ENE</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>63</humidity>
          <cloud>100</cloud>
          <feelslike_c>14</feelslike_c>
          <feelslike_f>57.2</feelslike_f>
          <windchill_c>14</windchill_c>
          <windchill_f>57.2</windchill_f>
          <heatindex_c>14</heatindex_c>
          <heatindex_f>57.2</heatindex_f>
          <dewpoint_c>8</dewpoint_c>
          <dewpoint_f>46.4</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491570000</time_epoch>
          <time>2017-04-07 14:00</time>
          <temp_c>14.5</temp_c>
          <temp_f>58.1</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4.3</wind_mph>
          <wind_kph>6.8</wind_kph>
          <wind_degree>55</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>57</humidity>
          <cloud>100</cloud>
          <feelslike_c>15.3</feelslike_c>
          <feelslike_f>59.5</feelslike_f>
          <windchill_c>15.3</windchill_c>
          <windchill_f>59.5</windchill_f>
          <heatindex_c>15.3</heatindex_c>
          <heatindex_f>59.5</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491573600</time_epoch>
          <time>2017-04-07 15:00</time>
          <temp_c>15.9</temp_c>
          <temp_f>60.6</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>3.6</wind_mph>
          <wind_kph>5.8</wind_kph>
          <wind_degree>54</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>50</humidity>
          <cloud>100</cloud>
          <feelslike_c>16.7</feelslike_c>
          <feelslike_f>62.1</feelslike_f>
          <windchill_c>16.7</windchill_c>
          <windchill_f>62.1</windchill_f>
          <heatindex_c>16.7</heatindex_c>
          <heatindex_f>62.1</heatindex_f>
          <dewpoint_c>6</dewpoint_c>
          <dewpoint_f>42.8</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491577200</time_epoch>
          <time>2017-04-07 16:00</time>
          <temp_c>17.2</temp_c>
          <temp_f>63</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.9</wind_mph>
          <wind_kph>4.7</wind_kph>
          <wind_degree>53</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.8</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>44</humidity>
          <cloud>100</cloud>
          <feelslike_c>18</feelslike_c>
          <feelslike_f>64.4</feelslike_f>
          <windchill_c>18</windchill_c>
          <windchill_f>64.4</windchill_f>
          <heatindex_c>18</heatindex_c>
          <heatindex_f>64.4</heatindex_f>
          <dewpoint_c>5</dewpoint_c>
          <dewpoint_f>41</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491580800</time_epoch>
          <time>2017-04-07 17:00</time>
          <temp_c>16.5</temp_c>
          <temp_f>61.7</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4</wind_mph>
          <wind_kph>6.5</wind_kph>
          <wind_degree>49</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1025</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>47</humidity>
          <cloud>100</cloud>
          <feelslike_c>17.3</feelslike_c>
          <feelslike_f>63.1</feelslike_f>
          <windchill_c>17.3</windchill_c>
          <windchill_f>63.1</windchill_f>
          <heatindex_c>17.3</heatindex_c>
          <heatindex_f>63.1</heatindex_f>
          <dewpoint_c>5.7</dewpoint_c>
          <dewpoint_f>42.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491584400</time_epoch>
          <time>2017-04-07 18:00</time>
          <temp_c>15.9</temp_c>
          <temp_f>60.6</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4.9</wind_mph>
          <wind_kph>7.9</wind_kph>
          <wind_degree>45</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>51</humidity>
          <cloud>100</cloud>
          <feelslike_c>16.7</feelslike_c>
          <feelslike_f>62.1</feelslike_f>
          <windchill_c>16.7</windchill_c>
          <windchill_f>62.1</windchill_f>
          <heatindex_c>16.7</heatindex_c>
          <heatindex_f>62.1</heatindex_f>
          <dewpoint_c>6.3</dewpoint_c>
          <dewpoint_f>43.3</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491588000</time_epoch>
          <time>2017-04-07 19:00</time>
          <temp_c>15.2</temp_c>
          <temp_f>59.4</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>6</wind_mph>
          <wind_kph>9.7</wind_kph>
          <wind_degree>42</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>54</humidity>
          <cloud>100</cloud>
          <feelslike_c>16</feelslike_c>
          <feelslike_f>60.8</feelslike_f>
          <windchill_c>16</windchill_c>
          <windchill_f>60.8</windchill_f>
          <heatindex_c>16</heatindex_c>
          <heatindex_f>60.8</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491591600</time_epoch>
          <time>2017-04-07 20:00</time>
          <temp_c>13.9</temp_c>
          <temp_f>57</temp_f>
          <is_day>1</is_day>
          <condition>
          <text>Sunny</text>
          <icon>//cdn.apixu.com/weather/64x64/day/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4.9</wind_mph>
          <wind_kph>7.9</wind_kph>
          <wind_degree>46</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>59</humidity>
          <cloud>100</cloud>
          <feelslike_c>14.7</feelslike_c>
          <feelslike_f>58.5</feelslike_f>
          <windchill_c>14.7</windchill_c>
          <windchill_f>58.5</windchill_f>
          <heatindex_c>14.7</heatindex_c>
          <heatindex_f>58.5</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>20</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491595200</time_epoch>
          <time>2017-04-07 21:00</time>
          <temp_c>12.5</temp_c>
          <temp_f>54.5</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>4</wind_mph>
          <wind_kph>6.5</wind_kph>
          <wind_degree>50</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>65</humidity>
          <cloud>100</cloud>
          <feelslike_c>13.3</feelslike_c>
          <feelslike_f>55.9</feelslike_f>
          <windchill_c>13.3</windchill_c>
          <windchill_f>55.9</windchill_f>
          <heatindex_c>13.3</heatindex_c>
          <heatindex_f>55.9</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491598800</time_epoch>
          <time>2017-04-07 22:00</time>
          <temp_c>11.2</temp_c>
          <temp_f>52.2</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>2.9</wind_mph>
          <wind_kph>4.7</wind_kph>
          <wind_degree>53</wind_degree>
          <wind_dir>NE</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>70</humidity>
          <cloud>100</cloud>
          <feelslike_c>12</feelslike_c>
          <feelslike_f>53.6</feelslike_f>
          <windchill_c>12</windchill_c>
          <windchill_f>53.6</windchill_f>
          <heatindex_c>12</heatindex_c>
          <heatindex_f>53.6</heatindex_f>
          <dewpoint_c>7</dewpoint_c>
          <dewpoint_f>44.6</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          <hour>
          <time_epoch>1491602400</time_epoch>
          <time>2017-04-07 23:00</time>
          <temp_c>10.2</temp_c>
          <temp_f>50.4</temp_f>
          <is_day>0</is_day>
          <condition>
          <text>Clear</text>
          <icon>//cdn.apixu.com/weather/64x64/night/113.png</icon>
          <code>1000</code>
          </condition>
          <wind_mph>3.6</wind_mph>
          <wind_kph>5.8</wind_kph>
          <wind_degree>56</wind_degree>
          <wind_dir>ENE</wind_dir>
          <pressure_mb>1024</pressure_mb>
          <pressure_in>30.7</pressure_in>
          <precip_mm>0</precip_mm>
          <precip_in>0</precip_in>
          <humidity>73</humidity>
          <cloud>100</cloud>
          <feelslike_c>11</feelslike_c>
          <feelslike_f>51.8</feelslike_f>
          <windchill_c>11</windchill_c>
          <windchill_f>51.8</windchill_f>
          <heatindex_c>11</heatindex_c>
          <heatindex_f>51.8</heatindex_f>
          <dewpoint_c>6.7</dewpoint_c>
          <dewpoint_f>44.1</dewpoint_f>
          <will_it_rain>0</will_it_rain>
          <will_it_snow>0</will_it_snow>
          <vis_km>19.9</vis_km>
          <vis_miles>12</vis_miles>
          </hour>
          </forecastday>
          </forecast>
          </root>
          Aber ich hab davon leider noch keine Ahnung....

          Kommentar


            #20

            Zitat von hx5 Beitrag anzeigen
            Hat leider nicht funktioniert. Wahrscheinlich ist XML-Teil anders aufgebaut:
            Jetzt habe ich mir das XML von apixu angesehen - weicht doch erheblich von worldweatheronline ab.
            Ich würde bei Bedarf dafür einen neuen LBS schreiben.
            Doch welche Angaben werden benötigt? Wie soll die Ausgabe erfolgen (Listen)?
            Ich frage deshalb, weil ich die Ausgabe des LBS19000696 mit 116 Ausgängen inzwischen sehr unübersichtlich finde und ich mich mittlerweile auch besser in EDOMI auskenne (z.B. split() ).
            Die Wetterdaten von apixu sind sehr detailliert (stündliche Werte) ausführlich (viele Angaben pro Stunde). Also was und welche Ausgabe wird benötigt?

            Gruß Marco

            Kommentar


              #21
              Zitat von mars Beitrag anzeigen
              Ich frage deshalb, weil ich die Ausgabe des LBS19000696 mit 116 Ausgängen inzwischen sehr unübersichtlich finde und ich mich mittlerweile auch besser in EDOMI auskenne (z.B. split() ).
              Gruß Marco
              So ging es mir auch. Hab jetzt mal den LBS 19000324 von wintermute ausprobiert. Für meinen derzeitigen Bedarf (max. Temp. heute) ist er völlig ausreichend.

              Ich dachte auch eigentlich du willst deinen Ursprünglichen vielleicht aktuallisieren weil es bei worldweatheronline keine kostenlosen Keys mehr gibt und dieser für neue Nutzer nicht intressant sein wird. Aber wie gesagt wegen mir musst das nicht machen...

              Gruß
              Michael

              Kommentar


                #22
                bei mir wird noch nichts ausgegeben
                Zitat von mars Beitrag anzeigen
                .. aber auch kein FATAL-Error. Damit scheint Version 0.2 des LBS robuster und ich werde ihn heute Abend ins Download-Portal stellen.
                Ich bin noch immer kein "PHP-Profi", aber das Verhalten erinnert mich schwer an das, was wir waehrend meines Studiums gern ueber Diplom-Informatiker gesagt haben:
                "Das Rad mit 3 Ecken ist ein grosser Fortschritt gegenueber dem Rad mit 4 Ecken weil es die Anzahl an Problemen pro Umdrehung auf 75% verringert."

                Ich will Dir nicht zu nahe treten, aber es gibt aktuell mindestens 2 LBS von Dir mit Web-Anfragen im LBS-Teil (ich hab nach zweien aufgehoert zu suchen) und jetzt noch das

                EDIT: ich hab das nur geschrieben weil ich hier ploetzlich referenziert wurde

                Kommentar

                Lädt...
                X