forked from Unidata/netcdf-c
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More fixes to the nccopy filter x chunking algorithm
re: Issue Unidata#1936 The algorithm controlling interaction of -d 0 -F and -c / options is incorrect. The fix: 1. make -d 0 => no deflation 2. make -F properly use the filter specs to decide. Also added a test case to ncdump/tst_nccopy4.sh.
- Loading branch information
1 parent
f23fe5f
commit 1d9727c
Showing
5 changed files
with
91 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
netcdf ref_tst_special_atts3 { | ||
dimensions: | ||
dim1 = 10; | ||
variables: | ||
int var1(dim1) ; | ||
var1:_DeflateLevel = 2 ; | ||
data: | ||
var1 = 0, 1, 2, 3, 4, 5, 6, 7, 8, 9; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters