Convert zgy files to sgz files


License
Apache-2.0
Install
pip install zgy2sgz==0.1.4rc1

Documentation

zgy2sgz

License Travis PyPi Version

Tiny utility package which has only one job: Provide a Python function which uses Schlumberger's ZGY library and LLNL's ZFP library to read ZGY files and write seismic-zfp (.SGZ) format files.

zgy2sgz is intended exclusively for use by the seismic-zfp package

Example

from zgy2sgz import convertFile
# Yes, the first two arguments are bytes rather than strings
# The 3rd argument is bits_per_voxel {16, 8, 4, 2, 1}
convertFile(b'seismic_file.zgy', b'seismic_file.sgz', 4)