-
Notifications
You must be signed in to change notification settings - Fork 4
intro
Philip Crotwell edited this page May 18, 2015
·
1 revision
SeedCodec is meant to be a small, focused project on just seismic compression and decompression routines in java.
To Decompress use the Codec.decompress method. For example:
int compression = Codec.STEIM1;
byte[] values = ...
int num_points = ...
boolean byte_order = false;
DecompressedData decomp = codec.decompress(compression,
values,
num_points,
byte_order);