Skip to content

Commit

Permalink
Merge pull request #113 from syedhamidali/master
Browse files Browse the repository at this point in the history
FIX: wrong long_names ERA5
  • Loading branch information
rcjackson authored Oct 16, 2023
2 parents 50b531a + 2b987d8 commit 3fafec9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydda/initialization/wind_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,11 +599,11 @@ def make_intialization_from_hrrr(Grid, file_path):
u_field = {}
u_field["data"] = u_new
u_field["standard_name"] = "u_wind"
u_field["long_name"] = "meridional component of wind velocity"
u_field["long_name"] = "zonal component of wind velocity"
v_field = {}
v_field["data"] = v_new
v_field["standard_name"] = "v_wind"
v_field["long_name"] = "zonal component of wind velocity"
v_field["long_name"] = "meridonial component of wind velocity"
w_field = {}
w_field["data"] = w_new
w_field["standard_name"] = "w_wind"
Expand Down

0 comments on commit 3fafec9

Please sign in to comment.