|
◆ grid_id_encode_data()
subroutine grid_id_class::grid_id_encode_data |
( |
type(grid_id), intent(inout) |
this, |
|
|
real, dimension(:,:), intent(in) |
field |
|
) |
| |
Encode a data array into a grid_id object.
The input array field must have a size matching the size of the dataset. - Parametri
-
[in,out] | this | gridinfo object |
[in] | field | data array to be encoded |
Definizione alla linea 979 del file grid_id_class.F90.
990 IF (any(field == rmiss)) THEN
992 CALL grib_set(gaid, 'missingValue',rmiss)
993 IF (editionnumber == 1) THEN
998 CALL grib_set(gaid, "bitmapPresent",1)
|