Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
5c3cc5e
introduced lensing changes
Apr 4, 2024
ba9bde9
update
Apr 25, 2024
a7d468c
initialising beam movement lensing calc
May 3, 2024
a99cc0b
deleted fits file
May 3, 2024
6449e92
changes to auxillary files
May 3, 2024
b7c1b2e
added in parallel functionality for beam movement calcs
May 7, 2024
3fd39e0
extra survey files
May 7, 2024
a052a36
added beam probs plot and formatted numbers
MWSammons May 8, 2024
38b2043
cluster DMs
May 29, 2024
0feece9
propagated arguments
May 30, 2024
70cb333
different parameterisation
MWSammons May 30, 2024
35719b5
rotated some multiplications
MWSammons May 31, 2024
b786b2a
added fraction modelled print
Jun 4, 2024
43732d8
non-uniform sky exposure for DM extra
Jun 5, 2024
446f8fa
working cluster DM cont
MWSammons Jun 8, 2024
0a8eca5
update
MWSammons Jun 17, 2024
cec9a7c
initial commit for changes to include cluster scattering contribution
Jun 21, 2024
8dd46d9
various updates and change of alpha to -1 factor extracted
Jul 2, 2024
b75165a
initialise pre render separation
Jul 17, 2024
3ed12f9
made prerender paralelliseable
Jul 17, 2024
a865f99
last commit before shifting to new probability paradighm
Aug 8, 2024
9b06ad5
some corrections that got everything working on canfar
MWSammons Aug 14, 2024
caac60a
corrected scattering probs to correctly change cluster redshift
MWSammons Aug 14, 2024
b5eb83b
generalised for both ray and source probability distributions
Aug 16, 2024
7268090
merged the local and canfar divergences, generalised method should pe…
Aug 16, 2024
61f8142
formatted redshifts in file names
MWSammons Aug 16, 2024
5e99eba
merged generalised changes
MWSammons Aug 16, 2024
fc02132
initialising
Aug 16, 2024
878e163
Merge branch 'beam_dependent_pcosmic' of https://github.com/MWSammons…
Aug 16, 2024
7fd433d
change magnification mapper pixres
MWSammons Aug 17, 2024
ee388e0
fixed error in scattering distribution calc, zeros now excluded from …
MWSammons Aug 19, 2024
d04816e
actually put weights into neWeightedHistorgram
MWSammons Aug 20, 2024
84c56ba
adjusted prob threshold x-value sizes, flattened weights and applied …
MWSammons Aug 21, 2024
7d0a953
CROTA variable not necessarily listed so change rotation matrix param…
MWSammons Aug 22, 2024
730a62a
added advanced beam movement back to tracked files
MWSammons Aug 22, 2024
193803c
removed magni map extrapolation
MWSammons Sep 4, 2024
5ba9391
added actualy bandwidth to calcs, rather than default
MWSammons Sep 4, 2024
5911026
changed scattering prob calc to renormalise numerical errors and chan…
MWSammons Dec 24, 2024
04bf4c9
finalPaperUpdate
MWSammons Jul 3, 2025
ad469c8
scattering bug
MWSammons Jan 26, 2026
2bc4dca
Merge pull request #1 from MWSammons/beam_dependent_pcosmic
MWSammons Jan 26, 2026
402b231
fluence sampling script
Jan 26, 2026
ac23a5e
Merge pull request #2 from MWSammons/fluence_distributions
MWSammons Jan 26, 2026
a76241d
tuning script
Jan 26, 2026
1c99682
including chime synth beam file
Jan 26, 2026
c0a4e69
sampleZDE
Aug 13, 2026
3a10bc3
updating to recent zdm
Aug 13, 2026
0d29ed3
big merge from updated zdm
Aug 13, 2026
fd93238
fix(loading): moved cluster loading functionality to main directory f…
Aug 14, 2026
72c27ac
updates to make cluster functionality work
MWSammons Aug 14, 2026
d43b6c9
fix(cluster): renamed some of the script files
Aug 17, 2026
9307b75
initialised some convenience scripts
MWSammons Aug 17, 2026
123e305
print cleanup
MWSammons Aug 17, 2026
7bc6d8e
config change
MWSammons Aug 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 23 additions & 9 deletions zdm/MC_sample/loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,15 @@ def set_state(alpha_method=1, cosmo=Planck18):


