Can you use WDIR&WIND observations to calculate VCNT? #2240
-
Hello! We have UGRD and VGRD for forecast data and WDIR and WIND for observations.
But it does not read WDIR data. When we try to calculate Vector Statistics, we have an empty *_vcnt.txt files (with header only, no data). Is it possible to use observation data as is or do I have to recalculate WDIR&WIND to U&V components externally/manually (which does work) before using MET? As I understand, when not using
does not work, as it will match UGRD with WDIR and VGRD with WIND. Is it possible to use different formats of wind input data? I do get that it is not possible to verify WDIR itself from this topic, but it would be useful to be able to use U&V fcst together with WDIR&WIND obs data as input, as it is the most common format, I assume. Best regards. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@heu3becteh, unfortunately, the answer is no. Point-Stat isn't set up to pair U/V forecasts with wind speed/direction observations to compute the wind vector line types (VL1L2, VAL1L2, and/or VCNT). I can see how the logic could potentially be revised in the future to support that... but it doesn't do it now. With the current capabilities, you could use python embedding for the point observations. The python script could read the wind speed/direction, convert to U/V, and pass the result to Point-Stat. But I realize that does complicate matters. Is this a challenge you've been experiencing for a while? Wondering if I should write up an issue in GitHub to request this new feature be added to a future version? |
Beta Was this translation helpful? Give feedback.
@heu3becteh, unfortunately, the answer is no. Point-Stat isn't set up to pair U/V forecasts with wind speed/direction observations to compute the wind vector line types (VL1L2, VAL1L2, and/or VCNT). I can see how the logic could potentially be revised in the future to support that... but it doesn't do it now.
With the current capabilities, you could use python embedding for the point observations. The python script could read the wind speed/direction, convert to U/V, and pass the result to Point-Stat. But I realize that does complicate matters.
Is this a challenge you've been experiencing for a while? Wondering if I should write up an issue in GitHub to request this new feature be added t…