Skip to content
Snippets Groups Projects
Commit c0931438 authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Change default value of step and `step_deg`

A negative value is even more striking since a step for a uniform grid
would be positive.
parent b53d2d5a
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ module input_ssh_m
real, protected:: corner_whole(2) = huge(0.)
! longitude and latitude of the corner of the whole grid, in rad
real, protected:: step(2) = huge(0.) ! longitude and latitude steps, in rad
real, protected:: step(2) = - huge(0.) ! longitude and latitude steps, in rad
integer, protected:: nlon = - huge(0), nlat = - huge(0)
! size of ssh array in input NetCDF, assuming no repeated point if
......@@ -83,7 +83,7 @@ contains
! point corresponding to u(1, 1) or v(1, 1) respective to point
! corresponding to ssh(1, 1).
real:: step_deg(2) = huge(0.) ! longitude and latitude steps, in degrees
real:: step_deg(2) = - huge(0.) ! longitude and latitude steps, in degrees
real lon_max, lat_max ! longitude and latitude, in degrees
integer copy
namelist /grid_nml/ corner_deg, step_deg, nlon, nlat, periodic, &
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment