libsim Versione 7.2.1
|
◆ grid_id_copy()
Performs a "deep" copy of the grid_id object when possible. For grib_api this clones the grid_id generating a new independent object in memory, which can be manipulated without affecting the original one. The grid_id object that does not need to be initialized before the call.
Definizione alla linea 705 del file grid_id_class.F90. 706gaid = this%gaid
707END FUNCTION grid_file_id_get_gaid
708
711FUNCTION grid_id_get_gaid(this) RESULT(gaid)
712TYPE(grid_id),INTENT(in) :: this
713INTEGER :: gaid
714gaid = this%gaid
715END FUNCTION grid_id_get_gaid
716#endif
717
718
719#ifdef HAVE_LIBGDAL
720
722FUNCTION grid_file_id_get_gdalid(this) RESULT(gdalid)
723TYPE(grid_file_id),INTENT(in) :: this
724TYPE(gdaldataseth) :: gdalid
725gdalid = this%gdalid
726END FUNCTION grid_file_id_get_gdalid
727
|