From 31db705d90da439752f6ae4a03ff7a84171bb7df Mon Sep 17 00:00:00 2001 From: Steven Murray Date: Fri, 2 Aug 2024 09:37:56 -0600 Subject: [PATCH] fix: fm capitalization --- hera_notebook_templates/notebooks/lststack.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hera_notebook_templates/notebooks/lststack.ipynb b/hera_notebook_templates/notebooks/lststack.ipynb index b18e0b9..d3e3505 100644 --- a/hera_notebook_templates/notebooks/lststack.ipynb +++ b/hera_notebook_templates/notebooks/lststack.ipynb @@ -166,8 +166,8 @@ "inpaint_sample_cov_fraction: float = 0.0 # Default zero uses variance, one uses full sample covariance\n", "inpaint_use_unbiased_estimator: bool = False # Default False slight over estimate of the covariance, but guaranteed to be non-negative\n", "\n", - "FM_low_freq: float = 87.5 # in MHz\n", - "FM_high_freq: float = 108.0 # in MHz\n", + "fm_low_freq: float = 87.5 # in MHz\n", + "fm_high_freq: float = 108.0 # in MHz\n", "\n", "# Flagging Configuration\n", "zscore_threshold: float = 5 # Value of |Z| above which data are flagged. \n", @@ -698,7 +698,7 @@ }, "outputs": [], "source": [ - "inpaint_bands = [(0, FM_low_freq), (FM_high_freq, np.inf)] # default below and above FM\n", + "inpaint_bands = [(0, fm_low_freq), (fm_high_freq, np.inf)] # default below and above FM\n", "\n", "# Get slices for the inpaint bands\n", "_inp = []\n",