libsim Versione 7.2.0
|
◆ grid_id_export()
Export a grid_id object this to the file indicated by a grid_file_id object. Both grid_id and grid_file_id objects must be related to the same driver (e.g. grib_api or gdal).
Definizione alla linea 735 del file grid_id_class.F90. 736
738FUNCTION grid_id_get_gdal_options(this) RESULT(gdal_options)
739TYPE(grid_id),INTENT(in) :: this
740TYPE(gdal_file_id_options) :: gdal_options
741
742TYPE(gdal_file_id_options) :: gdal_options_local
743
744IF (ASSOCIATED(this%file_id)) THEN
745 gdal_options = this%file_id%gdal_options
746ELSE
747 gdal_options = gdal_options_local ! empty object
748ENDIF
749
750END FUNCTION grid_id_get_gdal_options
751#endif
752
|