Search found 3 matches

by ouyuyuan
Fri Aug 01, 2014 12:49 pm
Forum: ROMS Bugs
Topic: Bug in d_mercator2roms.m
Replies: 0
Views: 2270

Bug in d_mercator2roms.m

Hi guys,

In Revision 737, matlab/initial/d_mercator2roms.m, line 265 is
[status]=nc_write(INIname, 'spherical', 'T');
But I think it should be:
[status]=nc_write(INIname, 'spherical', 1);
This is consistent with previous definition of S.spherical.

At least for me, the d_mercator2roms.m will ...
by ouyuyuan
Thu Jul 24, 2014 12:54 pm
Forum: ROMS Bugs
Topic: Typo in seagrid2roms.m and c_grid.m
Replies: 0
Views: 2380

Typo in seagrid2roms.m and c_grid.m

Hi guys,
In revision 737, matlab/seagrid/seagrid2roms.m, line 118 is:
bathemetry(bathymetry>max_depth) = max_depth

I think it should be:
bathymetry(bathymetry>max_depth) = max_depth

The first word 'bathemetry' is a typo, maybe it will not clip the depth
deeper than maximum depth after ...
by ouyuyuan
Thu Jul 24, 2014 12:47 am
Forum: ROMS Bugs
Topic: error in read_mask.m
Replies: 0
Views: 2247

error in read_mask.m

Hi,
In release 737, matlab/landmask/read_mask.m, line 95:

Code: Select all

 if (spher == 'T' || spher == 't'),
But I think it should be

Code: Select all

 if (spher == 'T' || spher == 't' || spher == 1),
Otherwise, there will be no coast line when using editmask.m to do mask editing.