-
Notifications
You must be signed in to change notification settings - Fork 75
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
Port Iowa State Soundings from MetPy #193
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As this was in MetPy already, I'd say it's good to go 👍
@dopplershift had suggested looking into pandas json capabilities. Looking at the nested structure of the returned json (profiles -> (profile -> (temperature, etc), date, etc.)) the parsing appears to be less useful as nested data frames aren't a thing. Example of the json: http://mesonet.agron.iastate.edu/json/raob.py?ts=201012091200&station=BOI |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also should rebase on master so we can have a green passing of tests.
siphon/simplewebservice/iastate.py
Outdated
|
||
import warnings | ||
|
||
from bs4 import BeautifulSoup |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is unused.
Should have had the rebase in there, but I just fixed up a few flake things. |
Closes #156 by porting the IA State upper air data functionality over from MetPy. Also fixes a typo in Wyoming and lack of test coverage there. I'll work on #189 for both Wyoming and Iowa after this.