By using the codes below, I can succesfully get “TEMP Soundings” data from the University of Wyoming. (The website is http://weather.uwyo.edu/upperair/sounding.html)
import datetime
from siphon.simplewebservice.wyoming import WyomingUpperAir
date = datetime(2022, 3, 7, 0)
site = '54511'
df = WyomingUpperAir.request_data(date, site)
However, now the sounding data at some particular stations can only be obtained in the form of "BUFR Soundings", and the code "WyomingUpperAir.request_data(date, site)" does not work anymore. The website is http://weather.uwyo.edu/upperair/bufrraob.shtml How can I get these data by using Siphon (or other tool)? Thanks.
Gary, 27 Mar 2022