Package ucar.nc2.write
Interface Nc4Chunking
- All Known Implementing Classes:
Nc4ChunkingDefault,Nc4ChunkingStrategy,Nc4ChunkingStrategyGrib,Nc4ChunkingStrategyNone
public interface Nc4Chunking
Interface for strategies deciding how to chunk netcdf-4 variables.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionlong[]Compute the chunk size for this Variable.intGet the deflation level.booleanShould this variable be chunked?booleanSet true to turn shuffling on which may improve compression.
-
Method Details
-
isChunked
Should this variable be chunked? -
computeChunking
Compute the chunk size for this Variable. -
getDeflateLevel
Get the deflation level. 0 corresponds to no compression and 9 to maximum compression. -
isShuffle
Set true to turn shuffling on which may improve compression. This option is ignored unless a non-zero deflation level is specified.
-