libsim  Versione 7.2.6

◆ arrayof_gridinfo_insert_array()

subroutine, private gridinfo_class::arrayof_gridinfo_insert_array ( type(arrayof_gridinfo this,
type(gridinfo_def), dimension(:), intent(in), optional  content,
integer, intent(in), optional  nelem,
integer, intent(in), optional  pos 
)
private

Method for inserting a number of elements of the array at a desired position.

If necessary, the array is reallocated to accomodate the new elements.

Parametri
thisarray object to extend
[in]contentobject of TYPE TYPE(gridinfo_def) to insert, if not provided, space is reserved but not initialized
[in]nelemnumber of elements to add, mutually exclusive with the previous parameter, if both are not provided, a single element is added without initialization
[in]posposition where to insert, if it is out of range, it is clipped, if it is not provided, the object is appended

Definizione alla linea 450 del file gridinfo_class.F90.

451 #ifdef HAVE_LIBGRIBAPI
452 IF (grid_id_get_driver(this%gaid) == 'grib_api') THEN
453  gaid = grid_id_get_gaid(this%gaid)
454  IF (c_e(gaid)) CALL gridinfo_export_gribapi(this, gaid)
455 ENDIF
456 #endif
457 #ifdef HAVE_LIBGDAL
458 IF (grid_id_get_driver(this%gaid) == 'gdal') THEN
459 !gdalid = grid_id_get_gdalid(this%gaid)
460  CALL l4f_category_log(this%category,l4f_warn,"export to gdal not implemented" )
461 ENDIF
462 #endif
463 
464 END SUBROUTINE gridinfo_export
465 
466 
472 SUBROUTINE gridinfo_export_to_file(this, filename, categoryappend)
473 TYPE(arrayof_gridinfo) :: this
474 CHARACTER(len=*),INTENT(in) :: filename
475 CHARACTER(len=*),INTENT(in),OPTIONAL :: categoryappend
476 
477 INTEGER :: i, category
478 CHARACTER(len=512) :: a_name
479 TYPE(grid_file_id) :: output_file
480 TYPE(grid_id) :: valid_grid_id
481 
482 IF (PRESENT(categoryappend)) THEN
483  CALL l4f_launcher(a_name,a_name_append= &
484  trim(subcategory)//"."//trim(categoryappend))

Generated with Doxygen.