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
Users in the example code provided are encouraged to give pressure levels that define the bins in Pa. The plot_profile function intends to store the vertical pressure level in hPa, but then obtains these values by dividing by 1000 at line 101 of plots.py. The resulting incorrect vertical pressure levels can the be seen in the plots.
Proposed solutions
Divide by 100 instead of 1000 to correctly convert from Pa to hPa
Encourage users to give the bin ranges in hPa and convert to Pa when binning observations
The text was updated successfully, but these errors were encountered:
Issue
Users in the example code provided are encouraged to give pressure levels that define the bins in Pa. The plot_profile function intends to store the vertical pressure level in hPa, but then obtains these values by dividing by 1000 at line 101 of plots.py. The resulting incorrect vertical pressure levels can the be seen in the plots.
Proposed solutions
The text was updated successfully, but these errors were encountered: