libsim Versione 7.1.11
|
◆ grid_file_id_count()
Count the number of block/message/record/band of gridded data in the file-like object provided. Returns 0 if the file_id object is empty or not corrctly associated to a file.
Definizione alla linea 500 del file grid_id_class.F90. 501
503FUNCTION grid_id_readonly(this) RESULT(readonly)
504TYPE(grid_id),INTENT(in) :: this
505LOGICAL :: readonly
506
507readonly = this%driver /= grid_id_grib_api
508
509END FUNCTION grid_id_readonly
510
511
517SUBROUTINE grid_id_copy(this, that)
518TYPE(grid_id),INTENT(in) :: this
519TYPE(grid_id),INTENT(out) :: that
520
521that = this ! start with a shallow copy
522
|