|
◆ griddim_steps()
subroutine grid_class::griddim_steps |
( |
type(griddim_def), intent(in) |
this, |
|
|
integer, intent(in) |
nx, |
|
|
integer, intent(in) |
ny, |
|
|
double precision, intent(out) |
dx, |
|
|
double precision, intent(out) |
dy |
|
) |
| |
|
private |
Compute and return grid steps.
- Parametri
-
[in] | this | generic grid descriptor |
[in] | nx | number of points along x direction |
[in] | ny | number of points along y direction |
[out] | dx | grid step along x direction |
[out] | dy | grid step along y direction |
Definizione alla linea 910 del file grid_class.F90.
912 CALL l4f_category_log(this%category,l4f_debug, &
913 "griddim_import_gribapi, lad "//trim(to_char(this%grid%proj%polar%lad)))
917 CALL grib_get(gaid, 'longitudeOfFirstGridPointInDegrees',lofirst)
918 CALL grib_get(gaid, 'latitudeOfFirstGridPointInDegrees',lafirst)
|