Custom Query (964 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (940 - 942 of 964)

Ticket Owner Reporter Resolution Summary
#125 arango jprinehimer Fixed Extra ocean_time in coordinate attribute for r2dvars for spherical grids
Description

In def_var.F, line 456, the coordinate attribute for r2dvars on spherical grids is set as:

text='lon_rho lat_rho ocean_time'

and then a second 'ocean_time' is appended at line 501 for 3D variables like zeta, bed surface properties, etc. This results in the following coordinate attribute in the netcdf file:

ncdump -h ocean_his.nc | grep zeta

>> double zeta(ocean_time, eta_rho, xi_rho) ;
    ...
>> zeta:coordinates = "lon_rho lat_rho ocean_time ocean_time" ;
    ...

For non-spherical grids the coordinate attribute is set as:

text='x_rho y_rho'

and 'ocean_time' is appended as appropriate.

#136 arango crode1968 Fixed Type (mixing of upper and lower letters)
Description

The two character variables svn_url and svn_rev occur in different spellings regarding the utilization of upper and lower case characters. Normally Fortran does not care about, but the compiler is meticulous on our new machine.

IMHO the following patch might solve the inconsistency

> diff -u mod_ncparam.F.org mod_ncparam.F
--- mod_ncparam.F.org   Fri Mar  7 14:32:01 2008
+++ mod_ncparam.F       Fri Mar  7 14:35:35 2008
@@ -548,8 +548,8 @@
 !
 !  SVN revision and repository root URL.
 !
-        character (len=40 ) :: svn_Rev
-        character (len=120) :: svn_URL
+        character (len=40 ) :: svn_rev
+        character (len=120) :: svn_url
 
       CONTAINS

Thanks and have a nice weekend!

#139 arango arango Done Corrected documentation typos and spelling in input scripts
Description

We are in the process of tagging version ROMS 3.1 and preparing for next big release. Several typos and spelling were corrected input scripts. Many thanks to David Robertson for reporting this.

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