libsim Versione 7.2.6
|
◆ griddim_unproj()
Computes the geographical coordinates of all the grid points in the griddim_def object and stores them in the object itself. The this::dim::lon and this::dim:lat arrays are allocated, and upon return they will contain the coordinates' values. These arrays can be directly accessed by the user, and their association status should be checked with the ASSOCIATED() intrinsic before using them.
Definizione alla linea 630 del file grid_class.F90. 631!> Compute and return grid steps.
632SUBROUTINE griddim_steps(this, nx, ny, dx, dy)
633TYPE(griddim_def), INTENT(in) :: this !< generic grid descriptor
634INTEGER,INTENT(in) :: nx !< number of points along x direction
635INTEGER,INTENT(in) :: ny !< number of points along y direction
636DOUBLE PRECISION,INTENT(out) :: dx !< grid step along x direction
|