-
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.
Merge pull request #42 from nextsimhub/issue41_cdl
Replace NetCDF files with CDL files
- Loading branch information
Showing
14 changed files
with
2,032 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
build | ||
Testing | ||
*.DS_Store | ||
*.nc |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,17 @@ | ||
netcdf test_0 { | ||
dimensions: | ||
x = 6 ; | ||
y = 4 ; | ||
variables: | ||
int mask(y, x) ; | ||
|
||
// global attributes: | ||
:title = "All land mask" ; | ||
data: | ||
|
||
mask = | ||
0, 0, 0, 0, 0, 0, | ||
0, 0, 0, 0, 0, 0, | ||
0, 0, 0, 0, 0, 0, | ||
0, 0, 0, 0, 0, 0 ; | ||
} |
Binary file not shown.
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,17 @@ | ||
netcdf test_1 { | ||
dimensions: | ||
x = 6 ; | ||
y = 4 ; | ||
variables: | ||
int mask(y, x) ; | ||
|
||
// global attributes: | ||
:title = "No land mask" ; | ||
data: | ||
|
||
mask = | ||
1, 1, 1, 1, 1, 1, | ||
1, 1, 1, 1, 1, 1, | ||
1, 1, 1, 1, 1, 1, | ||
1, 1, 1, 1, 1, 1 ; | ||
} |
Binary file not shown.
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,17 @@ | ||
netcdf test_2 { | ||
dimensions: | ||
m = 6 ; | ||
n = 4 ; | ||
variables: | ||
int land_mask(n, m) ; | ||
|
||
// global attributes: | ||
:title = "Non-default dimension naming and ordering" ; | ||
data: | ||
|
||
land_mask = | ||
0, 0, 0, 0, 0, 0, | ||
1, 1, 1, 1, 1, 1, | ||
0, 0, 0, 0, 0, 0, | ||
1, 1, 1, 1, 1, 1 ; | ||
} |
Binary file not shown.