├── .github ├── CODEOWNERS └── workflows │ ├── mkdocs-publish.yml │ └── python-build-test-publish.yml ├── .gitignore ├── .gitmodules ├── .mkdocsignore ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.md ├── code_of_conduct.md ├── docs ├── .snippets │ └── links.txt ├── LICENSE.md ├── api.md ├── api │ ├── geometry.md │ ├── segy_inspecting.md │ ├── segy_loading.md │ ├── segy_text.md │ ├── segy_writing.md │ ├── segy_xarray.md │ ├── utils.md │ ├── xarray_accessor.md │ └── xarray_new.md ├── cli │ ├── about.md │ ├── command-line-ref.md │ └── command-pipelines.md ├── conf.py ├── contributing.md ├── examples_about.md ├── figures │ ├── logo.png │ ├── segysak_logo.svg │ └── segysak_logo2.svg ├── history.md ├── index.md ├── installation.md ├── meta │ └── faq.md ├── overrides │ └── main.html ├── quickstart.md ├── seisnc-standard.md ├── seisnc.md ├── stylesheets │ └── fix-xarray-rep.css ├── tutorial.md ├── upgrading.md └── why-segysak.md ├── examples ├── QuickOverview.py ├── archive │ ├── ar.examples_subsurface.py │ └── example_zgy.py ├── data │ ├── 3D_gathers_pstm_nmo.sgy │ ├── arbitrary_line.shp │ ├── hor_twt_hugin_fm_top.dat │ ├── licence │ ├── volve10-migvel-depth-sub3d.sgy │ ├── volve10r12-full-twt-arb.sgy │ ├── volve10r12-full-twt-sub3d.sgy │ └── well_f12_deviation.asc ├── example_amplitude_extraction_displays.py ├── example_depth_conversion.py ├── example_extract_arbitrary_line.py ├── example_extract_data_on_a_horizon.py ├── example_merge_surveys.py ├── example_segy_headers.py ├── example_segysak_basics.py ├── example_segysak_dask.py ├── example_segysak_segy_vectorisation.py ├── example_working_with_3d_gathers.py └── notebooks │ ├── Readme.Md │ ├── example_loading_and_visualising_3d_data.ipynb │ ├── example_segy_headers_NO-SEABORN.ipynb │ └── example_segysak_dask_large.ipynb ├── mkdocs.yml ├── pyproject.toml ├── segysak ├── __init__.py ├── _accessor.py ├── _cli.py ├── _core.py ├── _keyfield.py ├── _richstr.py ├── _seismic_dataset.py ├── geometry.py ├── progress.py ├── segy │ ├── __init__.py │ ├── _segy_core.py │ ├── _segy_freewriter.py │ ├── _segy_globals.py │ ├── _segy_headers.py │ ├── _segy_knownbytes.py │ ├── _segy_loader.py │ ├── _segy_text.py │ ├── _segy_writer.py │ ├── _xarray.py │ └── _xarray_writer.py ├── seisnc.py └── tools.py └── tests ├── __init__.py ├── conftest.py ├── fixtures_data.py ├── fixtures_segy.py ├── fixtures_seisnc.py ├── test-data-segyio ├── 1x1.sgy ├── 1xN.sgy ├── Mx1.sgy ├── Untitled.ipynb ├── acute-small.sgy ├── f3-lsb.sgy ├── f3.seisnc ├── f3.sgy ├── inv-acute-small.sgy ├── inv-small-ps.sgy ├── left-small.sgy ├── long.sgy ├── multi-text.sgy ├── normal-small.sgy ├── obtuse-small.sgy ├── reflex-small.sgy ├── right-small.sgy ├── shot-gather.sgy ├── small-lsb.sgy ├── small-ps-dec-il-inc-xl-off.sgy ├── small-ps-dec-il-off-inc-xl.sgy ├── small-ps-dec-il-xl-inc-off.sgy ├── small-ps-dec-il-xl-off.sgy ├── small-ps-dec-off-inc-il-xl.sgy ├── small-ps-dec-xl-inc-il-off.sgy ├── small-ps-dec-xl-off-inc-il.sgy ├── small-ps.sgy ├── small.sgy ├── straight-small.sgy ├── text-embed-null.sgy ├── text.sgy └── 小文件.sgy ├── test-data-segysak ├── f3-ebcidctest.sgy ├── f3-iline-111.sgy ├── f3-iline-112.sgy ├── f3-iline-113.sgy ├── f3-iline-114.sgy ├── f3-iline-115.sgy ├── f3-iline-116.sgy ├── f3-iline-117.sgy ├── f3-iline-118.sgy ├── f3-iline-119.sgy ├── f3-iline-120.sgy ├── f3-iline-121.sgy ├── f3-iline-122.sgy ├── f3-iline-123.sgy ├── f3-iline-124.sgy ├── f3-iline-125.sgy ├── f3-iline-126.sgy ├── f3-iline-127.sgy ├── f3-iline-128.sgy ├── f3-iline-129.sgy ├── f3-iline-130.sgy ├── f3-iline-131.sgy ├── f3-iline-132.sgy ├── f3-iline-133.sgy ├── f3-withdead.sgy └── test-geometry.sgy ├── test-data-volve └── volve10r12-full-z-il10117sub.sgy ├── test_accessor.py ├── test_cli.py ├── test_geometry.py ├── test_richstr.py ├── test_richstring.py ├── test_segy_segy_core.py ├── test_segy_segy_freewriter.py ├── test_segy_xarray.py ├── test_segy_xarray_writer.py ├── test_seismic_dataset.py ├── test_seismic_segy.py ├── test_seismic_segy_text.py └── test_tools.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/mkdocs-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/.github/workflows/mkdocs-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-build-test-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/.github/workflows/python-build-test-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.mkdocsignore: -------------------------------------------------------------------------------- 1 | tests 2 | segysak 3 | .pytest_cache 4 | examples/.ipynb* 5 | README.md 6 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/README.md -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /docs/.snippets/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/.snippets/links.txt -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/api/geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api/geometry.md -------------------------------------------------------------------------------- /docs/api/segy_inspecting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api/segy_inspecting.md -------------------------------------------------------------------------------- /docs/api/segy_loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api/segy_loading.md -------------------------------------------------------------------------------- /docs/api/segy_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api/segy_text.md -------------------------------------------------------------------------------- /docs/api/segy_writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api/segy_writing.md -------------------------------------------------------------------------------- /docs/api/segy_xarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api/segy_xarray.md -------------------------------------------------------------------------------- /docs/api/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api/utils.md -------------------------------------------------------------------------------- /docs/api/xarray_accessor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api/xarray_accessor.md -------------------------------------------------------------------------------- /docs/api/xarray_new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/api/xarray_new.md -------------------------------------------------------------------------------- /docs/cli/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/cli/about.md -------------------------------------------------------------------------------- /docs/cli/command-line-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/cli/command-line-ref.md -------------------------------------------------------------------------------- /docs/cli/command-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/cli/command-pipelines.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/examples_about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/examples_about.md -------------------------------------------------------------------------------- /docs/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/figures/logo.png -------------------------------------------------------------------------------- /docs/figures/segysak_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/figures/segysak_logo.svg -------------------------------------------------------------------------------- /docs/figures/segysak_logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/figures/segysak_logo2.svg -------------------------------------------------------------------------------- /docs/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/history.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/meta/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/meta/faq.md -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/seisnc-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/seisnc-standard.md -------------------------------------------------------------------------------- /docs/seisnc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/seisnc.md -------------------------------------------------------------------------------- /docs/stylesheets/fix-xarray-rep.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/stylesheets/fix-xarray-rep.css -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /docs/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/upgrading.md -------------------------------------------------------------------------------- /docs/why-segysak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/docs/why-segysak.md -------------------------------------------------------------------------------- /examples/QuickOverview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/QuickOverview.py -------------------------------------------------------------------------------- /examples/archive/ar.examples_subsurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/archive/ar.examples_subsurface.py -------------------------------------------------------------------------------- /examples/archive/example_zgy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/archive/example_zgy.py -------------------------------------------------------------------------------- /examples/data/3D_gathers_pstm_nmo.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/data/3D_gathers_pstm_nmo.sgy -------------------------------------------------------------------------------- /examples/data/arbitrary_line.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/data/arbitrary_line.shp -------------------------------------------------------------------------------- /examples/data/hor_twt_hugin_fm_top.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/data/hor_twt_hugin_fm_top.dat -------------------------------------------------------------------------------- /examples/data/licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/data/licence -------------------------------------------------------------------------------- /examples/data/volve10-migvel-depth-sub3d.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/data/volve10-migvel-depth-sub3d.sgy -------------------------------------------------------------------------------- /examples/data/volve10r12-full-twt-arb.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/data/volve10r12-full-twt-arb.sgy -------------------------------------------------------------------------------- /examples/data/volve10r12-full-twt-sub3d.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/data/volve10r12-full-twt-sub3d.sgy -------------------------------------------------------------------------------- /examples/data/well_f12_deviation.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/data/well_f12_deviation.asc -------------------------------------------------------------------------------- /examples/example_amplitude_extraction_displays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_amplitude_extraction_displays.py -------------------------------------------------------------------------------- /examples/example_depth_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_depth_conversion.py -------------------------------------------------------------------------------- /examples/example_extract_arbitrary_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_extract_arbitrary_line.py -------------------------------------------------------------------------------- /examples/example_extract_data_on_a_horizon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_extract_data_on_a_horizon.py -------------------------------------------------------------------------------- /examples/example_merge_surveys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_merge_surveys.py -------------------------------------------------------------------------------- /examples/example_segy_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_segy_headers.py -------------------------------------------------------------------------------- /examples/example_segysak_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_segysak_basics.py -------------------------------------------------------------------------------- /examples/example_segysak_dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_segysak_dask.py -------------------------------------------------------------------------------- /examples/example_segysak_segy_vectorisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_segysak_segy_vectorisation.py -------------------------------------------------------------------------------- /examples/example_working_with_3d_gathers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/example_working_with_3d_gathers.py -------------------------------------------------------------------------------- /examples/notebooks/Readme.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/notebooks/Readme.Md -------------------------------------------------------------------------------- /examples/notebooks/example_loading_and_visualising_3d_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/notebooks/example_loading_and_visualising_3d_data.ipynb -------------------------------------------------------------------------------- /examples/notebooks/example_segy_headers_NO-SEABORN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/notebooks/example_segy_headers_NO-SEABORN.ipynb -------------------------------------------------------------------------------- /examples/notebooks/example_segysak_dask_large.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/examples/notebooks/example_segysak_dask_large.ipynb -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/pyproject.toml -------------------------------------------------------------------------------- /segysak/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/__init__.py -------------------------------------------------------------------------------- /segysak/_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/_accessor.py -------------------------------------------------------------------------------- /segysak/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/_cli.py -------------------------------------------------------------------------------- /segysak/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/_core.py -------------------------------------------------------------------------------- /segysak/_keyfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/_keyfield.py -------------------------------------------------------------------------------- /segysak/_richstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/_richstr.py -------------------------------------------------------------------------------- /segysak/_seismic_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/_seismic_dataset.py -------------------------------------------------------------------------------- /segysak/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/geometry.py -------------------------------------------------------------------------------- /segysak/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/progress.py -------------------------------------------------------------------------------- /segysak/segy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/__init__.py -------------------------------------------------------------------------------- /segysak/segy/_segy_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_segy_core.py -------------------------------------------------------------------------------- /segysak/segy/_segy_freewriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_segy_freewriter.py -------------------------------------------------------------------------------- /segysak/segy/_segy_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_segy_globals.py -------------------------------------------------------------------------------- /segysak/segy/_segy_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_segy_headers.py -------------------------------------------------------------------------------- /segysak/segy/_segy_knownbytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_segy_knownbytes.py -------------------------------------------------------------------------------- /segysak/segy/_segy_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_segy_loader.py -------------------------------------------------------------------------------- /segysak/segy/_segy_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_segy_text.py -------------------------------------------------------------------------------- /segysak/segy/_segy_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_segy_writer.py -------------------------------------------------------------------------------- /segysak/segy/_xarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_xarray.py -------------------------------------------------------------------------------- /segysak/segy/_xarray_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/segy/_xarray_writer.py -------------------------------------------------------------------------------- /segysak/seisnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/seisnc.py -------------------------------------------------------------------------------- /segysak/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/segysak/tools.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/fixtures_data.py -------------------------------------------------------------------------------- /tests/fixtures_segy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/fixtures_segy.py -------------------------------------------------------------------------------- /tests/fixtures_seisnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/fixtures_seisnc.py -------------------------------------------------------------------------------- /tests/test-data-segyio/1x1.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/1x1.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/1xN.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/1xN.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/Mx1.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/Mx1.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/Untitled.ipynb -------------------------------------------------------------------------------- /tests/test-data-segyio/acute-small.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/acute-small.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/f3-lsb.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/f3-lsb.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/f3.seisnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/f3.seisnc -------------------------------------------------------------------------------- /tests/test-data-segyio/f3.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/f3.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/inv-acute-small.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/inv-acute-small.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/inv-small-ps.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/inv-small-ps.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/left-small.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/left-small.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/long.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/long.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/multi-text.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/multi-text.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/normal-small.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/normal-small.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/obtuse-small.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/obtuse-small.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/reflex-small.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/reflex-small.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/right-small.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/right-small.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/shot-gather.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/shot-gather.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small-lsb.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small-lsb.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small-ps-dec-il-inc-xl-off.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small-ps-dec-il-inc-xl-off.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small-ps-dec-il-off-inc-xl.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small-ps-dec-il-off-inc-xl.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small-ps-dec-il-xl-inc-off.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small-ps-dec-il-xl-inc-off.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small-ps-dec-il-xl-off.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small-ps-dec-il-xl-off.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small-ps-dec-off-inc-il-xl.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small-ps-dec-off-inc-il-xl.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small-ps-dec-xl-inc-il-off.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small-ps-dec-xl-inc-il-off.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small-ps-dec-xl-off-inc-il.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small-ps-dec-xl-off-inc-il.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small-ps.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small-ps.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/small.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/small.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/straight-small.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/straight-small.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/text-embed-null.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/text-embed-null.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/text.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/text.sgy -------------------------------------------------------------------------------- /tests/test-data-segyio/小文件.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segyio/小文件.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-ebcidctest.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-ebcidctest.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-111.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-111.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-112.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-112.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-113.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-113.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-114.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-114.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-115.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-115.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-116.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-116.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-117.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-117.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-118.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-118.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-119.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-119.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-120.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-120.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-121.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-121.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-122.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-122.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-123.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-123.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-124.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-124.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-125.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-125.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-126.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-126.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-127.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-127.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-128.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-128.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-129.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-129.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-130.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-130.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-131.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-131.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-132.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-132.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-iline-133.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-iline-133.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/f3-withdead.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/f3-withdead.sgy -------------------------------------------------------------------------------- /tests/test-data-segysak/test-geometry.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-segysak/test-geometry.sgy -------------------------------------------------------------------------------- /tests/test-data-volve/volve10r12-full-z-il10117sub.sgy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test-data-volve/volve10r12-full-z-il10117sub.sgy -------------------------------------------------------------------------------- /tests/test_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_accessor.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_geometry.py -------------------------------------------------------------------------------- /tests/test_richstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_richstr.py -------------------------------------------------------------------------------- /tests/test_richstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_richstring.py -------------------------------------------------------------------------------- /tests/test_segy_segy_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_segy_segy_core.py -------------------------------------------------------------------------------- /tests/test_segy_segy_freewriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_segy_segy_freewriter.py -------------------------------------------------------------------------------- /tests/test_segy_xarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_segy_xarray.py -------------------------------------------------------------------------------- /tests/test_segy_xarray_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_segy_xarray_writer.py -------------------------------------------------------------------------------- /tests/test_seismic_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_seismic_dataset.py -------------------------------------------------------------------------------- /tests/test_seismic_segy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_seismic_segy.py -------------------------------------------------------------------------------- /tests/test_seismic_segy_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_seismic_segy_text.py -------------------------------------------------------------------------------- /tests/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhallam/segysak/HEAD/tests/test_tools.py --------------------------------------------------------------------------------