@@ -163,8 +163,7 @@ subroutine topography_write(this, filename)
163
163
call handle_error(nf90_def_dim(ncid, ' ny' , this% nyt, dids(2 )))
164
164
165
165
! Write depth
166
- call handle_error(nf90_def_var(ncid, ' depth' , nf90_float, dids, depth_id, chunksizes= [this% nxt/ 10 , this% nyt/ 10 ], &
167
- deflate_level= 1 , shuffle= .true. ))
166
+ call handle_error(nf90_def_var(ncid, ' depth' , nf90_float, dids, depth_id, deflate_level= 1 , shuffle= .true. ))
168
167
call handle_error(nf90_def_var_fill(ncid, depth_id, 0 , MISSING_VALUE))
169
168
call handle_error(nf90_put_att(ncid, depth_id, ' long_name' , ' depth' ))
170
169
call handle_error(nf90_put_att(ncid, depth_id, ' units' , ' m' ))
@@ -181,8 +180,7 @@ subroutine topography_write(this, filename)
181
180
call handle_error(nf90_put_var(ncid, depth_id, this% depth))
182
181
183
182
! Write frac
184
- call handle_error(nf90_def_var(ncid, ' sea_area_fraction' , nf90_float, dids, frac_id, chunksizes= [this% nxt/ 10 , this% nyt/ 10 ], &
185
- deflate_level= 1 , shuffle= .true. ))
183
+ call handle_error(nf90_def_var(ncid, ' sea_area_fraction' , nf90_float, dids, frac_id, deflate_level= 1 , shuffle= .true. ))
186
184
call handle_error(nf90_def_var_fill(ncid, frac_id, 0 , MISSING_VALUE))
187
185
call handle_error(nf90_put_var(ncid, frac_id, this% frac))
188
186
@@ -207,14 +205,12 @@ subroutine topography_write_coordinates(this, ncid, dids)
207
205
integer (int32) :: geolon_id, geolat_id ! NetCDF ids
208
206
209
207
! Write coordinates
210
- call handle_error(nf90_def_var(ncid, ' geolon_t' , nf90_float, dids, geolon_id, chunksizes= [this% nxt/ 10 , this% nyt/ 10 ], &
211
- deflate_level= 1 , shuffle= .true. ))
208
+ call handle_error(nf90_def_var(ncid, ' geolon_t' , nf90_float, dids, geolon_id, deflate_level= 1 , shuffle= .true. ))
212
209
call handle_error(nf90_put_att(ncid, geolon_id, ' long_name' , ' tracer longitude' ))
213
210
call handle_error(nf90_put_att(ncid, geolon_id, ' units' , ' degrees_E' ))
214
211
call handle_error(nf90_put_var(ncid, geolon_id, this% geolon_t))
215
212
216
- call handle_error(nf90_def_var(ncid, ' geolat_t' , nf90_float, dids, geolat_id, chunksizes= [this% nxt/ 10 , this% nyt/ 10 ], &
217
- deflate_level= 1 , shuffle= .true. ))
213
+ call handle_error(nf90_def_var(ncid, ' geolat_t' , nf90_float, dids, geolat_id, deflate_level= 1 , shuffle= .true. ))
218
214
call handle_error(nf90_put_att(ncid, geolat_id, ' long_name' , ' tracer latitude' ))
219
215
call handle_error(nf90_put_att(ncid, geolat_id, ' units' , ' degrees_N' ))
220
216
call handle_error(nf90_put_var(ncid, geolat_id, this% geolat_t))
@@ -460,8 +456,7 @@ subroutine topography_deseas(this)
460
456
call handle_error(nf90_create(trim (' sea_num.nc' ), ior (nf90_netcdf4, nf90_clobber), ncid))
461
457
call handle_error(nf90_def_dim(ncid, ' nx' , this% nxt, dids(1 )))
462
458
call handle_error(nf90_def_dim(ncid, ' ny' , this% nyt, dids(2 )))
463
- call handle_error(nf90_def_var(ncid, ' sea_num' , nf90_short, dids, sea_id, chunksizes= [this% nxt/ 10 , this% nyt/ 10 ], &
464
- deflate_level= 1 , shuffle= .true. ))
459
+ call handle_error(nf90_def_var(ncid, ' sea_num' , nf90_short, dids, sea_id, deflate_level= 1 , shuffle= .true. ))
465
460
call handle_error(nf90_enddef(ncid))
466
461
call handle_error(nf90_put_var(ncid, sea_id, sea))
467
462
call handle_error(nf90_close(ncid))
@@ -747,8 +742,7 @@ subroutine topography_mask(this, filename)
747
742
call this% write_coordinates(ncid, dids)
748
743
749
744
! Write mask
750
- call handle_error(nf90_def_var(ncid, ' mask' , nf90_float, dids, mask_id, chunksizes= [this% nxt/ 10 , this% nyt/ 10 ], &
751
- deflate_level= 1 , shuffle= .true. ))
745
+ call handle_error(nf90_def_var(ncid, ' mask' , nf90_float, dids, mask_id, deflate_level= 1 , shuffle= .true. ))
752
746
call handle_error(nf90_put_var(ncid, mask_id, mask))
753
747
754
748
call handle_error(nf90_put_att(ncid, nf90_global, ' history' , date_time()// " : " // get_mycommand()))
0 commit comments