Basic example¶
In this notebook we provide a quick run-through of the basic usage of ASTRA, that will be explored in detail in the following Sections.
This will do the following steps:
- Load data from disk
- Remove activity-sensitive lines
- Construct a telluric model and mask the affacted wavelength regions
- Construct a stellar model using those observations
This will store the data products under a provided directory and it will allow for an a posterior load of disk products (to avoid multiple reconstructions of the templates).
In [1]:
Copied!
from pathlib import Path
from ASTRA.data_objects import DataClassManager
from ASTRA.data_objects.DataClass import DataClass
from ASTRA.Instruments import ESPRESSO
from ASTRA.Quality_Control.activity_indicators import Indicators
from ASTRA.template_creation.StellarModel import StellarModel
from ASTRA.template_creation.TelluricModel import TelluricModel
from ASTRA.utils.choices import TELLURIC_CREATION_MODE
storage_path = Path("tmp")
manager = DataClassManager()
manager.start()
d: DataClass = manager.DataClass(
list(Path("/home/amiguel/spectra_collection/ESPRESSO/proxima").glob("*.fits")),
storage_path=storage_path,
instrument=ESPRESSO,
)
inds = Indicators()
d.remove_activity_lines(inds)
ModelTell = TelluricModel(
usage_mode="individual",
user_configs={"CREATION_MODE": TELLURIC_CREATION_MODE.telfit},
root_folder_path=storage_path,
)
ModelTell.Generate_Model(
dataClass=d,
telluric_configs={},
force_computation=False,
store_templates=True,
)
d.remove_telluric_features(ModelTell)
stell = StellarModel(
storage_path,
user_configs={},
)
stell.Generate_Model(
dataClass=d,
template_configs={},
)
from pathlib import Path
from ASTRA.data_objects import DataClassManager
from ASTRA.data_objects.DataClass import DataClass
from ASTRA.Instruments import ESPRESSO
from ASTRA.Quality_Control.activity_indicators import Indicators
from ASTRA.template_creation.StellarModel import StellarModel
from ASTRA.template_creation.TelluricModel import TelluricModel
from ASTRA.utils.choices import TELLURIC_CREATION_MODE
storage_path = Path("tmp")
manager = DataClassManager()
manager.start()
d: DataClass = manager.DataClass(
list(Path("/home/amiguel/spectra_collection/ESPRESSO/proxima").glob("*.fits")),
storage_path=storage_path,
instrument=ESPRESSO,
)
inds = Indicators()
d.remove_activity_lines(inds)
ModelTell = TelluricModel(
usage_mode="individual",
user_configs={"CREATION_MODE": TELLURIC_CREATION_MODE.telfit},
root_folder_path=storage_path,
)
ModelTell.Generate_Model(
dataClass=d,
telluric_configs={},
force_computation=False,
store_templates=True,
)
d.remove_telluric_features(ModelTell)
stell = StellarModel(
storage_path,
user_configs={},
)
stell.Generate_Model(
dataClass=d,
template_configs={},
)
2025-04-14 21:27:00.552 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:216 - Generating internal configs of - 2025-04-14 21:27:00.558 | INFO | ASTRA.utils.UserConfigs:receive_user_inputs:221 - Checking for any parameter that will take default value 2025-04-14 21:27:00.560 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <SAVE_DISK_SPACE> using the default value: DISK_SAVE_MODE.DISABLED 2025-04-14 21:27:00.562 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <WORKING_MODE> using the default value: WORKING_MODE.ONE_SHOT 2025-04-14 21:27:00.568 | INFO | ASTRA.data_objects.DataClass:__init__:126 - DataClass opening 3 files from a list/tuple 2025-04-14 21:27:00.571 | INFO | ASTRA.base_models.Frame:__init__:253 - Creating frame from: /home/amiguel/spectra_collection/ESPRESSO/proxima/r.ESPRE.2019-07-03T01:43:39.634_S2D_A.fits 2025-04-14 21:27:00.573 | WARNING | ASTRA.Components.SpectrumComponent:regenerate_order_status:96 - Resetting order status of Frame - ESPRESSO 2025-04-14 21:27:00.594 | DEBUG | ASTRA.base_models.Frame:assess_bad_orders:711 - Rejecting spectral orders 2025-04-14 21:27:00.598 | INFO | ASTRA.base_models.Frame:assess_bad_orders:741 - Frame -6292580960432662955 rejected 37 orders for having SNR smaller than 5: 0-36 2025-04-14 21:27:00.715 | INFO | ASTRA.base_models.Frame:__init__:253 - Creating frame from: /home/amiguel/spectra_collection/ESPRESSO/proxima/r.ESPRE.2019-07-14T02:07:49.063_S2D_A.fits 2025-04-14 21:27:00.717 | WARNING | ASTRA.Components.SpectrumComponent:regenerate_order_status:96 - Resetting order status of Frame - ESPRESSO 2025-04-14 21:27:00.994 | DEBUG | ASTRA.base_models.Frame:assess_bad_orders:711 - Rejecting spectral orders 2025-04-14 21:27:00.998 | INFO | ASTRA.base_models.Frame:assess_bad_orders:741 - Frame -2977376033459950602 rejected 15 orders for having SNR smaller than 5: 0-12, 32-33 2025-04-14 21:27:01.000 | INFO | ASTRA.base_models.Frame:__init__:253 - Creating frame from: /home/amiguel/spectra_collection/ESPRESSO/proxima/r.ESPRE.2019-07-20T01:43:40.032_S2D_A.fits 2025-04-14 21:27:01.003 | WARNING | ASTRA.Components.SpectrumComponent:regenerate_order_status:96 - Resetting order status of Frame - ESPRESSO 2025-04-14 21:27:01.019 | DEBUG | ASTRA.base_models.Frame:assess_bad_orders:711 - Rejecting spectral orders 2025-04-14 21:27:01.022 | INFO | ASTRA.base_models.Frame:assess_bad_orders:741 - Frame -7145805177571901523 rejected 16 orders for having SNR smaller than 5: 0-13, 32-33 2025-04-14 21:27:01.024 | DEBUG | ASTRA.data_objects.DataClass:__init__:154 - Selected 3 observations from disk 2025-04-14 21:27:01.026 | INFO | ASTRA.data_objects.DataClass:_collect_MetaData:369 - Collecting MetaData from the observations 2025-04-14 21:27:01.028 | WARNING | ASTRA.data_objects.Target:__init__:73 - Target dictionary not found in <None> 2025-04-14 21:27:01.029 | DEBUG | ASTRA.data_objects.Target:clean_targ_list:98 - Parsing through loaded OBJECTs 2025-04-14 21:27:01.031 | INFO | ASTRA.data_objects.Target:__init__:92 - Validated target to be V V645 Cen 2025-04-14 21:27:01.033 | INFO | ASTRA.data_objects.DataClass:show_loadedData_table:885 - -------------------------------------------------------------------- -------------------------------------------------------------------- subInstrument Total OBS Valid OBS [warnings] INVALID OBS -------------------------------------------------------------------- ESPRESSO18 0 0 [0] 0 ESPRESSO19 3 3 [0] 0 Total 3 3 [0] 0 -------------------------------------------------------------------- 2025-04-14 21:27:01.034 | INFO | ASTRA.data_objects.DataClass:load_instrument_extra_information:894 - Checking if the instrument has extra data to load 2025-04-14 21:27:01.036 | INFO | ASTRA.data_objects.DataClass:load_instrument_extra_information:901 - Current instrument does not need to load anything from the outside 2025-04-14 21:27:01.046 | INFO | ASTRA.data_objects.DataClass:remove_activity_lines:216 - Computing activity windows for each RV measurements 2025-04-14 21:27:01.051 | INFO | ASTRA.base_models.TemplateFramework:__init__:72 - Starting Telluric Model 2025-04-14 21:27:01.052 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:216 - Generating internal configs of BASE - TemplateFramework 2025-04-14 21:27:01.054 | DEBUG | ASTRA.utils.UserConfigs:update_configs_with_values:198 - Configuration <CREATION_MODE> taking the value: TELLURIC_CREATION_MODE.telfit 2025-04-14 21:27:01.054 | INFO | ASTRA.utils.UserConfigs:receive_user_inputs:221 - Checking for any parameter that will take default value 2025-04-14 21:27:01.055 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <SAVE_DISK_SPACE> using the default value: DISK_SAVE_MODE.DISABLED 2025-04-14 21:27:01.056 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <WORKING_MODE> using the default value: WORKING_MODE.ONE_SHOT 2025-04-14 21:27:01.057 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <APPLICATION_MODE> using the default value: TELLURIC_APPLICATION_MODE.removal 2025-04-14 21:27:01.058 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <EXTENSION_MODE> using the default value: TELLURIC_EXTENSION.LINES 2025-04-14 21:27:01.060 | INFO | ASTRA.template_creation.TelluricModel:__init__:91 - Starting Telluric Model 2025-04-14 21:27:01.061 | DEBUG | ASTRA.base_models.TemplateFramework:Generate_Model:138 - Starting the creation of Telluric models! 2025-04-14 21:27:01.061 | INFO | ASTRA.base_models.TemplateFramework:Generate_Model:141 - Attempting to load previous Templates from disk before creating them 2025-04-14 21:27:01.063 | DEBUG | ASTRA.base_models.TemplateFramework:load_templates_from_disk:178 - Searching in : tmp/templates/Telluric for TELLURIC_CREATION_MODE.telfit 2025-04-14 21:27:01.063 | INFO | ASTRA.template_creation.TelluricModel:_find_templates_from_disk:180 - Loading Telluric template from disk inside directory 2025-04-14 21:27:01.063 | INFO | ASTRA.template_creation.TelluricModel:_find_templates_from_disk:181 - tmp/templates/Telluric 2025-04-14 21:27:01.064 | INFO | ASTRA.template_creation.TelluricModel:_find_templates_from_disk:192 - Found 0 available templates: [] of type TELLURIC_CREATION_MODE.telfit 2025-04-14 21:27:01.065 | CRITICAL | ASTRA.template_creation.TelluricModel:_find_templates_from_disk:199 - Could not find templates to load! 2025-04-14 21:27:01.065 | INFO | ASTRA.base_models.TemplateFramework:Generate_Model:145 - No templates to load from disk. Creating all from scratch 2025-04-14 21:27:01.066 | INFO | ASTRA.template_creation.TelluricModel:_compute_template:205 - Using template of type: TELLURIC_CREATION_MODE.telfit 2025-04-14 21:27:01.067 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:216 - Generating internal configs of telfit-Telluric from ESPRESSO18 2025-04-14 21:27:01.068 | INFO | ASTRA.utils.UserConfigs:receive_user_inputs:221 - Checking for any parameter that will take default value 2025-04-14 21:27:01.069 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <SAVE_DISK_SPACE> using the default value: DISK_SAVE_MODE.DISABLED 2025-04-14 21:27:01.070 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <WORKING_MODE> using the default value: WORKING_MODE.ONE_SHOT 2025-04-14 21:27:01.072 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <continuum_percentage_drop> using the default value: 1 2025-04-14 21:27:01.074 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <force_download> using the default value: False 2025-04-14 21:27:01.075 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <inverse_mask> using the default value: False 2025-04-14 21:27:01.077 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <atmosphere_profile> using the default value: GDAS 2025-04-14 21:27:01.078 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FIT_MODEL> using the default value: False 2025-04-14 21:27:01.079 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <TELFIT_HUMIDITY_THRESHOLD> using the default value: -1 2025-04-14 21:27:01.080 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FIT_WAVELENGTH_STEP_SIZE> using the default value: 0.001 2025-04-14 21:27:01.080 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <PARAMS_TO_FIT> using the default value: ['pressure', 'humidity'] 2025-04-14 21:27:01.081 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <USE_GRID_OF_TRANSMITTANCE> using the default value: False 2025-04-14 21:27:01.081 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <GRID_MAIN_PATH> using the default value: None 2025-04-14 21:27:01.082 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <IND_WATER_MASK_THRESHOLD> using the default value: 100000000.0 2025-04-14 21:27:01.084 | WARNING | ASTRA.Components.SpectrumComponent:regenerate_order_status:96 - Resetting order status of telfit-Telluric from ESPRESSO18 2025-04-14 21:27:01.085 | DEBUG | ASTRA.template_creation.telluric_templates.Telluric_Template:load_information_from_DataClass:166 - Template telfit-Telluric from ESPRESSO18 loading data from the dataClass 2025-04-14 21:27:01.086 | WARNING | ASTRA.template_creation.telluric_templates.Telluric_Template:_load_BERV_info:200 - ESPRESSO18 has no valid observations. Not computing telluric template 2025-04-14 21:27:01.091 | INFO | ASTRA.template_creation.telluric_templates.Telluric_Template:create_telluric_template:313 - Starting creation of Telluric template from ESPRESSO18 2025-04-14 21:27:01.092 | WARNING | ASTRA.template_creation.telluric_templates.Telluric_Template:_search_reference_frame:256 - ESPRESSO18 has no valid observations. Not computing telluric template 2025-04-14 21:27:01.093 | WARNING | ASTRA.base_models.Template_Model:_base_checks_for_template_creation:102 - Template will not be created. Check previous error messages 2025-04-14 21:27:01.094 | INFO | ASTRA.template_creation.TelluricModel:_compute_template:205 - Using template of type: TELLURIC_CREATION_MODE.telfit 2025-04-14 21:27:01.094 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:216 - Generating internal configs of telfit-Telluric from ESPRESSO19 2025-04-14 21:27:01.095 | INFO | ASTRA.utils.UserConfigs:receive_user_inputs:221 - Checking for any parameter that will take default value 2025-04-14 21:27:01.096 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <SAVE_DISK_SPACE> using the default value: DISK_SAVE_MODE.DISABLED 2025-04-14 21:27:01.096 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <WORKING_MODE> using the default value: WORKING_MODE.ONE_SHOT 2025-04-14 21:27:01.097 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <continuum_percentage_drop> using the default value: 1 2025-04-14 21:27:01.097 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <force_download> using the default value: False 2025-04-14 21:27:01.098 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <inverse_mask> using the default value: False 2025-04-14 21:27:01.098 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <atmosphere_profile> using the default value: GDAS 2025-04-14 21:27:01.099 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FIT_MODEL> using the default value: False 2025-04-14 21:27:01.099 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <TELFIT_HUMIDITY_THRESHOLD> using the default value: -1 2025-04-14 21:27:01.100 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FIT_WAVELENGTH_STEP_SIZE> using the default value: 0.001 2025-04-14 21:27:01.102 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <PARAMS_TO_FIT> using the default value: ['pressure', 'humidity'] 2025-04-14 21:27:01.103 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <USE_GRID_OF_TRANSMITTANCE> using the default value: False 2025-04-14 21:27:01.104 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <GRID_MAIN_PATH> using the default value: None 2025-04-14 21:27:01.105 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <IND_WATER_MASK_THRESHOLD> using the default value: 100000000.0 2025-04-14 21:27:01.106 | WARNING | ASTRA.Components.SpectrumComponent:regenerate_order_status:96 - Resetting order status of telfit-Telluric from ESPRESSO19 2025-04-14 21:27:01.107 | DEBUG | ASTRA.template_creation.telluric_templates.Telluric_Template:load_information_from_DataClass:166 - Template telfit-Telluric from ESPRESSO19 loading data from the dataClass 2025-04-14 21:27:01.118 | DEBUG | ASTRA.template_creation.telluric_templates.Telluric_Template:_generate_model_parameters:150 - Generating the parameters of the model applied in telfit-Telluric from ESPRESSO19 2025-04-14 21:27:01.119 | INFO | ASTRA.ModelParameters.Model:generate_priors:20 - Generating priors of the model' parameters 2025-04-14 21:27:01.134 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_generate_model_parameters:723 - telfit-Telluric from ESPRESSO19 not fitting temperature. Fixing it to initial guess 2025-04-14 21:27:01.136 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_generate_model_parameters:723 - telfit-Telluric from ESPRESSO19 not fitting co2. Fixing it to initial guess 2025-04-14 21:27:01.137 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_generate_model_parameters:723 - telfit-Telluric from ESPRESSO19 not fitting ch4. Fixing it to initial guess 2025-04-14 21:27:01.139 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_generate_model_parameters:723 - telfit-Telluric from ESPRESSO19 not fitting n2o. Fixing it to initial guess 2025-04-14 21:27:01.141 | INFO | ASTRA.template_creation.telluric_templates.Telluric_Template:create_telluric_template:313 - Starting creation of Telluric template from ESPRESSO19 2025-04-14 21:27:01.144 | DEBUG | ASTRA.template_creation.telluric_templates.Telluric_Template:_search_reference_frame:271 - Using Relative humidity as the selection criterion for reference observation 2025-04-14 21:27:01.154 | INFO | ASTRA.template_creation.telluric_templates.Telluric_Template:_search_reference_frame:300 - Telluric Template from ESPRESSO19 using Frame of ESPRESSO : ESPRESSO19 data (2019-07-03T01:43:39.634; ID = -6292580960432662955) as the reference 2025-04-14 21:27:01.155 | INFO | ASTRA.template_creation.telluric_templates.Telluric_Template:create_telluric_template:336 - Starting telluric template creation, with reference ID = -6292580960432662955 2025-04-14 21:27:01.156 | WARNING | ASTRA.ModelParameters.Parameter:disable_param:263 - Attempting to disable param that is already disabled: temperature 2025-04-14 21:27:01.157 | WARNING | ASTRA.ModelParameters.Parameter:disable_param:263 - Attempting to disable param that is already disabled: co2 2025-04-14 21:27:01.159 | WARNING | ASTRA.ModelParameters.Parameter:disable_param:263 - Attempting to disable param that is already disabled: ch4 2025-04-14 21:27:01.160 | WARNING | ASTRA.ModelParameters.Parameter:disable_param:263 - Attempting to disable param that is already disabled: n2o 2025-04-14 21:27:01.164 | DEBUG | ASTRA.template_creation.telluric_templates.telluric_from_telfit:create_telluric_template:602 - Parameters in use: ['temperature', 'pressure', 'humidity', 'co2', 'ch4', 'n2o'] 2025-04-14 21:27:01.165 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:create_telluric_template:603 - Using params: [280.64, 750, 20.0, 385.34, 1819.0, 325.1] /home/amiguel/development/ASTRA/.venv/lib/python3.12/site-packages/pysynphot/locations.py:47: UserWarning: PYSYN_CDBS is undefined; functionality will be SEVERELY crippled. warnings.warn("PYSYN_CDBS is undefined; functionality will be SEVERELY " /home/amiguel/development/ASTRA/.venv/lib/python3.12/site-packages/pysynphot/locations.py:346: UserWarning: Extinction files not found in extinction warnings.warn('Extinction files not found in %s' % (extdir, )) /home/amiguel/development/ASTRA/.venv/lib/python3.12/site-packages/pysynphot/refs.py:117: UserWarning: No graph or component tables found; functionality will be SEVERELY crippled. No files found for http://ssb.stsci.edu/cdbs_open/cdbs/mtab/*_tmg.fits warnings.warn('No graph or component tables found; ' /home/amiguel/development/ASTRA/.venv/lib/python3.12/site-packages/pysynphot/refs.py:124: UserWarning: No thermal tables found, no thermal calculations can be performed. No files found for http://ssb.stsci.edu/cdbs_open/cdbs/mtab/*_tmt.fits warnings.warn('No thermal tables found, ' 2025-04-14 21:27:03.614 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:configure_modeler:367 - Configuring the Telfit modeler for Frame of ESPRESSO : ESPRESSO19 data (2019-07-03T01:43:39.634; ID = -6292580960432662955) 2025-04-14 21:27:03.615 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_prepare_GDAS_data:280 - Preparing GDAS data load! 2025-04-14 21:27:03.616 | DEBUG | ASTRA.internals.cache:__init__:26 - Launching new DB connection 2025-04-14 21:27:03.622 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_prepare_GDAS_data:287 - Launching GDAS profile downloader 2025-04-14 21:27:03.623 | WARNING | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_prepare_GDAS_data:293 - Iterating over other possible frames to search for a working reference 2025-04-14 21:27:03.624 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_prepare_GDAS_data:317 - Starting loop to retrive GDAS profile 2025-04-14 21:27:03.634 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_prepare_GDAS_data:328 - Using cached version of the GDAS profile 2025-04-14 21:27:03.635 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:_prepare_GDAS_data:361 - Finished setup of GDAS profile 2025-04-14 21:27:03.638 | INFO | ASTRA.template_creation.telluric_templates.telluric_from_telfit:configure_modeler:422 - Finished configurating the modeler 2025-04-14 21:27:48.705 | INFO | ASTRA.utils.telluric_utilities.binary_mask_from_template:create_binary_template:16 - Converting from transmittance spectra to binary mask! 2025-04-14 21:27:48.965 | INFO | ASTRA.template_creation.telluric_templates.Telluric_Template:_compute_wave_blocks:385 - Creating list of blocked features due to tellurics 2025-04-14 21:27:48.967 | INFO | ASTRA.template_creation.telluric_templates.Telluric_Template:_compute_wave_blocks:387 - Extending telluric features with the mode: <TELLURIC_EXTENSION.LINES> 2025-04-14 21:27:52.759 | INFO | ASTRA.base_models.TemplateFramework:store_templates_to_disk:277 - Storing templates from <Telluric> under the directory 2025-04-14 21:27:52.760 | INFO | ASTRA.base_models.TemplateFramework:store_templates_to_disk:281 - tmp/templates/Telluric 2025-04-14 21:27:52.761 | INFO | ASTRA.base_models.Template_Model:trigger_data_storage:95 - The template was not created. Storing nothing to disk 2025-04-14 21:27:52.762 | INFO | ASTRA.base_models.Template_Model:store_template:119 - Storing telfit-Telluric from ESPRESSO19 to disk 2025-04-14 21:27:52.763 | WARNING | ASTRA.base_models.Template_Model:store_template:135 - Disabled removal of old disk files! 2025-04-14 21:28:26.200 | DEBUG | ASTRA.template_creation.telluric_templates.Telluric_Template:store_template:597 - Storing template to tmp/templates/Telluric/telfit_Telluric_ESPRESSO19.fits /home/amiguel/development/ASTRA/.venv/lib/python3.12/site-packages/pysynphot/locations.py:47: UserWarning: PYSYN_CDBS is undefined; functionality will be SEVERELY crippled. warnings.warn("PYSYN_CDBS is undefined; functionality will be SEVERELY " /home/amiguel/development/ASTRA/.venv/lib/python3.12/site-packages/pysynphot/locations.py:346: UserWarning: Extinction files not found in extinction warnings.warn('Extinction files not found in %s' % (extdir, )) /home/amiguel/development/ASTRA/.venv/lib/python3.12/site-packages/pysynphot/refs.py:117: UserWarning: No graph or component tables found; functionality will be SEVERELY crippled. No files found for http://ssb.stsci.edu/cdbs_open/cdbs/mtab/*_tmg.fits warnings.warn('No graph or component tables found; ' /home/amiguel/development/ASTRA/.venv/lib/python3.12/site-packages/pysynphot/refs.py:124: UserWarning: No thermal tables found, no thermal calculations can be performed. No files found for http://ssb.stsci.edu/cdbs_open/cdbs/mtab/*_tmt.fits warnings.warn('No thermal tables found, ' 2025-04-14 21:28:30.783 | INFO | ASTRA.base_models.TemplateFramework:__init__:72 - Starting Stellar Model 2025-04-14 21:28:30.784 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:216 - Generating internal configs of SpectralModel - Stellar 2025-04-14 21:28:30.785 | INFO | ASTRA.utils.UserConfigs:receive_user_inputs:221 - Checking for any parameter that will take default value 2025-04-14 21:28:30.786 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <SAVE_DISK_SPACE> using the default value: DISK_SAVE_MODE.DISABLED 2025-04-14 21:28:30.786 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <WORKING_MODE> using the default value: WORKING_MODE.ONE_SHOT 2025-04-14 21:28:30.787 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <CREATION_MODE> using the default value: STELLAR_CREATION_MODE.Sum 2025-04-14 21:28:30.788 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <ALIGNEMENT_RV_SOURCE> using the default value: DRS 2025-04-14 21:28:30.789 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <PREVIOUS_SBART_PATH> using the default value: 2025-04-14 21:28:30.790 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <USE_MERGED_RVS> using the default value: False 2025-04-14 21:28:30.791 | INFO | ASTRA.template_creation.StellarModel:Generate_Model:165 - Using CCF RVs as the basis for the creation of the stellar models 2025-04-14 21:28:30.793 | DEBUG | ASTRA.base_models.TemplateFramework:Generate_Model:138 - Starting the creation of Stellar models! 2025-04-14 21:28:30.793 | INFO | ASTRA.base_models.TemplateFramework:Generate_Model:141 - Attempting to load previous Templates from disk before creating them 2025-04-14 21:28:30.794 | DEBUG | ASTRA.base_models.TemplateFramework:load_templates_from_disk:178 - Searching in : tmp/templates/Stellar/Iteration_0 for STELLAR_CREATION_MODE.Sum 2025-04-14 21:28:30.795 | INFO | ASTRA.base_models.TemplateFramework:_find_templates_from_disk:248 - Loading Stellar template of type Sum from disk inside directory 2025-04-14 21:28:30.796 | INFO | ASTRA.base_models.TemplateFramework:_find_templates_from_disk:253 - tmp/templates/Stellar/Iteration_0 2025-04-14 21:28:30.797 | INFO | ASTRA.base_models.TemplateFramework:_find_templates_from_disk:255 - Found 0 available templates: [] of type Sum 2025-04-14 21:28:30.798 | WARNING | ASTRA.base_models.TemplateFramework:_find_templates_from_disk:263 - Could not find template to load in tmp/templates/Stellar/Iteration_0 2025-04-14 21:28:30.799 | INFO | ASTRA.base_models.TemplateFramework:Generate_Model:145 - No templates to load from disk. Creating all from scratch 2025-04-14 21:28:30.824 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:216 - Generating internal configs of Sum-Stellar from ESPRESSO18 2025-04-14 21:28:30.825 | DEBUG | ASTRA.utils.UserConfigs:update_configs_with_values:198 - Configuration <ALIGNEMENT_RV_SOURCE> taking the value: DRS 2025-04-14 21:28:30.826 | INFO | ASTRA.utils.UserConfigs:receive_user_inputs:221 - Checking for any parameter that will take default value 2025-04-14 21:28:30.827 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <SAVE_DISK_SPACE> using the default value: DISK_SAVE_MODE.DISABLED 2025-04-14 21:28:30.828 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <WORKING_MODE> using the default value: WORKING_MODE.ONE_SHOT 2025-04-14 21:28:30.828 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <CONSTANT_RV_GUESS> using the default value: False 2025-04-14 21:28:30.830 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <NUMBER_WORKERS> using the default value: 1 2025-04-14 21:28:30.831 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <MEMORY_SAVE_MODE> using the default value: False 2025-04-14 21:28:30.831 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <MINIMUM_NUMBER_OBS> using the default value: 3 2025-04-14 21:28:30.832 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_threshold_for_template> using the default value: 1 2025-04-14 21:28:30.833 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <INTERPOL_MODE> using the default value: SPECTRA_INTERPOL_MODE.SPLINES 2025-04-14 21:28:30.833 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <SPLINE_TYPE> using the default value: SPLINE_INTERPOL_MODE.CUBIC_SPLINE 2025-04-14 21:28:30.833 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <INTERPOLATION_ERR_PROP> using the default value: INTERPOLATION_ERR_PROP.interpolation 2025-04-14 21:28:30.834 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_SMOOTH_CONFIGS> using the default value: FLUX_SMOOTH_CONFIGS.NONE 2025-04-14 21:28:30.835 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_SMOOTH_WINDOW_SIZE> using the default value: 15 2025-04-14 21:28:30.835 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_SMOOTH_DEG> using the default value: 2 2025-04-14 21:28:30.835 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_SMOOTH_ORDER> using the default value: FLUX_SMOOTH_ORDER.AFTER 2025-04-14 21:28:30.836 | WARNING | ASTRA.Components.SpectrumComponent:regenerate_order_status:96 - Resetting order status of Sum-Stellar from ESPRESSO18 2025-04-14 21:28:30.838 | INFO | ASTRA.template_creation.stellar_templates.Stellar_Template:create_stellar_template:132 - Starting creation of Stellar template from ESPRESSO18 2025-04-14 21:28:30.852 | CRITICAL | ASTRA.template_creation.stellar_templates.Stellar_Template:create_stellar_template:144 - ESPRESSO18 has no valid observations. Not computing Stellar template 2025-04-14 21:28:30.854 | WARNING | ASTRA.base_models.Template_Model:_base_checks_for_template_creation:102 - Template will not be created. Check previous error messages 2025-04-14 21:28:30.856 | WARNING | ASTRA.template_creation.StellarModel:_compute_template:197 - Key <ALIGNEMENT_RV_SOURCE> from Stellar Model over-riding the one from the template configs 2025-04-14 21:28:30.858 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:216 - Generating internal configs of Sum-Stellar from ESPRESSO19 2025-04-14 21:28:30.859 | DEBUG | ASTRA.utils.UserConfigs:update_configs_with_values:198 - Configuration <ALIGNEMENT_RV_SOURCE> taking the value: DRS 2025-04-14 21:28:30.860 | INFO | ASTRA.utils.UserConfigs:receive_user_inputs:221 - Checking for any parameter that will take default value 2025-04-14 21:28:30.862 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <SAVE_DISK_SPACE> using the default value: DISK_SAVE_MODE.DISABLED 2025-04-14 21:28:30.863 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <WORKING_MODE> using the default value: WORKING_MODE.ONE_SHOT 2025-04-14 21:28:30.864 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <CONSTANT_RV_GUESS> using the default value: False 2025-04-14 21:28:30.865 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <NUMBER_WORKERS> using the default value: 1 2025-04-14 21:28:30.866 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <MEMORY_SAVE_MODE> using the default value: False 2025-04-14 21:28:30.870 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <MINIMUM_NUMBER_OBS> using the default value: 3 2025-04-14 21:28:30.871 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_threshold_for_template> using the default value: 1 2025-04-14 21:28:30.873 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <INTERPOL_MODE> using the default value: SPECTRA_INTERPOL_MODE.SPLINES 2025-04-14 21:28:30.875 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <SPLINE_TYPE> using the default value: SPLINE_INTERPOL_MODE.CUBIC_SPLINE 2025-04-14 21:28:30.877 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <INTERPOLATION_ERR_PROP> using the default value: INTERPOLATION_ERR_PROP.interpolation 2025-04-14 21:28:30.878 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_SMOOTH_CONFIGS> using the default value: FLUX_SMOOTH_CONFIGS.NONE 2025-04-14 21:28:30.879 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_SMOOTH_WINDOW_SIZE> using the default value: 15 2025-04-14 21:28:30.880 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_SMOOTH_DEG> using the default value: 2 2025-04-14 21:28:30.881 | DEBUG | ASTRA.utils.UserConfigs:receive_user_inputs:228 - Configuration <FLUX_SMOOTH_ORDER> using the default value: FLUX_SMOOTH_ORDER.AFTER 2025-04-14 21:28:30.882 | WARNING | ASTRA.Components.SpectrumComponent:regenerate_order_status:96 - Resetting order status of Sum-Stellar from ESPRESSO19 2025-04-14 21:28:30.882 | INFO | ASTRA.template_creation.stellar_templates.Stellar_Template:create_stellar_template:132 - Starting creation of Stellar template from ESPRESSO19 2025-04-14 21:28:30.884 | INFO | ASTRA.template_creation.stellar_templates.Stellar_Template:create_stellar_template:162 - Evaluating spectral conditions to select the valid observations from ESPRESSO19 2025-04-14 21:28:31.022 | DEBUG | ASTRA.base_models.Frame:load_S2D_data:862 - Opening the S2D arrays from r.ESPRE.2019-07-20T01:43:40.032_S2D_A.fits 2025-04-14 21:28:31.059 | WARNING | ASTRA.Instruments.ESO_PIPELINE:load_ESO_DRS_S2D_data:327 - Not applying correction to blue-red flux balance! 2025-04-14 21:28:31.143 | DEBUG | ASTRA.base_models.Frame:build_mask:628 - Cleaning wavelength regions from ['ACTIVITY_INDICATOR', 'TELLURIC'] 2025-04-14 21:28:31.606 | DEBUG | ASTRA.base_models.Frame:build_mask:646 - Removed 2933 regions (11 + 2922) 2025-04-14 21:28:31.609 | DEBUG | ASTRA.base_models.Frame:build_mask:672 - Ensuring that we have increasing wavelengths 2025-04-14 21:28:31.636 | DEBUG | ASTRA.base_models.Frame:build_mask:678 - Took 0.4599037170410156 seconds (0.004516124725341797 + 0.45538759231567383) 2025-04-14 21:28:31.639 | DEBUG | ASTRA.base_models.Frame:assess_bad_orders:711 - Rejecting spectral orders 2025-04-14 21:28:31.664 | DEBUG | ASTRA.base_models.Frame:assess_bad_orders:724 - Frame -7145805177571901523 rejected 16 orders due for having less than 0.25 valid pixels: 0-13, 32-33 2025-04-14 21:28:31.668 | INFO | ASTRA.base_models.Frame:assess_bad_orders:741 - Frame -7145805177571901523 rejected 16 orders for having SNR smaller than 5: 0-13, 32-33 2025-04-14 21:28:32.061 | INFO | ASTRA.template_creation.stellar_templates.sum_stellar:launch_parallel:140 - Using observation from Frame of ESPRESSO : ESPRESSO19 data (2019-07-20T01:43:40.031; ID = -7145805177571901523) as a basis for stellar template construction 2025-04-14 21:28:32.063 | INFO | ASTRA.template_creation.stellar_templates.sum_stellar:launch_parallel:145 - Using frameIDs: [-6292580960432662955, -2977376033459950602, -7145805177571901523] 2025-04-14 21:28:32.064 | INFO | ASTRA.template_creation.stellar_templates.sum_stellar:launch_parallel:157 - Launching 1 workers! 2025-04-14 21:28:32.064 | INFO | ASTRA.template_creation.stellar_templates.Stellar_Template:convert_to_shared_mem:553 - Putting the stellar template in shared memory 2025-04-14 21:28:32.155 | DEBUG | ASTRA.base_models.Frame:load_S2D_data:862 - Opening the S2D arrays from r.ESPRE.2019-07-03T01:43:39.634_S2D_A.fits 2025-04-14 21:28:32.192 | WARNING | ASTRA.Instruments.ESO_PIPELINE:load_ESO_DRS_S2D_data:327 - Not applying correction to blue-red flux balance! 2025-04-14 21:28:32.268 | DEBUG | ASTRA.base_models.Frame:build_mask:628 - Cleaning wavelength regions from ['ACTIVITY_INDICATOR', 'TELLURIC'] 2025-04-14 21:28:32.543 | DEBUG | ASTRA.base_models.Frame:build_mask:646 - Removed 2933 regions (11 + 2922) 2025-04-14 21:28:32.545 | DEBUG | ASTRA.base_models.Frame:build_mask:672 - Ensuring that we have increasing wavelengths 2025-04-14 21:28:32.562 | DEBUG | ASTRA.base_models.Frame:build_mask:678 - Took 0.2728245258331299 seconds (0.002228975296020508 + 0.2705955505371094) 2025-04-14 21:28:32.565 | DEBUG | ASTRA.base_models.Frame:assess_bad_orders:711 - Rejecting spectral orders 2025-04-14 21:28:32.593 | DEBUG | ASTRA.base_models.Frame:assess_bad_orders:724 - Frame -6292580960432662955 rejected 37 orders due for having less than 0.25 valid pixels: 0-36 2025-04-14 21:28:32.597 | INFO | ASTRA.base_models.Frame:assess_bad_orders:741 - Frame -6292580960432662955 rejected 37 orders for having SNR smaller than 5: 0-36 2025-04-14 21:28:33.717 | DEBUG | ASTRA.base_models.Frame:load_S2D_data:862 - Opening the S2D arrays from r.ESPRE.2019-07-14T02:07:49.063_S2D_A.fits 2025-04-14 21:28:33.756 | WARNING | ASTRA.Instruments.ESO_PIPELINE:load_ESO_DRS_S2D_data:327 - Not applying correction to blue-red flux balance! 2025-04-14 21:28:33.841 | DEBUG | ASTRA.base_models.Frame:build_mask:628 - Cleaning wavelength regions from ['ACTIVITY_INDICATOR', 'TELLURIC'] 2025-04-14 21:28:34.148 | DEBUG | ASTRA.base_models.Frame:build_mask:646 - Removed 2933 regions (11 + 2922) 2025-04-14 21:28:34.150 | DEBUG | ASTRA.base_models.Frame:build_mask:672 - Ensuring that we have increasing wavelengths 2025-04-14 21:28:34.182 | DEBUG | ASTRA.base_models.Frame:build_mask:678 - Took 0.3039066791534424 seconds (0.0019614696502685547 + 0.30194520950317383) 2025-04-14 21:28:34.187 | DEBUG | ASTRA.base_models.Frame:assess_bad_orders:711 - Rejecting spectral orders 2025-04-14 21:28:34.248 | DEBUG | ASTRA.base_models.Frame:assess_bad_orders:724 - Frame -2977376033459950602 rejected 15 orders due for having less than 0.25 valid pixels: 0-12, 32-33 2025-04-14 21:28:34.252 | INFO | ASTRA.base_models.Frame:assess_bad_orders:741 - Frame -2977376033459950602 rejected 15 orders for having SNR smaller than 5: 0-12, 32-33 2025-04-14 21:28:36.764 | INFO | ASTRA.template_creation.stellar_templates.sum_stellar:launch_parallel:217 - Updating template mask 2025-04-14 21:28:36.830 | DEBUG | ASTRA.template_creation.stellar_templates.sum_stellar:launch_parallel:226 - Ensuring increasing wavelenghs in the stellar template 2025-04-14 21:28:36.853 | INFO | ASTRA.template_creation.stellar_templates.sum_stellar:launch_parallel:239 - Construction of stellar template took 4.698757886886597 2025-04-14 21:28:36.858 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 0 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.859 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 1 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.860 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 2 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.861 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 3 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.862 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 4 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.864 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 5 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.866 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 6 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.867 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 7 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.869 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 8 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.869 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 9 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.870 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 10 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.871 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 11 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.872 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 12 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.872 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 13 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.873 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 14 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.874 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 15 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.874 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 16 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.874 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 17 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.875 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 18 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.875 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 19 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.876 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 20 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.877 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 21 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.878 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 22 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.878 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 23 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.879 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 24 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.880 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 25 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.881 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 26 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.882 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 27 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.884 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 28 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.885 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 29 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.886 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 30 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.888 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 31 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.890 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 32 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.892 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 33 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.893 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 34 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.895 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 35 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.897 | WARNING | ASTRA.template_creation.stellar_templates.Stellar_Template:evaluate_bad_orders:306 - Stellar template rejecting order 36 due to having more than 9011/9111 pixels masked 2025-04-14 21:28:36.901 | INFO | ASTRA.template_creation.stellar_templates.sum_stellar:create_stellar_template:103 - Closing shared memory interfaces of the Stellar template 2025-04-14 21:28:36.904 | DEBUG | ASTRA.template_creation.stellar_templates.Stellar_Template:cleanup_shared_memory:578 - Cleaning the shared memory interfaces from the Stellar template creation 2025-04-14 21:28:36.905 | DEBUG | ASTRA.template_creation.stellar_templates.Stellar_Template:_close_workers:584 - Sum-Stellar from ESPRESSO19 closing the workers 2025-04-14 21:28:36.907 | DEBUG | ASTRA.template_creation.stellar_templates.Stellar_Template:_close_queues:601 - Sum-Stellar from ESPRESSO19 closing the communication queues 2025-04-14 21:28:36.909 | DEBUG | ASTRA.template_creation.stellar_templates.Stellar_Template:_close_shared_memory_arrays:590 - Sum-Stellar from ESPRESSO19 closing the shared memory array 2025-04-14 21:28:36.913 | INFO | ASTRA.base_models.TemplateFramework:store_templates_to_disk:277 - Storing templates from <Stellar> under the directory 2025-04-14 21:28:36.914 | INFO | ASTRA.base_models.TemplateFramework:store_templates_to_disk:281 - tmp/templates/Stellar/Iteration_0 2025-04-14 21:28:36.917 | INFO | ASTRA.base_models.Template_Model:trigger_data_storage:95 - The template was not created. Storing nothing to disk 2025-04-14 21:28:36.921 | INFO | ASTRA.base_models.Template_Model:store_template:119 - Storing Sum-Stellar from ESPRESSO19 to disk 2025-04-14 21:28:36.922 | WARNING | ASTRA.base_models.Template_Model:store_template:135 - Disabled removal of old disk files! 2025-04-14 21:28:37.015 | DEBUG | ASTRA.template_creation.stellar_templates.Stellar_Template:store_template:414 - Storing used filepaths to disk 2025-04-14 21:28:37.017 | INFO | ASTRA.template_creation.stellar_templates.Stellar_Template:_store_json_information:331 - Storing template flags to disk