├── .gitignore ├── LICENSE.md ├── README.md ├── ddf-py3.singularity ├── docs ├── colname.txt ├── developer_notes.md ├── extract.md ├── manual.md └── singularity.md ├── examples ├── all-sky-manual-regions.ds9.reg ├── example.cfg ├── quality-example.cfg ├── tier1-apr2018.cfg ├── tier1-apr2021-galactic.cfg ├── tier1-dec2017.cfg ├── tier1-feb2018.cfg ├── tier1-jul2018-MW.cfg ├── tier1-jul2018-NVSS.cfg ├── tier1-jul2018-lowdec.cfg ├── tier1-jul2018.cfg ├── tier1-mar2024-MW-lowdec.cfg ├── tier1-mar2024-MW.cfg ├── tier1-minimal.cfg ├── tier1-nov2018-deepfields.cfg ├── tier1-rerun.cfg ├── tier1-sep2024-MW-lowdec.cfg ├── tier1-sep2024-MW.cfg ├── tier1-sep2024-NVSS.cfg ├── tier1-sep2024-lowdec.cfg ├── tier1-sep2024.cfg └── tier1.cfg ├── misc ├── DDF.sh ├── DR2-pointings.txt ├── LoTSS_grid_hba_progress.txt ├── logoSingularity.py └── setup.cfg ├── scripts ├── __init__.py ├── align-extrationimage-fluxes.py ├── analyse_logs.py ├── apply-astrometric-shifts.py ├── archivems.py ├── archivems.sh ├── average.py ├── bootstrap.py ├── cleanup.sh ├── compress_all_ms.py ├── convolve.py ├── do_polcubes.py ├── do_spectral_restored.py ├── download.py ├── download_field.py ├── extraction.py ├── find-bad-facets.py ├── install.sh ├── make_facet_noise.py ├── make_mslists.py ├── make_subim.py ├── mosaic.py ├── mosaic_healpix.py ├── mosaic_pointing.py ├── offsets.py ├── optimise-extract-region.py ├── pipeline.py ├── plot_dir_pos.py ├── pull_ddfpipeline.sh ├── quality_pipeline.py ├── redo_dppp_di.py ├── remove_columns.py ├── rerun_offsets.py ├── run_extraction_pipeline.py ├── run_full_field_reprocessing_pipeline.py ├── run_selfcal_pipeline.py ├── run_smooth_again.py ├── runwsclean.py ├── simulation-pipeline.py ├── sourcefind.py ├── sub-sources-outside-region.py └── unpack.py └── utils ├── __init__.py ├── auxcodes.py ├── bad_pix_filter.py ├── cent-rms.py ├── crossmatch_utils.py ├── download_file.py ├── dr_checker.py ├── facet_offsets.py ├── find_bright_offset_sources.py ├── find_compact.py ├── find_mosaic_pointings.py ├── find_outliers.py ├── fit_sourcecounts.py ├── fitting_factors.py ├── fixsymlinks.py ├── get_cat.py ├── getcpus.py ├── hextile.py ├── histmsamp.py ├── make_extended_mask.py ├── make_fitting_product.py ├── modify_mask.py ├── options.py ├── parset.py ├── pipeline_logging.py ├── pipeline_version.py ├── plot_factors.py ├── plotsols_mslist.py ├── quality_make_plots.py ├── quality_parset.py ├── rclone.py ├── remove_bootstrap.py ├── reprocessing_utils.py ├── reproj_test.py ├── sdr_wrapper.py ├── smoothsols.py └── termsize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/README.md -------------------------------------------------------------------------------- /ddf-py3.singularity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/ddf-py3.singularity -------------------------------------------------------------------------------- /docs/colname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/docs/colname.txt -------------------------------------------------------------------------------- /docs/developer_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/docs/developer_notes.md -------------------------------------------------------------------------------- /docs/extract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/docs/extract.md -------------------------------------------------------------------------------- /docs/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/docs/manual.md -------------------------------------------------------------------------------- /docs/singularity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/docs/singularity.md -------------------------------------------------------------------------------- /examples/all-sky-manual-regions.ds9.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/all-sky-manual-regions.ds9.reg -------------------------------------------------------------------------------- /examples/example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/example.cfg -------------------------------------------------------------------------------- /examples/quality-example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/quality-example.cfg -------------------------------------------------------------------------------- /examples/tier1-apr2018.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-apr2018.cfg -------------------------------------------------------------------------------- /examples/tier1-apr2021-galactic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-apr2021-galactic.cfg -------------------------------------------------------------------------------- /examples/tier1-dec2017.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-dec2017.cfg -------------------------------------------------------------------------------- /examples/tier1-feb2018.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-feb2018.cfg -------------------------------------------------------------------------------- /examples/tier1-jul2018-MW.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-jul2018-MW.cfg -------------------------------------------------------------------------------- /examples/tier1-jul2018-NVSS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-jul2018-NVSS.cfg -------------------------------------------------------------------------------- /examples/tier1-jul2018-lowdec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-jul2018-lowdec.cfg -------------------------------------------------------------------------------- /examples/tier1-jul2018.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-jul2018.cfg -------------------------------------------------------------------------------- /examples/tier1-mar2024-MW-lowdec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-mar2024-MW-lowdec.cfg -------------------------------------------------------------------------------- /examples/tier1-mar2024-MW.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-mar2024-MW.cfg -------------------------------------------------------------------------------- /examples/tier1-minimal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-minimal.cfg -------------------------------------------------------------------------------- /examples/tier1-nov2018-deepfields.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-nov2018-deepfields.cfg -------------------------------------------------------------------------------- /examples/tier1-rerun.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-rerun.cfg -------------------------------------------------------------------------------- /examples/tier1-sep2024-MW-lowdec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-sep2024-MW-lowdec.cfg -------------------------------------------------------------------------------- /examples/tier1-sep2024-MW.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-sep2024-MW.cfg -------------------------------------------------------------------------------- /examples/tier1-sep2024-NVSS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-sep2024-NVSS.cfg -------------------------------------------------------------------------------- /examples/tier1-sep2024-lowdec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-sep2024-lowdec.cfg -------------------------------------------------------------------------------- /examples/tier1-sep2024.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1-sep2024.cfg -------------------------------------------------------------------------------- /examples/tier1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/examples/tier1.cfg -------------------------------------------------------------------------------- /misc/DDF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/misc/DDF.sh -------------------------------------------------------------------------------- /misc/DR2-pointings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/misc/DR2-pointings.txt -------------------------------------------------------------------------------- /misc/LoTSS_grid_hba_progress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/misc/LoTSS_grid_hba_progress.txt -------------------------------------------------------------------------------- /misc/logoSingularity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/misc/logoSingularity.py -------------------------------------------------------------------------------- /misc/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/misc/setup.cfg -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/align-extrationimage-fluxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/align-extrationimage-fluxes.py -------------------------------------------------------------------------------- /scripts/analyse_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/analyse_logs.py -------------------------------------------------------------------------------- /scripts/apply-astrometric-shifts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/apply-astrometric-shifts.py -------------------------------------------------------------------------------- /scripts/archivems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/archivems.py -------------------------------------------------------------------------------- /scripts/archivems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/archivems.sh -------------------------------------------------------------------------------- /scripts/average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/average.py -------------------------------------------------------------------------------- /scripts/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/bootstrap.py -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /scripts/compress_all_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/compress_all_ms.py -------------------------------------------------------------------------------- /scripts/convolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/convolve.py -------------------------------------------------------------------------------- /scripts/do_polcubes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/do_polcubes.py -------------------------------------------------------------------------------- /scripts/do_spectral_restored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/do_spectral_restored.py -------------------------------------------------------------------------------- /scripts/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/download.py -------------------------------------------------------------------------------- /scripts/download_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/download_field.py -------------------------------------------------------------------------------- /scripts/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/extraction.py -------------------------------------------------------------------------------- /scripts/find-bad-facets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/find-bad-facets.py -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/make_facet_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/make_facet_noise.py -------------------------------------------------------------------------------- /scripts/make_mslists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/make_mslists.py -------------------------------------------------------------------------------- /scripts/make_subim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/make_subim.py -------------------------------------------------------------------------------- /scripts/mosaic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/mosaic.py -------------------------------------------------------------------------------- /scripts/mosaic_healpix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/mosaic_healpix.py -------------------------------------------------------------------------------- /scripts/mosaic_pointing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/mosaic_pointing.py -------------------------------------------------------------------------------- /scripts/offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/offsets.py -------------------------------------------------------------------------------- /scripts/optimise-extract-region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/optimise-extract-region.py -------------------------------------------------------------------------------- /scripts/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/pipeline.py -------------------------------------------------------------------------------- /scripts/plot_dir_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/plot_dir_pos.py -------------------------------------------------------------------------------- /scripts/pull_ddfpipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/pull_ddfpipeline.sh -------------------------------------------------------------------------------- /scripts/quality_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/quality_pipeline.py -------------------------------------------------------------------------------- /scripts/redo_dppp_di.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/redo_dppp_di.py -------------------------------------------------------------------------------- /scripts/remove_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/remove_columns.py -------------------------------------------------------------------------------- /scripts/rerun_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/rerun_offsets.py -------------------------------------------------------------------------------- /scripts/run_extraction_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/run_extraction_pipeline.py -------------------------------------------------------------------------------- /scripts/run_full_field_reprocessing_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/run_full_field_reprocessing_pipeline.py -------------------------------------------------------------------------------- /scripts/run_selfcal_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/run_selfcal_pipeline.py -------------------------------------------------------------------------------- /scripts/run_smooth_again.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/run_smooth_again.py -------------------------------------------------------------------------------- /scripts/runwsclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/runwsclean.py -------------------------------------------------------------------------------- /scripts/simulation-pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/simulation-pipeline.py -------------------------------------------------------------------------------- /scripts/sourcefind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/sourcefind.py -------------------------------------------------------------------------------- /scripts/sub-sources-outside-region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/sub-sources-outside-region.py -------------------------------------------------------------------------------- /scripts/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/scripts/unpack.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/auxcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/auxcodes.py -------------------------------------------------------------------------------- /utils/bad_pix_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/bad_pix_filter.py -------------------------------------------------------------------------------- /utils/cent-rms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/cent-rms.py -------------------------------------------------------------------------------- /utils/crossmatch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/crossmatch_utils.py -------------------------------------------------------------------------------- /utils/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/download_file.py -------------------------------------------------------------------------------- /utils/dr_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/dr_checker.py -------------------------------------------------------------------------------- /utils/facet_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/facet_offsets.py -------------------------------------------------------------------------------- /utils/find_bright_offset_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/find_bright_offset_sources.py -------------------------------------------------------------------------------- /utils/find_compact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/find_compact.py -------------------------------------------------------------------------------- /utils/find_mosaic_pointings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/find_mosaic_pointings.py -------------------------------------------------------------------------------- /utils/find_outliers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/find_outliers.py -------------------------------------------------------------------------------- /utils/fit_sourcecounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/fit_sourcecounts.py -------------------------------------------------------------------------------- /utils/fitting_factors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/fitting_factors.py -------------------------------------------------------------------------------- /utils/fixsymlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/fixsymlinks.py -------------------------------------------------------------------------------- /utils/get_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/get_cat.py -------------------------------------------------------------------------------- /utils/getcpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/getcpus.py -------------------------------------------------------------------------------- /utils/hextile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/hextile.py -------------------------------------------------------------------------------- /utils/histmsamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/histmsamp.py -------------------------------------------------------------------------------- /utils/make_extended_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/make_extended_mask.py -------------------------------------------------------------------------------- /utils/make_fitting_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/make_fitting_product.py -------------------------------------------------------------------------------- /utils/modify_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/modify_mask.py -------------------------------------------------------------------------------- /utils/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/options.py -------------------------------------------------------------------------------- /utils/parset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/parset.py -------------------------------------------------------------------------------- /utils/pipeline_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/pipeline_logging.py -------------------------------------------------------------------------------- /utils/pipeline_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/pipeline_version.py -------------------------------------------------------------------------------- /utils/plot_factors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/plot_factors.py -------------------------------------------------------------------------------- /utils/plotsols_mslist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/plotsols_mslist.py -------------------------------------------------------------------------------- /utils/quality_make_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/quality_make_plots.py -------------------------------------------------------------------------------- /utils/quality_parset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/quality_parset.py -------------------------------------------------------------------------------- /utils/rclone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/rclone.py -------------------------------------------------------------------------------- /utils/remove_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/remove_bootstrap.py -------------------------------------------------------------------------------- /utils/reprocessing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/reprocessing_utils.py -------------------------------------------------------------------------------- /utils/reproj_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/reproj_test.py -------------------------------------------------------------------------------- /utils/sdr_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/sdr_wrapper.py -------------------------------------------------------------------------------- /utils/smoothsols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/smoothsols.py -------------------------------------------------------------------------------- /utils/termsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhardcastle/ddf-pipeline/HEAD/utils/termsize.py --------------------------------------------------------------------------------