├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── docker_build.yml │ ├── push_docker.yml │ ├── python_tests.yml │ └── pythonpublish.yml ├── .gitignore ├── .readthedocs.yml ├── Dockerfile ├── FinalReport.md ├── INTEGRATION.md ├── LICENSE ├── MAINTENANCE.md ├── MANIFEST.in ├── README.md ├── VERSION-HISTORY.md ├── dependencies.txt ├── docs ├── Makefile ├── conf.py ├── contents.rst ├── find_doppler.rst ├── find_event.rst └── index.rst ├── gen_drift_indexes ├── ancient_history.py.txt └── gen_drift_indexes.py ├── requirements.txt ├── requirements_gpu.txt ├── requirements_test.txt ├── setup.cfg ├── setup.py ├── telegraphic └── find_scan_sets.py ├── test ├── .coveragerc ├── download_test_data.py ├── fb_cases_def.py ├── fb_cases_util.py ├── fb_dat_reference.txt ├── fb_genref.py ├── pipelines_util.py ├── run_benchmark.sh ├── run_tests.sh ├── test_dat_diff.py ├── test_dat_filter.py ├── test_drift_rates.py ├── test_fb_cases.py ├── test_find_event.py ├── test_pipelines_1.py ├── test_pipelines_2.py ├── test_pipelines_3.py ├── test_pipelines_4.py ├── test_plot_dat.py ├── test_setup.py └── test_turbo_seti.py ├── this_was_the.travis.yml ├── turbo_seti ├── __init__.py ├── drift_indexes │ ├── drift_indexes_array_10.txt │ ├── drift_indexes_array_11.txt │ ├── drift_indexes_array_2.txt │ ├── drift_indexes_array_3.txt │ ├── drift_indexes_array_4.txt │ ├── drift_indexes_array_5.txt │ ├── drift_indexes_array_6.txt │ ├── drift_indexes_array_7.txt │ ├── drift_indexes_array_8.txt │ └── drift_indexes_array_9.txt ├── find_doppler │ ├── __init__.py │ ├── dat_diff.py │ ├── data_handler.py │ ├── file_writers.py │ ├── find_doppler.py │ ├── helper_functions.py │ ├── kernels │ │ ├── Scheduler │ │ │ └── __init__.py │ │ ├── __init__.py │ │ ├── _bitrev │ │ │ └── __init__.py │ │ ├── _hitsearch │ │ │ ├── __init__.py │ │ │ └── kernels.cu │ │ └── _taylor_tree │ │ │ ├── __init__.py │ │ │ ├── _core_cuda.py │ │ │ └── _core_numba.py │ ├── merge_dats_logs.py │ ├── seti_event.py │ └── turbo_seti_version.py └── find_event │ ├── __init__.py │ ├── dat_filter.py │ ├── find_event.py │ ├── find_event_pipeline.py │ ├── plot_dat.py │ ├── plot_event.py │ ├── plot_event_pipeline.py │ └── run_pipelines.py └── tutorial ├── README.md ├── initialise.ipynb ├── tutorial_1.ipynb └── tutorial_2.ipynb /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/docker_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/.github/workflows/docker_build.yml -------------------------------------------------------------------------------- /.github/workflows/push_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/.github/workflows/push_docker.yml -------------------------------------------------------------------------------- /.github/workflows/python_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/.github/workflows/python_tests.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/Dockerfile -------------------------------------------------------------------------------- /FinalReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/FinalReport.md -------------------------------------------------------------------------------- /INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/INTEGRATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/MAINTENANCE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/README.md -------------------------------------------------------------------------------- /VERSION-HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/VERSION-HISTORY.md -------------------------------------------------------------------------------- /dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/dependencies.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- 1 | .. include:: index.rst -------------------------------------------------------------------------------- /docs/find_doppler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/docs/find_doppler.rst -------------------------------------------------------------------------------- /docs/find_event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/docs/find_event.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/docs/index.rst -------------------------------------------------------------------------------- /gen_drift_indexes/ancient_history.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/gen_drift_indexes/ancient_history.py.txt -------------------------------------------------------------------------------- /gen_drift_indexes/gen_drift_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/gen_drift_indexes/gen_drift_indexes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_gpu.txt: -------------------------------------------------------------------------------- 1 | cupy -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/setup.py -------------------------------------------------------------------------------- /telegraphic/find_scan_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/telegraphic/find_scan_sets.py -------------------------------------------------------------------------------- /test/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/.coveragerc -------------------------------------------------------------------------------- /test/download_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/download_test_data.py -------------------------------------------------------------------------------- /test/fb_cases_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/fb_cases_def.py -------------------------------------------------------------------------------- /test/fb_cases_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/fb_cases_util.py -------------------------------------------------------------------------------- /test/fb_dat_reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/fb_dat_reference.txt -------------------------------------------------------------------------------- /test/fb_genref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/fb_genref.py -------------------------------------------------------------------------------- /test/pipelines_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/pipelines_util.py -------------------------------------------------------------------------------- /test/run_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/run_benchmark.sh -------------------------------------------------------------------------------- /test/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/run_tests.sh -------------------------------------------------------------------------------- /test/test_dat_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_dat_diff.py -------------------------------------------------------------------------------- /test/test_dat_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_dat_filter.py -------------------------------------------------------------------------------- /test/test_drift_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_drift_rates.py -------------------------------------------------------------------------------- /test/test_fb_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_fb_cases.py -------------------------------------------------------------------------------- /test/test_find_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_find_event.py -------------------------------------------------------------------------------- /test/test_pipelines_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_pipelines_1.py -------------------------------------------------------------------------------- /test/test_pipelines_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_pipelines_2.py -------------------------------------------------------------------------------- /test/test_pipelines_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_pipelines_3.py -------------------------------------------------------------------------------- /test/test_pipelines_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_pipelines_4.py -------------------------------------------------------------------------------- /test/test_plot_dat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_plot_dat.py -------------------------------------------------------------------------------- /test/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_setup.py -------------------------------------------------------------------------------- /test/test_turbo_seti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/test/test_turbo_seti.py -------------------------------------------------------------------------------- /this_was_the.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/this_was_the.travis.yml -------------------------------------------------------------------------------- /turbo_seti/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/__init__.py -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_10.txt -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_11.txt -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_2.txt -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_3.txt -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_4.txt -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_5.txt -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_6.txt -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_7.txt -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_8.txt -------------------------------------------------------------------------------- /turbo_seti/drift_indexes/drift_indexes_array_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/drift_indexes/drift_indexes_array_9.txt -------------------------------------------------------------------------------- /turbo_seti/find_doppler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/__init__.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/dat_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/dat_diff.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/data_handler.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/file_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/file_writers.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/find_doppler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/find_doppler.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/helper_functions.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/kernels/Scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/kernels/Scheduler/__init__.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/kernels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/kernels/__init__.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/kernels/_bitrev/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/kernels/_bitrev/__init__.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/kernels/_hitsearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/kernels/_hitsearch/__init__.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/kernels/_hitsearch/kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/kernels/_hitsearch/kernels.cu -------------------------------------------------------------------------------- /turbo_seti/find_doppler/kernels/_taylor_tree/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * -------------------------------------------------------------------------------- /turbo_seti/find_doppler/kernels/_taylor_tree/_core_cuda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/kernels/_taylor_tree/_core_cuda.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/kernels/_taylor_tree/_core_numba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/kernels/_taylor_tree/_core_numba.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/merge_dats_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/merge_dats_logs.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/seti_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_doppler/seti_event.py -------------------------------------------------------------------------------- /turbo_seti/find_doppler/turbo_seti_version.py: -------------------------------------------------------------------------------- 1 | TURBO_SETI_VERSION = '2.3.2' 2 | -------------------------------------------------------------------------------- /turbo_seti/find_event/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /turbo_seti/find_event/dat_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_event/dat_filter.py -------------------------------------------------------------------------------- /turbo_seti/find_event/find_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_event/find_event.py -------------------------------------------------------------------------------- /turbo_seti/find_event/find_event_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_event/find_event_pipeline.py -------------------------------------------------------------------------------- /turbo_seti/find_event/plot_dat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_event/plot_dat.py -------------------------------------------------------------------------------- /turbo_seti/find_event/plot_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_event/plot_event.py -------------------------------------------------------------------------------- /turbo_seti/find_event/plot_event_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_event/plot_event_pipeline.py -------------------------------------------------------------------------------- /turbo_seti/find_event/run_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/turbo_seti/find_event/run_pipelines.py -------------------------------------------------------------------------------- /tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/tutorial/README.md -------------------------------------------------------------------------------- /tutorial/initialise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/tutorial/initialise.ipynb -------------------------------------------------------------------------------- /tutorial/tutorial_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/tutorial/tutorial_1.ipynb -------------------------------------------------------------------------------- /tutorial/tutorial_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCBerkeleySETI/turbo_seti/HEAD/tutorial/tutorial_2.ipynb --------------------------------------------------------------------------------