├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── CITATION ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── conftest.py ├── docs ├── Makefile ├── make.bat └── source │ ├── advanced.rst │ ├── basics.rst │ ├── cadences.rst │ ├── conf.py │ ├── frame_methods.rst │ ├── getting_started.rst │ ├── images │ ├── advanced_accuracy.png │ ├── advanced_array_synth.png │ ├── advanced_array_synth_trunc.png │ ├── basic_noise_chi2.png │ ├── basic_noise_gaussian.png │ ├── basic_signal.png │ ├── box_profile.png │ ├── c_plot.png │ ├── c_plot_readme.png │ ├── c_plot_slew.png │ ├── example.png │ ├── example_obs.png │ ├── flashy_synthetic.png │ ├── gaussian_profile.png │ ├── gs_obs.png │ ├── gs_obs_db.png │ ├── gs_synth.png │ ├── multiple_gaussian_profile.png │ ├── noise_from_obs_default_chi2.png │ ├── noise_from_obs_default_gaussian.png │ ├── noise_from_obs_params.png │ ├── plot_f.png │ ├── plot_fmid.png │ ├── plot_fmid_line.png │ ├── plot_fmin.png │ ├── plot_px.png │ ├── rfi_signal.png │ ├── setigen_voltage_diagram_h.png │ ├── sinc2_profile.png │ ├── sinc2_profile_no_trunc.png │ ├── sine_intensity_1_1.png │ ├── sine_intensity_1_3.png │ ├── sine_signal.png │ └── squared_signal.png │ ├── index.rst │ ├── install.rst │ ├── modules.rst │ ├── setigen.funcs.rst │ ├── setigen.rst │ ├── setigen.voltage.rst │ └── voltages.rst ├── jupyter-notebooks ├── documentation_plots │ ├── README.ipynb │ ├── advanced.ipynb │ ├── basics.ipynb │ ├── cadences.ipynb │ ├── frame_methods.ipynb │ └── getting_started.ipynb ├── spectrogram │ ├── cadences.ipynb │ └── doppler_smearing.ipynb └── voltage │ ├── 00_raw_file_gen.ipynb │ ├── 01_multi_antenna_raw_file_gen.ipynb │ ├── 02_deconstructed_pipeline.ipynb │ ├── 03_custom_signals.ipynb │ ├── 04_custom_signals_estimate_noise.ipynb │ ├── 05_raw_file_gen_snr.ipynb │ ├── 06_starting_from_existing_raw_files.ipynb │ └── 07_efficient_gen_by_subsampling.ipynb ├── pytest.ini ├── requirements.txt ├── setigen ├── .coveragerc ├── __init__.py ├── _version.py ├── assets │ ├── sample.fil │ └── sample_noise_params.npy ├── cadence.py ├── dedrift.py ├── distributions.py ├── frame.py ├── funcs │ ├── __init__.py │ ├── bp_profiles.py │ ├── f_profiles.py │ ├── func_utils.py │ ├── paths.py │ └── t_profiles.py ├── integrate.py ├── normalize.py ├── plots.py ├── sample_from_obs.py ├── slice.py ├── spectrum.py ├── split_utils.py ├── timeseries.py ├── unit_utils.py ├── utils.py ├── voltage │ ├── __init__.py │ ├── antenna.py │ ├── assets │ │ └── header_template.txt │ ├── backend.py │ ├── data_stream.py │ ├── level_utils.py │ ├── polyphase_filterbank.py │ ├── quantization.py │ ├── raw_utils.py │ └── waterfall.py └── waterfall_utils.py ├── setup.py └── tests ├── assets ├── sample.fil └── test_frame_data.npy ├── test_cadence.py ├── test_cband_h5.py ├── test_custom_parameters.py ├── test_dedrift.py ├── test_frame_creation.py ├── test_frame_injection.py ├── test_funcs ├── test_f_profiles.py ├── test_func_utils.py ├── test_paths.py └── test_t_profiles.py ├── test_noise_generation.py ├── test_normalize.py ├── test_plots.py ├── test_sample_from_obs.py ├── test_split_utils.py ├── test_voltage ├── test_level_utils.py ├── test_pfb.py └── test_raw_voltages.py └── test_waterfall_utils.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/.travis.yml -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/CITATION -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/advanced.rst -------------------------------------------------------------------------------- /docs/source/basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/basics.rst -------------------------------------------------------------------------------- /docs/source/cadences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/cadences.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/frame_methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/frame_methods.rst -------------------------------------------------------------------------------- /docs/source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/getting_started.rst -------------------------------------------------------------------------------- /docs/source/images/advanced_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/advanced_accuracy.png -------------------------------------------------------------------------------- /docs/source/images/advanced_array_synth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/advanced_array_synth.png -------------------------------------------------------------------------------- /docs/source/images/advanced_array_synth_trunc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/advanced_array_synth_trunc.png -------------------------------------------------------------------------------- /docs/source/images/basic_noise_chi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/basic_noise_chi2.png -------------------------------------------------------------------------------- /docs/source/images/basic_noise_gaussian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/basic_noise_gaussian.png -------------------------------------------------------------------------------- /docs/source/images/basic_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/basic_signal.png -------------------------------------------------------------------------------- /docs/source/images/box_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/box_profile.png -------------------------------------------------------------------------------- /docs/source/images/c_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/c_plot.png -------------------------------------------------------------------------------- /docs/source/images/c_plot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/c_plot_readme.png -------------------------------------------------------------------------------- /docs/source/images/c_plot_slew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/c_plot_slew.png -------------------------------------------------------------------------------- /docs/source/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/example.png -------------------------------------------------------------------------------- /docs/source/images/example_obs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/example_obs.png -------------------------------------------------------------------------------- /docs/source/images/flashy_synthetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/flashy_synthetic.png -------------------------------------------------------------------------------- /docs/source/images/gaussian_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/gaussian_profile.png -------------------------------------------------------------------------------- /docs/source/images/gs_obs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/gs_obs.png -------------------------------------------------------------------------------- /docs/source/images/gs_obs_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/gs_obs_db.png -------------------------------------------------------------------------------- /docs/source/images/gs_synth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/gs_synth.png -------------------------------------------------------------------------------- /docs/source/images/multiple_gaussian_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/multiple_gaussian_profile.png -------------------------------------------------------------------------------- /docs/source/images/noise_from_obs_default_chi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/noise_from_obs_default_chi2.png -------------------------------------------------------------------------------- /docs/source/images/noise_from_obs_default_gaussian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/noise_from_obs_default_gaussian.png -------------------------------------------------------------------------------- /docs/source/images/noise_from_obs_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/noise_from_obs_params.png -------------------------------------------------------------------------------- /docs/source/images/plot_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/plot_f.png -------------------------------------------------------------------------------- /docs/source/images/plot_fmid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/plot_fmid.png -------------------------------------------------------------------------------- /docs/source/images/plot_fmid_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/plot_fmid_line.png -------------------------------------------------------------------------------- /docs/source/images/plot_fmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/plot_fmin.png -------------------------------------------------------------------------------- /docs/source/images/plot_px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/plot_px.png -------------------------------------------------------------------------------- /docs/source/images/rfi_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/rfi_signal.png -------------------------------------------------------------------------------- /docs/source/images/setigen_voltage_diagram_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/setigen_voltage_diagram_h.png -------------------------------------------------------------------------------- /docs/source/images/sinc2_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/sinc2_profile.png -------------------------------------------------------------------------------- /docs/source/images/sinc2_profile_no_trunc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/sinc2_profile_no_trunc.png -------------------------------------------------------------------------------- /docs/source/images/sine_intensity_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/sine_intensity_1_1.png -------------------------------------------------------------------------------- /docs/source/images/sine_intensity_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/sine_intensity_1_3.png -------------------------------------------------------------------------------- /docs/source/images/sine_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/sine_signal.png -------------------------------------------------------------------------------- /docs/source/images/squared_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/images/squared_signal.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/setigen.funcs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/setigen.funcs.rst -------------------------------------------------------------------------------- /docs/source/setigen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/setigen.rst -------------------------------------------------------------------------------- /docs/source/setigen.voltage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/setigen.voltage.rst -------------------------------------------------------------------------------- /docs/source/voltages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/docs/source/voltages.rst -------------------------------------------------------------------------------- /jupyter-notebooks/documentation_plots/README.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/documentation_plots/README.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/documentation_plots/advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/documentation_plots/advanced.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/documentation_plots/basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/documentation_plots/basics.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/documentation_plots/cadences.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/documentation_plots/cadences.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/documentation_plots/frame_methods.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/documentation_plots/frame_methods.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/documentation_plots/getting_started.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/documentation_plots/getting_started.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/spectrogram/cadences.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/spectrogram/cadences.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/spectrogram/doppler_smearing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/spectrogram/doppler_smearing.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/voltage/00_raw_file_gen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/voltage/00_raw_file_gen.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/voltage/01_multi_antenna_raw_file_gen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/voltage/01_multi_antenna_raw_file_gen.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/voltage/02_deconstructed_pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/voltage/02_deconstructed_pipeline.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/voltage/03_custom_signals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/voltage/03_custom_signals.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/voltage/04_custom_signals_estimate_noise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/voltage/04_custom_signals_estimate_noise.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/voltage/05_raw_file_gen_snr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/voltage/05_raw_file_gen_snr.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/voltage/06_starting_from_existing_raw_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/voltage/06_starting_from_existing_raw_files.ipynb -------------------------------------------------------------------------------- /jupyter-notebooks/voltage/07_efficient_gen_by_subsampling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/jupyter-notebooks/voltage/07_efficient_gen_by_subsampling.ipynb -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/requirements.txt -------------------------------------------------------------------------------- /setigen/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = tests/* -------------------------------------------------------------------------------- /setigen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/__init__.py -------------------------------------------------------------------------------- /setigen/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.7.0' -------------------------------------------------------------------------------- /setigen/assets/sample.fil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/assets/sample.fil -------------------------------------------------------------------------------- /setigen/assets/sample_noise_params.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/assets/sample_noise_params.npy -------------------------------------------------------------------------------- /setigen/cadence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/cadence.py -------------------------------------------------------------------------------- /setigen/dedrift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/dedrift.py -------------------------------------------------------------------------------- /setigen/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/distributions.py -------------------------------------------------------------------------------- /setigen/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/frame.py -------------------------------------------------------------------------------- /setigen/funcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/funcs/__init__.py -------------------------------------------------------------------------------- /setigen/funcs/bp_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/funcs/bp_profiles.py -------------------------------------------------------------------------------- /setigen/funcs/f_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/funcs/f_profiles.py -------------------------------------------------------------------------------- /setigen/funcs/func_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/funcs/func_utils.py -------------------------------------------------------------------------------- /setigen/funcs/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/funcs/paths.py -------------------------------------------------------------------------------- /setigen/funcs/t_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/funcs/t_profiles.py -------------------------------------------------------------------------------- /setigen/integrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/integrate.py -------------------------------------------------------------------------------- /setigen/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/normalize.py -------------------------------------------------------------------------------- /setigen/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/plots.py -------------------------------------------------------------------------------- /setigen/sample_from_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/sample_from_obs.py -------------------------------------------------------------------------------- /setigen/slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/slice.py -------------------------------------------------------------------------------- /setigen/spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/spectrum.py -------------------------------------------------------------------------------- /setigen/split_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/split_utils.py -------------------------------------------------------------------------------- /setigen/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/timeseries.py -------------------------------------------------------------------------------- /setigen/unit_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/unit_utils.py -------------------------------------------------------------------------------- /setigen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/utils.py -------------------------------------------------------------------------------- /setigen/voltage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/__init__.py -------------------------------------------------------------------------------- /setigen/voltage/antenna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/antenna.py -------------------------------------------------------------------------------- /setigen/voltage/assets/header_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/assets/header_template.txt -------------------------------------------------------------------------------- /setigen/voltage/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/backend.py -------------------------------------------------------------------------------- /setigen/voltage/data_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/data_stream.py -------------------------------------------------------------------------------- /setigen/voltage/level_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/level_utils.py -------------------------------------------------------------------------------- /setigen/voltage/polyphase_filterbank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/polyphase_filterbank.py -------------------------------------------------------------------------------- /setigen/voltage/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/quantization.py -------------------------------------------------------------------------------- /setigen/voltage/raw_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/raw_utils.py -------------------------------------------------------------------------------- /setigen/voltage/waterfall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/voltage/waterfall.py -------------------------------------------------------------------------------- /setigen/waterfall_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setigen/waterfall_utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/setup.py -------------------------------------------------------------------------------- /tests/assets/sample.fil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/assets/sample.fil -------------------------------------------------------------------------------- /tests/assets/test_frame_data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/assets/test_frame_data.npy -------------------------------------------------------------------------------- /tests/test_cadence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_cadence.py -------------------------------------------------------------------------------- /tests/test_cband_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_cband_h5.py -------------------------------------------------------------------------------- /tests/test_custom_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_custom_parameters.py -------------------------------------------------------------------------------- /tests/test_dedrift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_dedrift.py -------------------------------------------------------------------------------- /tests/test_frame_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_frame_creation.py -------------------------------------------------------------------------------- /tests/test_frame_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_frame_injection.py -------------------------------------------------------------------------------- /tests/test_funcs/test_f_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_funcs/test_f_profiles.py -------------------------------------------------------------------------------- /tests/test_funcs/test_func_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_funcs/test_func_utils.py -------------------------------------------------------------------------------- /tests/test_funcs/test_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_funcs/test_paths.py -------------------------------------------------------------------------------- /tests/test_funcs/test_t_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_funcs/test_t_profiles.py -------------------------------------------------------------------------------- /tests/test_noise_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_noise_generation.py -------------------------------------------------------------------------------- /tests/test_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_normalize.py -------------------------------------------------------------------------------- /tests/test_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_plots.py -------------------------------------------------------------------------------- /tests/test_sample_from_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_sample_from_obs.py -------------------------------------------------------------------------------- /tests/test_split_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_split_utils.py -------------------------------------------------------------------------------- /tests/test_voltage/test_level_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_voltage/test_level_utils.py -------------------------------------------------------------------------------- /tests/test_voltage/test_pfb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_voltage/test_pfb.py -------------------------------------------------------------------------------- /tests/test_voltage/test_raw_voltages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_voltage/test_raw_voltages.py -------------------------------------------------------------------------------- /tests/test_waterfall_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbrzycki/setigen/HEAD/tests/test_waterfall_utils.py --------------------------------------------------------------------------------