Skip to content

Commit

Permalink
Merge pull request #1381 from knutfrode/dev
Browse files Browse the repository at this point in the history
Allow for variables u_eastward,v_northward in reader_ROMS_native. The…
  • Loading branch information
knutfrode authored Aug 22, 2024
2 parents 8022e94 + 7088905 commit c8f26ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opendrift/readers/reader_ROMS_native.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ def __init__(self, filename=None, name=None, gridfile=None, standard_name_mappin
'zeta': 'sea_surface_height',
'u': 'x_sea_water_velocity',
'v': 'y_sea_water_velocity',
#'u_eastward': 'x_sea_water_velocity', # these are wrognly rotated below
#'v_northward': 'y_sea_water_velocity',
'u_eastward': 'x_sea_water_velocity',
'v_northward': 'y_sea_water_velocity',
'w': 'upward_sea_water_velocity',
'temp': 'sea_water_temperature',
'salt': 'sea_water_salinity',
Expand Down

0 comments on commit c8f26ac

Please sign in to comment.