|
◆ grid_id_decode_data()
subroutine grid_id_class::grid_id_decode_data |
( |
type(grid_id), intent(in) |
this, |
|
|
real, dimension(:,:), intent(out) |
field |
|
) |
| |
Decode and return the data array from a grid_id object.
The output array field must have a size matching the size of the encoded data.
Definizione alla linea 956 del file grid_id_class.F90.
956 IF (ierr /= grib_success) jscanspositively=1 957 CALL grib_get(gaid, 'jPointsAreConsecutive',jpointsareconsecutive,ierr) 958 IF (ierr /= grib_success) jpointsareconsecutive=0 964 CALL l4f_log(l4f_debug, 'grib_api, Ni,Nj:'//t2c( SIZE(field,1))// ','//t2c( SIZE(field,2))) 966 CALL grib_set(gaid, 'Ni', SIZE(field,1), ierr) 967 CALL grib_set(gaid, 'Nj', SIZE(field,2), ierr) 970 IF (iscansnegatively == 0) THEN
|