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

Philippe 03/02/2023: bugfix: integer arrays with up to 4 dimensions can be...

Philippe 03/02/2023: bugfix: integer arrays with up to 4 dimensions can be written (adapt check condition)
parent a1e246df
No related branches found
No related tags found
No related merge requests found
...@@ -368,7 +368,7 @@ type(tfieldmetadata) function Fill_tfieldmetadata( cmnhname, cstdname, clongname ...@@ -368,7 +368,7 @@ type(tfieldmetadata) function Fill_tfieldmetadata( cmnhname, cstdname, clongname
call Print_msg( NVERB_ERROR, 'GEN', 'Fill_tfielddata', 'invalid value of ndims for variable ' & call Print_msg( NVERB_ERROR, 'GEN', 'Fill_tfielddata', 'invalid value of ndims for variable ' &
// Trim( ymnhname ) // ' of type TYPELOG' ) // Trim( ymnhname ) // ' of type TYPELOG' )
case ( TYPEINT ) case ( TYPEINT )
if ( ndims < 0 .or. ndims > 3 ) & if ( ndims < 0 .or. ndims > 4 ) &
call Print_msg( NVERB_ERROR, 'GEN', 'Fill_tfielddata', 'invalid value of ndims for variable ' & call Print_msg( NVERB_ERROR, 'GEN', 'Fill_tfielddata', 'invalid value of ndims for variable ' &
// Trim( ymnhname ) // ' of type TYPEINT' ) // Trim( ymnhname ) // ' of type TYPEINT' )
case ( TYPEREAL ) case ( TYPEREAL )
......
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