├── .bandit ├── .codacy.yml ├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── marmousi.npy ├── sample.gif ├── sample.py └── workflows │ ├── ci.yml │ └── doc.yml ├── .gitignore ├── .isort.cfg ├── .prospector.yml ├── CITATION.cff ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── doc ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── api │ ├── eikonal2d.rst │ ├── eikonal3d.rst │ ├── grids.rst │ ├── index.rst │ └── io.rst │ ├── conf.py │ └── index.rst ├── fteikpy ├── __about__.py ├── __init__.py ├── _base.py ├── _common.py ├── _fteik │ ├── __init__.py │ ├── _common.py │ ├── _fteik2d.py │ ├── _fteik3d.py │ ├── _ray2d.py │ └── _ray3d.py ├── _grid.py ├── _helpers.py ├── _interp │ ├── __init__.py │ ├── _interp2d.py │ ├── _interp3d.py │ ├── _vinterp2d.py │ └── _vinterp3d.py ├── _io.py └── _solver.py ├── pyproject.toml ├── requirements-dev.txt ├── setup.cfg ├── tasks.py └── tests ├── helpers.py ├── test_eikonal2d.py ├── test_eikonal3d.py ├── test_gradient2d.py ├── test_gradient3d.py ├── test_meshio.py ├── test_misc.py ├── test_traveltime2d.py └── test_traveltime3d.py /.bandit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.bandit -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source=fteikpy -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/marmousi.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.github/marmousi.npy -------------------------------------------------------------------------------- /.github/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.github/sample.gif -------------------------------------------------------------------------------- /.github/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.github/sample.py -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.prospector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/.prospector.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/api/eikonal2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/source/api/eikonal2d.rst -------------------------------------------------------------------------------- /doc/source/api/eikonal3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/source/api/eikonal3d.rst -------------------------------------------------------------------------------- /doc/source/api/grids.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/source/api/grids.rst -------------------------------------------------------------------------------- /doc/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/source/api/index.rst -------------------------------------------------------------------------------- /doc/source/api/io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/source/api/io.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /fteikpy/__about__.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.4.0" 2 | -------------------------------------------------------------------------------- /fteikpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/__init__.py -------------------------------------------------------------------------------- /fteikpy/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_base.py -------------------------------------------------------------------------------- /fteikpy/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_common.py -------------------------------------------------------------------------------- /fteikpy/_fteik/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_fteik/__init__.py -------------------------------------------------------------------------------- /fteikpy/_fteik/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_fteik/_common.py -------------------------------------------------------------------------------- /fteikpy/_fteik/_fteik2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_fteik/_fteik2d.py -------------------------------------------------------------------------------- /fteikpy/_fteik/_fteik3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_fteik/_fteik3d.py -------------------------------------------------------------------------------- /fteikpy/_fteik/_ray2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_fteik/_ray2d.py -------------------------------------------------------------------------------- /fteikpy/_fteik/_ray3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_fteik/_ray3d.py -------------------------------------------------------------------------------- /fteikpy/_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_grid.py -------------------------------------------------------------------------------- /fteikpy/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_helpers.py -------------------------------------------------------------------------------- /fteikpy/_interp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_interp/__init__.py -------------------------------------------------------------------------------- /fteikpy/_interp/_interp2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_interp/_interp2d.py -------------------------------------------------------------------------------- /fteikpy/_interp/_interp3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_interp/_interp3d.py -------------------------------------------------------------------------------- /fteikpy/_interp/_vinterp2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_interp/_vinterp2d.py -------------------------------------------------------------------------------- /fteikpy/_interp/_vinterp3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_interp/_vinterp3d.py -------------------------------------------------------------------------------- /fteikpy/_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_io.py -------------------------------------------------------------------------------- /fteikpy/_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/fteikpy/_solver.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/setup.cfg -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_eikonal2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tests/test_eikonal2d.py -------------------------------------------------------------------------------- /tests/test_eikonal3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tests/test_eikonal3d.py -------------------------------------------------------------------------------- /tests/test_gradient2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tests/test_gradient2d.py -------------------------------------------------------------------------------- /tests/test_gradient3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tests/test_gradient3d.py -------------------------------------------------------------------------------- /tests/test_meshio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tests/test_meshio.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_traveltime2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tests/test_traveltime2d.py -------------------------------------------------------------------------------- /tests/test_traveltime3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keurfonluu/fteikpy/HEAD/tests/test_traveltime3d.py --------------------------------------------------------------------------------