Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recalculate Wyoming #730

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions src/siphon/simplewebservice/wyoming.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(self):
super().__init__('http://weather.uwyo.edu/cgi-bin/sounding')

@classmethod
def request_data(cls, time, site_id, **kwargs):
def request_data(cls, time, site_id, recalc=False, **kwargs):
r"""Retrieve upper air observations from the Wyoming archive.

Parameters
Expand All @@ -38,6 +38,9 @@ def request_data(cls, time, site_id, **kwargs):
The three letter ICAO identifier of the station for which data should be
downloaded.

recalc : bool
Returns recalculated data if True. Defaults to False.

kwargs
Arbitrary keyword arguments to use to initialize source

Expand All @@ -47,10 +50,10 @@ def request_data(cls, time, site_id, **kwargs):

"""
endpoint = cls()
df = endpoint._get_data(time, site_id)
df = endpoint._get_data(time, site_id, recalc=recalc)
return df

def _get_data(self, time, site_id):
def _get_data(self, time, site_id, recalc=False):
r"""Download and parse upper air observations from an online archive.

Parameters
Expand All @@ -62,12 +65,15 @@ def _get_data(self, time, site_id):
The three letter ICAO identifier of the station for which data should be
downloaded.

recalc : bool
Returns recalculated data if True. Defaults to False.

Returns
-------
:class:`pandas.DataFrame` containing the data

"""
raw_data = self._get_data_raw(time, site_id)
raw_data = self._get_data_raw(time, site_id, recalc=recalc)
soup = BeautifulSoup(raw_data, 'html.parser')
tabular_data = StringIO(soup.find_all('pre')[0].contents[0])
col_names = ['pressure', 'height', 'temperature', 'dewpoint', 'direction', 'speed']
Expand Down Expand Up @@ -124,7 +130,7 @@ def _get_data(self, time, site_id):
'pw': 'millimeter'}
return df

def _get_data_raw(self, time, site_id):
def _get_data_raw(self, time, site_id, recalc=False):
"""Download data from the University of Wyoming's upper air archive.

Parameters
Expand All @@ -133,6 +139,8 @@ def _get_data_raw(self, time, site_id):
Date and time for which data should be downloaded
site_id : str
Site id for which data should be downloaded
recalc : bool
Returns recalculated data if True. Defaults to False.

Returns
-------
Expand All @@ -142,7 +150,8 @@ def _get_data_raw(self, time, site_id):
path = ('?region=naconf&TYPE=TEXT%3ALIST'
'&YEAR={time:%Y}&MONTH={time:%m}&FROM={time:%d%H}&TO={time:%d%H}'
'&STNM={stid}').format(time=time, stid=site_id)

if recalc:
path += '&REPLOT=1'
resp = self.get_path(path)
# See if the return is valid, but has no data
if resp.text.find("Can't") != -1:
Expand Down
39 changes: 39 additions & 0 deletions tests/test_wyoming.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,45 @@ def test_wyoming():
assert df.units['time'] is None


@recorder.use_cassette('wyoming_sounding_recalculate')
def test_wyoming_recalculate():
"""Test that recalculation request returns the same data."""
df = WyomingUpperAir.request_data(
datetime(1999, 5, 4, 0), 'OUN', recalc=True)

assert df['time'][0] == datetime(1999, 5, 4, 0)
assert df['station'][0] == 'OUN'
assert df['station_number'][0] == 72357
assert df['latitude'][0] == 35.18
assert df['longitude'][0] == -97.44
assert df['elevation'][0] == 345.0

assert_almost_equal(df['pressure'][5], 867.9, 2)
assert_almost_equal(df['height'][5], 1219., 2)
assert_almost_equal(df['height'][30], 10505., 2)
assert_almost_equal(df['temperature'][5], 17.4, 2)
assert_almost_equal(df['dewpoint'][5], 14.3, 2)
assert_almost_equal(df['u_wind'][5], 6.60, 2)
assert_almost_equal(df['v_wind'][5], 37.42, 2)
assert_almost_equal(df['speed'][5], 38.0, 1)
assert_almost_equal(df['direction'][5], 190.0, 1)

assert df.units['pressure'] == 'hPa'
assert df.units['height'] == 'meter'
assert df.units['temperature'] == 'degC'
assert df.units['dewpoint'] == 'degC'
assert df.units['u_wind'] == 'knot'
assert df.units['v_wind'] == 'knot'
assert df.units['speed'] == 'knot'
assert df.units['direction'] == 'degrees'
assert df.units['latitude'] == 'degrees'
assert df.units['longitude'] == 'degrees'
assert df.units['elevation'] == 'meter'
assert df.units['station'] is None
assert df.units['station_number'] is None
assert df.units['time'] is None


@recorder.use_cassette('wyoming_sounding_no_station')
def test_wyoming_no_station():
"""Test that we handle stations with no ID from the Wyoming archive."""
Expand Down