|
◆ gridinfo_export()
subroutine gridinfo_export |
( |
type(gridinfo_def), intent(inout) |
this | ) |
|
Export gridinfo descriptors information into a message/band on file.
This method exports the contents of the descriptors of the gridinfo object this in the grid_id object thisgaid, previously set, for the successive write to a file. The information stored in the descriptors of gridinfo object this is inserted, when possible, in the grid_id object. - Parametri
-
[in,out] | this | gridinfo object |
Definizione alla linea 964 del file gridinfo_class.F90.
965 CALL grib_set(gaid, 'indicatorOfUnitForTimeRange',unit)
966 CALL grib_set(gaid, 'lengthOfTimeRange',p2)
969 IF (this%timerange >= 192) THEN
970 CALL l4f_log(l4f_warn, &
971 'coding in grib2 a nonstandard typeOfStatisticalProcessing '// &
975 CALL l4f_log(l4f_error, &
976 'Timerange with 0>p1>p2 cannot be exported in grib2')
977 CALL raise_fatal_error()
980 CALL l4f_log(l4f_error, &
981 'typeOfStatisticalProcessing not supported: '//trim(to_char(this%timerange)))
982 CALL raise_fatal_error()
986 CALL l4f_log(l4f_error, 'GribEditionNumber '//t2c(editionnumber)// ' not supported')
987 CALL raise_fatal_error()
|