├── .gitignore ├── LICENSE ├── README.md ├── core ├── __init__.py ├── segy2segy.py ├── segy_io.py └── spatial.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobar8/segy2segy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobar8/segy2segy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobar8/segy2segy/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/segy2segy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobar8/segy2segy/HEAD/core/segy2segy.py -------------------------------------------------------------------------------- /core/segy_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobar8/segy2segy/HEAD/core/segy_io.py -------------------------------------------------------------------------------- /core/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobar8/segy2segy/HEAD/core/spatial.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobar8/segy2segy/HEAD/setup.py --------------------------------------------------------------------------------