Skip to content

Commit 14bc618

Browse files
authoredAug 9, 2024
Merge pull request #40 from Parallel-NetCDF/rename_file_format
rename file format strings
2 parents 39c4f41 + 7ad150e commit 14bc618

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+64
-64
lines changed
 

‎examples/collective_write.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def pnetcdf_io(comm, filename, file_format, length):
174174
if args.q: verbose = False
175175

176176
if args.k:
177-
kind_dict = {'1':None, '2':"64BIT_OFFSET", '5':"64BIT_DATA"}
177+
kind_dict = {'1':None, '2':"NETCDF3_64BIT_OFFSET", '5':"NETCDF3_64BIT_DATA"}
178178
file_format = kind_dict[args.k]
179179

180180
if args.l and int(args.l) > 0:

‎examples/flexible_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def pnetcdf_io(filename, file_format):
250250
if args.q: verbose = False
251251

252252
if args.k:
253-
kind_dict = {'1':None, '2':"64BIT_OFFSET", '5':"64BIT_DATA"}
253+
kind_dict = {'1':None, '2':"NETCDF3_64BIT_OFFSET", '5':"NETCDF3_64BIT_DATA"}
254254
file_format = kind_dict[args.k]
255255

256256
filename = args.dir

0 commit comments

Comments
 (0)