diff --git a/.config b/.config index e2bbbb5b5..b15be9152 100644 --- a/.config +++ b/.config @@ -623,8 +623,8 @@ star_catalog_file: gaia_dr2_mag_11.5.npy ;star_catalog_band_ratios: 0.1,0.32,0.23,0.35 -; Platepar -; -------- +; Platepar and mask +; ----------------- ; Name of the JSON file with recalibrated platepars for constant intervals of FF ; files @@ -639,6 +639,8 @@ platepar_remote_name: platepar_latest.cal ; Name of the directory on the server which contains platepars remote_platepar_dir: platepars +; Toggle downloading remote mask +mask_download_permissive: true ; Auto recalibration ; ------------------ diff --git a/RMS/ConfigReader.py b/RMS/ConfigReader.py index 762d7b285..b192c8739 100644 --- a/RMS/ConfigReader.py +++ b/RMS/ConfigReader.py @@ -1323,8 +1323,6 @@ def parseFireballDetection(config, parser): if parser.has_option(section, "max_lines"): config.max_lines = parser.getint(section, "max_lines") - if parser.has_option(section, "min_lines"): - config.max_lines = parser.getint(section, "max_lines") diff --git a/Utils/AuditConfig.py b/Utils/AuditConfig.py index 032bbda63..9260cdb1d 100644 --- a/Utils/AuditConfig.py +++ b/Utils/AuditConfig.py @@ -18,14 +18,21 @@ # Python 2 import ConfigParser as configparser -OMIT_FROM_CONFIG = {'lat', - 'lon', - 'location', - 'altitude', - 'event_monitor_db_name', - 'force_v4l2', - 'mask', - 'platepar_name' +OMIT_FROM_CONFIG = {'lat', # Deprecated DFNS Station + 'lon', # Deprecated DFNS Station + 'location', # Deprecated DFNS Station + 'altitude', # Deprecated DFNS Station + 'event_monitor_db_name', # Should not be exposed + 'force_v4l2', # Deprecated + 'mask', # Should not be exposed + 'platepar_name', # Should not be exposed + 'brightness', # Deprecated + 'contrast', # Deprecated + 'dark_file', # Deprecated + 'use_dark', # Deprecated + 'mask_remote_name', # Should not be exposed + 'remote_mask_dir', # Should not be exposed + 'platepar_template_dir' # Should not be exposed }