libsim  Versione7.2.3

◆ gridinfo_display()

subroutine gridinfo_display ( type(gridinfo_def), intent(in)  this,
character (len=*), optional  namespace 
)

Display on standard output a description of the gridinfo object provided.

For objects imported from grib_api also the grib key names and values are printed; the set of keys returned can be controlled with the input variable namespace. Available namespaces are "ls", to get the same default keys as the grib_ls command, and "mars" to get the keys used by mars, default "ls".

Parametri
[in]thisobject to display
namespacegrib_api namespace of the keys to search for, all the keys if empty, default "ls"

Definizione alla linea 806 del file gridinfo_class.F90.

806  call grib_set(gaid,'topLevel',l1)
807 
808 else if (editionnumber == 2)then
809 
810  CALL grib_set(gaid,'typeOfFirstFixedSurface',ltype1)
811  IF (.NOT.c_e(scalef1) .OR. .NOT.c_e(scalev1)) THEN ! code missing values correctly
812  CALL grib_set_missing(gaid,'scaleFactorOfFirstFixedSurface')
813  CALL grib_set_missing(gaid,'scaledValueOfFirstFixedSurface')
814  ELSE
815  CALL grib_set(gaid,'scaleFactorOfFirstFixedSurface',scalef1)
816  CALL grib_set(gaid,'scaledValueOfFirstFixedSurface',scalev1)
817  ENDIF
818 
819  CALL grib_set(gaid,'typeOfSecondFixedSurface',ltype2)
820  IF (ltype2 == 255 .OR. .NOT.c_e(scalef2) .OR. .NOT.c_e(scalev2)) THEN ! code missing values correctly
821  CALL grib_set_missing(gaid,'scaleFactorOfSecondFixedSurface')

Generated with Doxygen.