I'm trying to estimate the vertical wind velocity from vertical pressure velocity. I found metpy.calc.vertical_velocity(omega, pressure, temperature, mixing=0).
https://unidata.github.io/MetPy/latest/api/generated/metpy.calc.vertical_velocity.html
However, there is no documentation on what unit it needs. I gave it Omega in Pa s-1, pressure in Pa, and temperature in K, all in the xarray format. I expect the output to be a xarray too. I got this error: "Cannot convert from 'pascal * second' to 'dimensionless". Any thought why it wants dimensionless variables and how to fix this?