Skip to content
Snippets Groups Projects
Commit 56cc223f authored by WAUTELET Philippe's avatar WAUTELET Philippe
Browse files

Philippe 22/05/2024: IO_Field_header_split_write_nc4: add optional arguments...

Philippe 22/05/2024: IO_Field_header_split_write_nc4: add optional arguments to force size of horizontal dimensions
parent 9499537f
No related branches found
No related tags found
No related merge requests found
...@@ -88,15 +88,17 @@ integer(kind=CDFINT),parameter :: DEFLATE = 1 ...@@ -88,15 +88,17 @@ integer(kind=CDFINT),parameter :: DEFLATE = 1
contains contains
subroutine IO_Field_header_split_write_nc4( tpfile, tpfield, knblocks ) subroutine IO_Field_header_split_write_nc4( tpfile, tpfield, knblocks, kisize, kjsize )
use modd_field, only: TYPEREAL use modd_field, only: TYPEREAL
use modd_parameters, only: jphext use modd_parameters, only: jphext
use mode_tools_ll, only: Get_globaldims_ll use mode_tools_ll, only: Get_globaldims_ll
type(tfiledata), intent(in) :: tpfile type(tfiledata), intent(in) :: tpfile
class(tfieldmetadata), intent(in) :: tpfield class(tfieldmetadata), intent(in) :: tpfield
integer, intent(in) :: knblocks integer, intent(in) :: knblocks
integer, optional, intent(in) :: kisize ! Size of the field in the first dimension
integer, optional, intent(in) :: kjsize ! Size of the field in the second dimension
character(len=len(tpfield%cmnhname)) :: yvarname character(len=len(tpfield%cmnhname)) :: yvarname
integer :: iimax, ijmax integer :: iimax, ijmax
...@@ -133,6 +135,7 @@ if ( istatus /= NF90_NOERR ) then ...@@ -133,6 +135,7 @@ if ( istatus /= NF90_NOERR ) then
trim( tpfile%cname )//': '//trim( yvarname )//': CDIR should be XY' ) trim( tpfile%cname )//': '//trim( yvarname )//': CDIR should be XY' )
call Get_globaldims_ll( iimax, ijmax ) call Get_globaldims_ll( iimax, ijmax )
! Use global dims and not kisize/kjsize (if provided) to set the correct 'coordinates' attribute
ishape(1) = int( iimax + 2 * jphext, kind = CDFINT ) ishape(1) = int( iimax + 2 * jphext, kind = CDFINT )
ishape(2) = int( ijmax + 2 * jphext, kind = CDFINT ) ishape(2) = int( ijmax + 2 * jphext, kind = CDFINT )
ishape(3) = knblocks ishape(3) = knblocks
...@@ -164,6 +167,14 @@ if ( istatus /= NF90_NOERR ) then ...@@ -164,6 +167,14 @@ if ( istatus /= NF90_NOERR ) then
if ( istatus /= NF90_NOERR ) call IO_Err_handle_nc4( istatus, 'IO_Field_header_split_write_nc4', 'NF90_PUT_ATT', & if ( istatus /= NF90_NOERR ) call IO_Err_handle_nc4( istatus, 'IO_Field_header_split_write_nc4', 'NF90_PUT_ATT', &
'ndims for '//trim( tpfield%cmnhname ) ) 'ndims for '//trim( tpfield%cmnhname ) )
! Force ishape to the provided dimensions (if present)
if ( present( kisize ) ) then
ishape(1) = kisize
end if
if ( present( kjsize) ) then
ishape(2) = kjsize
end if
istatus = NF90_PUT_ATT( incid, ivarid,'dims', ishape ) istatus = NF90_PUT_ATT( incid, ivarid,'dims', ishape )
if ( istatus /= NF90_NOERR ) call IO_Err_handle_nc4( istatus, 'IO_Field_header_split_write_nc4', 'NF90_PUT_ATT', & if ( istatus /= NF90_NOERR ) call IO_Err_handle_nc4( istatus, 'IO_Field_header_split_write_nc4', 'NF90_PUT_ATT', &
'dims for '//trim( tpfield%cmnhname ) ) 'dims for '//trim( tpfield%cmnhname ) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment