|
◆ griddim_read_unit()
subroutine griddim_read_unit |
( |
type(griddim_def), intent(out) |
this, |
|
|
integer, intent(in) |
unit |
|
) |
| |
This method reads from a Fortran file unit the contents of the object this.
The record to be read must have been written with the ::write_unit method. The method works both on formatted and unformatted files. - Parametri
-
[out] | this | object to be read |
[in] | unit | unit from which to read, it must be an opened Fortran file unit |
Definizione alla linea 781 del file grid_class.F90.
785 CALL grib_get(gaid, 'Ni', this%dim%nx)
786 CALL grib_get(gaid, 'Nj', this%dim%ny)
787 CALL griddim_import_ellipsoid(this, gaid)
789 CALL grib_get(gaid, 'iScansNegatively',iscansnegatively)
|