def survey_and_grid(survey_name:str='CRAFT/CRACO_1_5000',
opdir='',
bPosNum=0,
init_state=None,
state_dict=None, iFRB:int=0,
alpha_method=1, NFRB:int=100,
lum_func:int=2,sdir=None,nz=500,ndm=1400,
nbins=5,edir=''):
nbins=5, cluster=False,
clusterRedshift=np.nan,
lensing=False):
""" Load up a survey and grid for a CRACO mock dataset

Args:
Expand All @@ -108,10 +112,7 @@ def survey_and_grid(survey_name:str='CRAFT/CRACO_1_5000',
0=power-law, 1=gamma, 2=gamma+spline. Defaults to 0.
state_dict (dict, optional):
Used to init state instead of alpha_method, lum_func parameters
sdir (string, optional): Directory containing surveys
edir (string, optional):
Directory containing efficiency files if using FRB-specific responses


Raises:
IOError: [description]

Expand Down Expand Up @@ -139,18 +140,31 @@ def survey_and_grid(survey_name:str='CRAFT/CRACO_1_5000',
datdir=resource_filename('zdm', 'GridData'),
zlog=False,nz=nz,ndm=ndm)


############## Initialise surveys ##############
if sdir is not None:
print("Searching for survey in directory ",sdir)
else:
sdir = os.path.join(resource_filename('zdm', 'craco'), 'MC_Surveys')
isurvey = survey.load_survey(survey_name, state, dmvals,
NFRB=NFRB, sdir=sdir, nbins=nbins,
iFRB=iFRB, edir=edir)
isurvey = survey.load_survey(
survey_name = survey_name,
state = state,
opdir = opdir,
bPosNum = bPosNum,
dmvals = dmvals,
cluster = cluster,
clusterRedshift = clusterRedshift,
zvals = zvals,
lensing = lensing,
NFRB=NFRB,
sdir=sdir,
nbins=nbins,
iFRB=iFRB
)

# generates zdm grid
grids = misc_functions.initialise_grids(
[isurvey], zDMgrid, zvals, dmvals, state, wdist=True)
[isurvey], opdir, bPosNum, zDMgrid, zvals, dmvals, state, wdist=True, cluster=cluster, clusterRedshift = clusterRedshift)
print("Initialised grid")

# Return Survey and Grid
Expand Down
28 changes: 28 additions & 0 deletions zdm/data/Surveys/CHIME_SynthBeam.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: '{"observing": {"NORM_FRB": 0, "TOBS": 1, "MAX_DM": 7000},
# "telescope": {"BMETHOD": 0, "DIAM": 80.0, "NBEAMS": 1,
# "NBINS": 100, "THRESH":5.0, "TRES":1.0,
# "FRES":0.025,"FBAR":600, "BTHRESH":0.001, "BW":400}}'}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
DUMMY 400 300 30.0 600 0.025 "" "" 8 8. 5. 1.0 1 1.0 "" "" 0.3
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORD.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 48,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 900.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0375,\n \
# \"BW\": 1200,\n \"BTHRESH\": 0.001,\n \"THRESH\": 0.625,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORD1_5.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 48,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 420.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0375,\n \
# \"BW\": 240,\n \"BTHRESH\": 0.001,\n \"THRESH\": 11.18,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORD2_5.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 48,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 660.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0375,\n \
# \"BW\": 240,\n \"BTHRESH\": 0.001,\n \"THRESH\": 11.18,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORD3_5.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 48,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 900.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0375,\n \
# \"BW\": 240,\n \"BTHRESH\": 0.001,\n \"THRESH\": 11.18,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORD4_5.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 48,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 1140.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0375,\n \
# \"BW\": 240,\n \"BTHRESH\": 0.001,\n \"THRESH\": 11.18,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORD5_5.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 48,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 1380.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0375,\n \
# \"BW\": 240,\n \"BTHRESH\": 0.001,\n \"THRESH\": 11.18,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORDSB1_4.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 6.0,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 900.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0019,\n \
# \"BW\": 1200,\n \"BTHRESH\": 0.001,\n \"THRESH\": 5.0,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORD_BeamPos_0.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 48,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 900.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0375,\n \
# \"BW\": 1200,\n \"BTHRESH\": 0.001,\n \"THRESH\": 5,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORD_BeamPos_1.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 48,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 900.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0375,\n \
# \"BW\": 1200,\n \"BTHRESH\": 0.001,\n \"THRESH\": 5,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
27 changes: 27 additions & 0 deletions zdm/data/Surveys/CHORD_BeamPos_10.ecsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# %ECSV 1.0
# ---
# datatype:
# - {name: TNS, datatype: string}
# - {name: BW, datatype: float64}
# - {name: DM, datatype: float64}
# - {name: DMG, datatype: float64}
# - {name: FBAR, datatype: float64}
# - {name: FRES, datatype: float64}
# - {name: Gb, datatype: string, subtype: 'float64[null]'}
# - {name: Gl, datatype: string, subtype: 'float64[null]'}
# - {name: SNR, datatype: float64}
# - {name: SNRTHRESH, datatype: float64}
# - {name: THRESH, datatype: float64}
# - {name: TRES, datatype: float64}
# - {name: WIDTH, datatype: float64}
# - {name: XC, datatype: string}
# - {name: XDec, datatype: string}
# - {name: XRA, datatype: string}
# - {name: Z, datatype: float64}
# meta: !!omap
# - {survey_data: "{\n \"observing\": {\n \"NORM_FRB\": 0,\n \"TOBS\": 1\n },\n \
# \"telescope\": {\n \"BEAM\": \"IGNORE\",\n \"DIAM\": 48,\n \"BMETHOD\": 0,\n \
# \"FBAR\": 900.0,\n \"NBEAMS\": 1,\n \"TRES\": 1.0,\n \"FRES\": 0.0375,\n \
# \"BW\": 1200,\n \"BTHRESH\": 0.001,\n \"THRESH\": 5,\n \"NBINS\": 10\n }\n}"}
# schema: astropy-2.0
TNS BW DM DMG FBAR FRES Gb Gl SNR SNRTHRESH THRESH TRES WIDTH XC XDec XRA Z
Loading
Loading