Skip to content

Commit 6465d91

Browse files
committed
removing nf90_netcdf4 change
1 parent 558cf15 commit 6465d91

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

infrastructure/source/io/ncdf_quad_mod.F90

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ module ncdf_quad_mod
2626
nf90_clobber, nf90_enddef, nf90_inquire_dimension, &
2727
nf90_inq_dimid, nf90_def_dim, nf90_create, &
2828
nf90_inq_attname, nf90_inquire_attribute, &
29-
nf90_redef, nf90_close, nf90_put_att, &
30-
nf90_64bit_offset, nf90_netcdf4
29+
nf90_redef, nf90_close, nf90_put_att, nf90_64bit_offset
3130

3231
use ugrid_file_mod, only: ugrid_file_type
3332
use file_mod, only: file_mode_read, file_mode_write
@@ -319,7 +318,7 @@ subroutine file_new(self, file_name)
319318
! Create the NetCDF file with 64-bit offsets to support large file sizes
320319
cmess = 'Creating file, "'//trim(self%file_name)//'"'
321320
ierr = nf90_create( path=trim(self%file_name), &
322-
cmode=ior(nf90_clobber,nf90_netcdf4), &
321+
cmode=ior(nf90_clobber,nf90_64bit_offset), &
323322
ncid=self%ncid )
324323
call check_err(ierr, routine, cmess)
325324

0 commit comments

Comments
 (0)