Custom Query (964 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (121 - 123 of 964)

Ticket Owner Reporter Resolution Summary
#644 arango AlexisEspinosa Done WET_DRY and AVERAGES_DETIDE options fail to compile together.
Description

WET_DRY and AVERAGES_DETIDE options fail to compile together. The solution is very simple:

1) Edit the file set_avg.F

2) Add the usage of mod_grid module in the set_detide_tile subroutine as in the other subroutines in that file. So, just add:

# ifdef WET_DRY
USE mod_grid
# endif

But it would be nice if this correction is added to ROMS files in the repository.

I commented this in the forum.

Cheers, Alexis

#645 arango wilkin Fixed making read_mask.m more robust
Description

editmask.m throws some errors due to conflicts with new or incomplete grid files when variable hraw has not been loaded.

These can be solved by making a few changes to read_mask.m

A grid file may have a variable hraw that has not been filled with data. This will cause an error in editmask. I suggest test for the case hraw has an empty dimension:

case {Vname.hraw}
  got.hraw=true;
  if any(V.Variables(n).Size==0)
     got.hraw=false;
  end

read_mask presently only checks for spherical in the form of a character, and always returns false even when spherical=1 (numeric). Make this robust and compatible with both conventions with:

 if (got.spher)
    spher=nc_read(ncfile,Vname.spher);
    if ischar(spher)
       if strcmpi(spher,'T')
          spherical=true;
       end
    else
       spherical=spher;
    end
  end
#660 arango m.hadfield Done Gnu make version 4.1
Description

Gnu make version 4.1 is now available on at least one platform that I use (Cygwin).

The NEED_VERSION string in makefile should be updated to include this version.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.