Skip to content

Commit 2b987d8

Browse files
committed
FIX: wrong long_names ERA5
1 parent 50b531a commit 2b987d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydda/initialization/wind_fields.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,11 +599,11 @@ def make_intialization_from_hrrr(Grid, file_path):
599599
u_field = {}
600600
u_field["data"] = u_new
601601
u_field["standard_name"] = "u_wind"
602-
u_field["long_name"] = "meridional component of wind velocity"
602+
u_field["long_name"] = "zonal component of wind velocity"
603603
v_field = {}
604604
v_field["data"] = v_new
605605
v_field["standard_name"] = "v_wind"
606-
v_field["long_name"] = "zonal component of wind velocity"
606+
v_field["long_name"] = "meridonial component of wind velocity"
607607
w_field = {}
608608
w_field["data"] = w_new
609609
w_field["standard_name"] = "w_wind"

0 commit comments

Comments
 (0)