Skip to content
Advertisement

How deal with the UndefinedUnitError?

I downloaded data from noaa and i wanted to calculate vertical velocity using the function vertical_velocity=metpy.calcmpcalc.vertical_velocity(omega,pressure,temperature). But something wrong when i dealing with the units of varibles.

JavaScript

**The units of omega, height and temperature are ‘Pascal/s’, ‘m’ and ‘degC’, repectively. The varible pressure was calculate through the function mpcalc.height_to_pressure_std, and this function didn’t give the unit of pressure. But the values of pressure range from 1000 to 0, so i think its unit is ‘hpa’.

The error reported that “‘Pascal’ is not defined in the unit registry”. Maybe ‘Pascal/s’ is not the default unit of omega? But how can i know which units are defined in the unit registry ? Can anyone help me? Thanks!**

Advertisement

Answer

This is a problem where the unit library MetPy uses (Pint) does not have the same rules about capitalization/case sensitivity as the UDUnits format used by the netCDF Climate and Forecasting Conventions for metadata. Fixing this is on MetPy’s todo list, but some roadblocks have been encountered.

The work-around right now is to change your units to something that Pint understands, like:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement