You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@DanielWatkins Hi, the IGRA-2 derived is missing division by 10 in "calculated relative humidity" and is thus, overestimating the value by a tens extra.
I've checked with the following raw data and for a couple of other stations as well.
The text was updated successfully, but these errors were encountered:
avatar101
changed the title
Calucated relative humidity overestimating by a decimal in IGRA derived
Calucated relative humidity overestimating by a tens in IGRA derived
Apr 16, 2018
Thanks for finding it. That's an easy fix - as is, it just imported the number in the raw data, I forgot to include the converter for that column. Same thing with reported relative humidity.
Yes, true that. So, would it be fixed before the new release or can I just copy the code file for IGRA from the repo and replace it with the older version?
I'll put in a pull request, it should be in the next version. In the meantime, you can still use the version in the code, just add a processing step. Something like: df.loc[:,'relative_humidity'] = df.loc[:,'relative_humidity']/10
@DanielWatkins Hi, the IGRA-2 derived is missing division by 10 in "calculated relative humidity" and is thus, overestimating the value by a tens extra.
I've checked with the following raw data and for a couple of other stations as well.
df_d_23022, header_d_23022 = IGRAUpperAir.request_data(datetime(1998,1,6,12), 'RSM00023022', derived=True )
The text was updated successfully, but these errors were encountered: