├── ---setup.cfg ├── .gitignore ├── .travis.yml ├── CONTRIBUTORS.txt ├── LICENCE.txt ├── MANIFEST.in ├── README.md ├── __init__.py ├── appveyor.yml ├── bintray.json ├── doc ├── .static │ └── my-styles.css ├── .templates │ └── layout.html ├── Makefile ├── conf.py ├── index.rst ├── installation.rst └── make.bat ├── misc └── appveyor │ └── run_with_env.cmd ├── msnoise_tomo ├── ANSWT.py ├── EllipseFit.py ├── __init__.py ├── default.py ├── examplepickdispcurve.py ├── export_single_sided.py ├── fitellipse.py ├── ftan.py ├── ftan_call.py ├── iftan.py ├── img │ └── msnoise.gif ├── install.py ├── intersect.py ├── lib │ ├── __init__.py │ ├── libmkMatSmoothing.py │ ├── libmk_MatPaths.py │ └── libvg_fta.py ├── plot3d.py ├── plotdisp.py ├── plugin_definition.py ├── prepare_1d.py ├── prepare_tomo.py ├── test │ ├── data │ │ ├── DK_NRS_DK_NUUG_Sym.SAC │ │ ├── GLISNGrid.txt │ │ ├── GLISN_STACoord.dat │ │ ├── ParamFile.txt │ │ ├── TestGroupVel_10sGLISN.dat │ │ ├── TestGroupVel_20sGLISN.dat │ │ ├── TestGroupVel_3.5sGLISN.dat │ │ ├── TestGroupVel_30sGLISN.dat │ │ ├── TestGroupVel_50sGLISN.dat │ │ ├── TestGroupVel_5sGLISN.dat │ │ └── TestGroupVel_75sGLISN.dat │ └── tests.py ├── test_mksmoothing.py └── tomo_table_def.py ├── setup.py └── src ├── Makefile ├── configparser.cpp ├── configparser.h ├── fft_NR.cpp ├── fft_NR.h ├── fta_param.cpp ├── fta_param.h ├── libfta.cpp ├── libfta.def ├── libfta.h ├── mathfunc.h ├── mkMatSmoothing.c ├── mkMatSmoothing.def ├── mk_MatPaths.c ├── mk_MatPaths.def ├── readsac.cpp ├── readsac.h ├── stringutils.h ├── vg_fta.cpp └── vg_fta.def /---setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/---setup.cfg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- 1 | Thomas Lecocq 2 | Aurélien Mordret 3 | Dylan Mikesell 4 | John Paustian 5 | -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bintray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/bintray.json -------------------------------------------------------------------------------- /doc/.static/my-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/doc/.static/my-styles.css -------------------------------------------------------------------------------- /doc/.templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/doc/.templates/layout.html -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/doc/make.bat -------------------------------------------------------------------------------- /misc/appveyor/run_with_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/misc/appveyor/run_with_env.cmd -------------------------------------------------------------------------------- /msnoise_tomo/ANSWT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/ANSWT.py -------------------------------------------------------------------------------- /msnoise_tomo/EllipseFit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/EllipseFit.py -------------------------------------------------------------------------------- /msnoise_tomo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msnoise_tomo/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/default.py -------------------------------------------------------------------------------- /msnoise_tomo/examplepickdispcurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/examplepickdispcurve.py -------------------------------------------------------------------------------- /msnoise_tomo/export_single_sided.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/export_single_sided.py -------------------------------------------------------------------------------- /msnoise_tomo/fitellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/fitellipse.py -------------------------------------------------------------------------------- /msnoise_tomo/ftan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/ftan.py -------------------------------------------------------------------------------- /msnoise_tomo/ftan_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/ftan_call.py -------------------------------------------------------------------------------- /msnoise_tomo/iftan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/iftan.py -------------------------------------------------------------------------------- /msnoise_tomo/img/msnoise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/img/msnoise.gif -------------------------------------------------------------------------------- /msnoise_tomo/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/install.py -------------------------------------------------------------------------------- /msnoise_tomo/intersect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/intersect.py -------------------------------------------------------------------------------- /msnoise_tomo/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msnoise_tomo/lib/libmkMatSmoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/lib/libmkMatSmoothing.py -------------------------------------------------------------------------------- /msnoise_tomo/lib/libmk_MatPaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/lib/libmk_MatPaths.py -------------------------------------------------------------------------------- /msnoise_tomo/lib/libvg_fta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/lib/libvg_fta.py -------------------------------------------------------------------------------- /msnoise_tomo/plot3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/plot3d.py -------------------------------------------------------------------------------- /msnoise_tomo/plotdisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/plotdisp.py -------------------------------------------------------------------------------- /msnoise_tomo/plugin_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/plugin_definition.py -------------------------------------------------------------------------------- /msnoise_tomo/prepare_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/prepare_1d.py -------------------------------------------------------------------------------- /msnoise_tomo/prepare_tomo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/prepare_tomo.py -------------------------------------------------------------------------------- /msnoise_tomo/test/data/DK_NRS_DK_NUUG_Sym.SAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/DK_NRS_DK_NUUG_Sym.SAC -------------------------------------------------------------------------------- /msnoise_tomo/test/data/GLISNGrid.txt: -------------------------------------------------------------------------------- 1 | -75.0 13.0 2 | 58 84.0 3 | 4 2 -------------------------------------------------------------------------------- /msnoise_tomo/test/data/GLISN_STACoord.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/GLISN_STACoord.dat -------------------------------------------------------------------------------- /msnoise_tomo/test/data/ParamFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/ParamFile.txt -------------------------------------------------------------------------------- /msnoise_tomo/test/data/TestGroupVel_10sGLISN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/TestGroupVel_10sGLISN.dat -------------------------------------------------------------------------------- /msnoise_tomo/test/data/TestGroupVel_20sGLISN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/TestGroupVel_20sGLISN.dat -------------------------------------------------------------------------------- /msnoise_tomo/test/data/TestGroupVel_3.5sGLISN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/TestGroupVel_3.5sGLISN.dat -------------------------------------------------------------------------------- /msnoise_tomo/test/data/TestGroupVel_30sGLISN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/TestGroupVel_30sGLISN.dat -------------------------------------------------------------------------------- /msnoise_tomo/test/data/TestGroupVel_50sGLISN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/TestGroupVel_50sGLISN.dat -------------------------------------------------------------------------------- /msnoise_tomo/test/data/TestGroupVel_5sGLISN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/TestGroupVel_5sGLISN.dat -------------------------------------------------------------------------------- /msnoise_tomo/test/data/TestGroupVel_75sGLISN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/data/TestGroupVel_75sGLISN.dat -------------------------------------------------------------------------------- /msnoise_tomo/test/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test/tests.py -------------------------------------------------------------------------------- /msnoise_tomo/test_mksmoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/test_mksmoothing.py -------------------------------------------------------------------------------- /msnoise_tomo/tomo_table_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/msnoise_tomo/tomo_table_def.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/setup.py -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/configparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/configparser.cpp -------------------------------------------------------------------------------- /src/configparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/configparser.h -------------------------------------------------------------------------------- /src/fft_NR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/fft_NR.cpp -------------------------------------------------------------------------------- /src/fft_NR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/fft_NR.h -------------------------------------------------------------------------------- /src/fta_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/fta_param.cpp -------------------------------------------------------------------------------- /src/fta_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/fta_param.h -------------------------------------------------------------------------------- /src/libfta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/libfta.cpp -------------------------------------------------------------------------------- /src/libfta.def: -------------------------------------------------------------------------------- 1 | LIBRARY libfta.dll 2 | EXPORTS 3 | main -------------------------------------------------------------------------------- /src/libfta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/libfta.h -------------------------------------------------------------------------------- /src/mathfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/mathfunc.h -------------------------------------------------------------------------------- /src/mkMatSmoothing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/mkMatSmoothing.c -------------------------------------------------------------------------------- /src/mkMatSmoothing.def: -------------------------------------------------------------------------------- 1 | LIBRARY mkMatSmoothing.dll 2 | EXPORTS 3 | main -------------------------------------------------------------------------------- /src/mk_MatPaths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/mk_MatPaths.c -------------------------------------------------------------------------------- /src/mk_MatPaths.def: -------------------------------------------------------------------------------- 1 | LIBRARY mk_MatPaths.dll 2 | EXPORTS 3 | main -------------------------------------------------------------------------------- /src/readsac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/readsac.cpp -------------------------------------------------------------------------------- /src/readsac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/readsac.h -------------------------------------------------------------------------------- /src/stringutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/stringutils.h -------------------------------------------------------------------------------- /src/vg_fta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/vg_fta.cpp -------------------------------------------------------------------------------- /src/vg_fta.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasLecocq/msnoise-tomo/HEAD/src/vg_fta.def --------------------------------------------------------------------------------