#------------------------------------------------------------------------------- # Basic data reduction parameters #------------------------------------------------------------------------------- # Define AIPS input and output files aips_input = '/home/space2/rfi/si543' aips_output = 'output/' # idifits file names. The complete name is form by adding '.idifits' to them name_prefixes = ['si543a', 'si543b'] # AIPS user ID number in in decimal and extended-hexidecimal. # Use AIPS EHEX to obtain it aips_id = 8888 aips_ehexid = '6uw' # List of antennas to obtain total power spectra antennas = ['HN', 'LA', 'OV', 'PT', 'KP', 'BR', 'NL', 'SC', 'FD'] # List of polarizations to include, options are 'RR' and 'LL' stokes = ['RR'] # Version of the flag table to use when saving total power data # flagver = 0 uses the last flag table # flagver = -1 ignores the flags flagver = 0 # Band name and date to display on webpages band_name = 'S-band' date = '2015-11-01 01:15:00 UT' #------------------------------------------------------------------------------- # Output folder configuration - Advanced options #------------------------------------------------------------------------------- # Output folder used by python plotting script plots_output = 'plots/' # Folder to contain the website webpage_folder = 'website/' #------------------------------------------------------------------------------- # Total power plots parameters - Advanced options #------------------------------------------------------------------------------- # Normalization for the total power scan normalize = True # Normalization type. 'mean' is recommended. norm_method = 'mean' # Type of plot. 'envelope' is recommended. plot_type = 'envelope' # Make plot for each scan plot_single_scans = False