Skip to content

Commit d0d1ac2

Browse files
authored
Merge pull request #53 from AlecThomson/inmemcut
In-memory cutouts
2 parents ef3e15c + 76e55ad commit d0d1ac2

25 files changed

+368
-304
lines changed

arrakis/cleanup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from pathlib import Path
77
from typing import List, Union
88

9-
from dask.distributed import Client, LocalCluster
109
from prefect import flow, task, unmapped
1110

1211
from arrakis.logger import logger

arrakis/columns_possum.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
("rm", float, "synth", "phiPeakPIfit_rm2", u.rad / u.m**2),
5656
("rm_err", float, "synth", "dPhiPeakPIfit_rm2", u.rad / u.m**2),
5757
("polint", float, "synth", "ampPeakPIfitEff", u.Jy / u.beam),
58-
("polint_err", float, "synth", "dAmpPeakPIchan", u.Jy / u.beam),
58+
("polint_err", float, "synth", "dAmpPeakPIfit", u.Jy / u.beam),
5959
("stokesQ", float, "synth", "peakFDFrealFit", u.Jy / u.beam),
6060
("stokesU", float, "synth", "peakFDFimagFit", u.Jy / u.beam),
6161
("polangle", float, "synth", "polAngleFit_deg", u.deg),
@@ -93,7 +93,7 @@
9393
# Less important quantities from the RMsynthesis (can be removed or modified after prototype verification?)
9494
("noise_chan", float, "synth", "dQU", u.Jy / u.beam),
9595
("fdf_noise_mad", float, "synth", "dFDFcorMAD", u.Jy / u.beam),
96-
("fdf_noise_rms", float, "synth", "dFDFrms", u.Jy / u.beam),
96+
("fdf_noise_rms", float, "synth", "dFDFth", u.Jy / u.beam),
9797
# We need to figure out what to do with these metrics, to simplify them.
9898
("sigma_add_Q", float, "synth", "sigmaAddQ", u.dimensionless_unscaled),
9999
(

0 commit comments

Comments
 (0)