In [1]:
from aWhere import WeatherStation
In [2]:
forest = WeatherStation("Schenck Memorial Forest", 35.817317, -78.726371)
In [3]:
forest.request('2015-09-20', endDate='2015-09-27', attribute=['minTemperature', 'maxTemperature'])
In [4]:
import pandas as pd
df = pd.DataFrame(forest.data).transpose()
df
Out[4]:
In [5]:
%matplotlib inline
df.plot()
Out[5]: