diff --git a/LiCSAlert.yml b/LiCSAlert.yml index dd33084d..e0c0a954 100755 --- a/LiCSAlert.yml +++ b/LiCSAlert.yml @@ -5,16 +5,15 @@ channels: dependencies: - python=3.9 # general - - matplotlib # - - numpy + - matplotlib=3.6 # + - numpy=1.23 - spyder # interactive plotting of ICASAR is designed to work with Spyder - - scikit-image # for LiCSAlert - - - hdbscan # for ICASAR - - scikit-learn - - simplekml - - geopy + - hdbscan=0.8 # for ICASAR + - scikit-learn=1.2 + - scikit-image=0.19 # for LiCSAlert + - simplekml=1.3 + - geopy=2.3 - astropy # For LiCSBAS - not always needed. - beautifulsoup4 diff --git a/LiCSAlert_batch_mode_examples.py b/LiCSAlert_batch_mode_examples.py index 9f8de814..e36c44e4 100755 --- a/LiCSAlert_batch_mode_examples.py +++ b/LiCSAlert_batch_mode_examples.py @@ -15,47 +15,49 @@ import licsalert from licsalert.monitoring_functions import LiCSAlert_monitoring_mode -#ICASAR_path = Path("/home/matthew/university_work/15_my_software_releases/ICASAR-2.13/") # location of ICASAR functions -ICASAR_path = Path("/home/matthew/university_work/crucial_1000gb/01_blind_signal_separation_python/13_ICASAR/ICASAR_GitHub/") # development version +ICASAR_pkg_dir = Path("/home/matthew/crucial_1000gb/university_work/15_my_software_releases/ICASAR-2.13/") # location of ICASAR functions +#ICASAR_pkg_dir = Path("/home/matthew/university_work/crucial_1000gb/01_blind_signal_separation_python/13_ICASAR/ICASAR_GitHub/") # development version +LiCSAlert_pkg_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub") # path to LiCSAlert. Could also be this directory. +#%% Settings -#%% +licsalert_settings = {"baseline_end" : "20170101", # end baseline stage at YYYYMMDD, need to be before the last acquisition of LiCSAlert will never monitoring anyhting. + "figure_intermediate" : False, # if set to True, a figure is produced for all time steps in the monitoring data, which can be time consuming. + "figure_type" : 'both', # either 'window' or 'png' (to save as pngs), or 'both' + "downsample_run" : 0.5, # data can be downsampled to speed things up + "downsample_plot" : 0.5, # and a 2nd time for fast plotting. Note this is applied to the restuls of the first downsampling, so is compound + "residual_type" : 'cumulative'} # controls the type of residual used in the lower plot. Either cumulative or window +icasar_settings = {"n_comp" : 5, # number of components to recover with ICA (ie the number of PCA sources to keep) + "bootstrapping_param" : (200, 0), # (number of runs with bootstrapping, number of runs without bootstrapping) "hdbscan_param" : (35, 10), # (min_cluster_size, min_samples) + "tsne_param" : (30, 12), # (perplexity, early_exaggeration) + "ica_param" : (1e-2, 150), # (tolerance, max iterations) + "hdbscan_param" : (100,10), # (min_cluster_size, min_samples) Discussed in more detail in Mcinnes et al. (2017). min_cluster_size sets the smallest collection of points that can be considered a cluster. min_samples sets how conservative the clustering is. With larger values, more points will be considered noise. + "ifgs_format" : 'cum'} # can be 'all', 'inc' (incremental - short temporal baselines), or 'cum' (cumulative - relative to first acquisition) -licsalert_settings = {"baseline_end" : "20170101", # end baseline stage at YYYYMMDD - "out_folder" : Path("LiCSAlert_campi_flegrei"), # pathlib Path - "figure_intermediate" : False, # if set to True, a figure is produced for all time steps in the monitoring data, which can be time consuming. - "figure_type" : 'png', # either 'window' or 'png' (to save as pngs) - "downsample_run" : 0.5, # data can be downsampled to speed things up - "downsample_plot" : 0.5, # and a 2nd time for fast plotting. Note this is applied to the restuls of the first downsampling, so is compound - "residual_type" : 'cumulative'} # controls the type of residual used in the lower plot. Either cumulative or window -icasar_settings = {"n_comp" : 5, # number of components to recover with ICA (ie the number of PCA sources to keep) - "bootstrapping_param" : (200, 0), # (number of runs with bootstrapping, number of runs without bootstrapping) "hdbscan_param" : (35, 10), # (min_cluster_size, min_samples) - "tsne_param" : (30, 12), # (perplexity, early_exaggeration) - "ica_param" : (1e-2, 150), # (tolerance, max iterations) - "hdbscan_param" : (100,10), # (min_cluster_size, min_samples) Discussed in more detail in Mcinnes et al. (2017). min_cluster_size sets the smallest collection of points that can be considered a cluster. min_samples sets how conservative the clustering is. With larger values, more points will be considered noise. - "ifgs_format" : 'cum'} - #"load_fastICA_results" : True} # If all the FastICA runs already exisit, setting this to True speeds up ICASAR as they don't need to be recomputed. +licsalert_dir = Path("./") # outdir parent +volcano = 'campi_flegrei_example' # outdir final +licsbas_dir = Path("./022D_04826_121209") # input data +LiCSAlert_monitoring_mode(region = None, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, + licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, + licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) + -region = None # optional -volcano = 'campi_flegrei_example' # name of outdir -LiCSAlert_pkg_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub") -ICASAR_pkg_dir = ICASAR_path +#%% We can also make the LiCSAlert figure for all times, but this is slow +licsalert_settings['figure_intermediate'] = True # Turn on figures for all times +licsalert_settings['figure_type'] = 'png' # There will be too many figure windows if this is 'window' or 'both' ! -licsbas_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/022D_04826_121209") -licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") +volcano = 'campi_flegrei_example_all_times' # new outdir -LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, +LiCSAlert_monitoring_mode(region = None, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - - \ No newline at end of file diff --git a/campi_flegrei_example/20210912/03_reconstruction_20210906_20210912.png b/campi_flegrei_example/20210912/03_reconstruction_20210906_20210912.png index 681f7e76..80ddad7d 100644 Binary files a/campi_flegrei_example/20210912/03_reconstruction_20210906_20210912.png and b/campi_flegrei_example/20210912/03_reconstruction_20210906_20210912.png differ diff --git a/campi_flegrei_example/20210912/04_residual_20210906_20210912.png b/campi_flegrei_example/20210912/04_residual_20210906_20210912.png index aaf25ccf..13b5cf25 100644 Binary files a/campi_flegrei_example/20210912/04_residual_20210906_20210912.png and b/campi_flegrei_example/20210912/04_residual_20210906_20210912.png differ diff --git a/campi_flegrei_example/20210912/LiCSAlert_figure_with_268_monitoring_interferograms.png b/campi_flegrei_example/20210912/LiCSAlert_figure_with_268_monitoring_interferograms.png new file mode 100644 index 00000000..5822d0be Binary files /dev/null and b/campi_flegrei_example/20210912/LiCSAlert_figure_with_268_monitoring_interferograms.png differ diff --git a/campi_flegrei_example/20210912/licsalert_results.pkl b/campi_flegrei_example/20210912/licsalert_results.pkl index 687b208d..1d7240c7 100644 Binary files a/campi_flegrei_example/20210912/licsalert_results.pkl and b/campi_flegrei_example/20210912/licsalert_results.pkl differ diff --git a/campi_flegrei_example/20210912/volcano_status.txt b/campi_flegrei_example/20210912/volcano_status.txt new file mode 100644 index 00000000..fb19fa04 --- /dev/null +++ b/campi_flegrei_example/20210912/volcano_status.txt @@ -0,0 +1,2 @@ +0.06477005990551767 +2.8163270865607837 diff --git a/campi_flegrei_example/ICASAR_results/02_PCA_sources_correlations.png b/campi_flegrei_example/ICASAR_results/02_PCA_sources_correlations.png index 9ee0cef5..c513ff8d 100644 Binary files a/campi_flegrei_example/ICASAR_results/02_PCA_sources_correlations.png and b/campi_flegrei_example/ICASAR_results/02_PCA_sources_correlations.png differ diff --git a/campi_flegrei_example/ICASAR_results/03_ICA_sources_correlations.png b/campi_flegrei_example/ICASAR_results/03_ICA_sources_correlations.png index 1b5eb125..d1bf43f8 100644 Binary files a/campi_flegrei_example/ICASAR_results/03_ICA_sources_correlations.png and b/campi_flegrei_example/ICASAR_results/03_ICA_sources_correlations.png differ diff --git a/campi_flegrei_example/ICASAR_results/03_ICA_sources_time.png b/campi_flegrei_example/ICASAR_results/03_ICA_sources_time.png index 3c679278..5c7d123a 100644 Binary files a/campi_flegrei_example/ICASAR_results/03_ICA_sources_time.png and b/campi_flegrei_example/ICASAR_results/03_ICA_sources_time.png differ diff --git a/campi_flegrei_example/ICASAR_results/04_clustering_and_manifold_results.png b/campi_flegrei_example/ICASAR_results/04_clustering_and_manifold_results.png index bcba892d..a146bdef 100644 Binary files a/campi_flegrei_example/ICASAR_results/04_clustering_and_manifold_results.png and b/campi_flegrei_example/ICASAR_results/04_clustering_and_manifold_results.png differ diff --git a/campi_flegrei_example/ICASAR_results/FastICA_results.pkl b/campi_flegrei_example/ICASAR_results/FastICA_results.pkl index 96887340..78c0bbe4 100644 Binary files a/campi_flegrei_example/ICASAR_results/FastICA_results.pkl and b/campi_flegrei_example/ICASAR_results/FastICA_results.pkl differ diff --git a/campi_flegrei_example/ICASAR_results/ICASAR_results.pkl b/campi_flegrei_example/ICASAR_results/ICASAR_results.pkl index 0659ec0c..eadfa00d 100644 Binary files a/campi_flegrei_example/ICASAR_results/ICASAR_results.pkl and b/campi_flegrei_example/ICASAR_results/ICASAR_results.pkl differ diff --git a/campi_flegrei_example/ICASAR_results/ICs.kmz b/campi_flegrei_example/ICASAR_results/ICs.kmz index df8ddc54..0e2ee779 100644 Binary files a/campi_flegrei_example/ICASAR_results/ICs.kmz and b/campi_flegrei_example/ICASAR_results/ICs.kmz differ diff --git a/campi_flegrei_example/LiCSAlert_history.txt b/campi_flegrei_example/LiCSAlert_history.txt index 1324dcdb..0ae0f3f4 100644 --- a/campi_flegrei_example/LiCSAlert_history.txt +++ b/campi_flegrei_example/LiCSAlert_history.txt @@ -3,21 +3,14 @@ -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:30:30 -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. -LiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:33:32 +LiCSAlert is being run for campi_flegrei_example at 04/04/2023 17:16:38 Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments +LiCSAlert is opening a LiCSBAS directory. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. LiCSAlert_preprocessing: mean centering the interferograms before downsampling Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. -LiCSBAS date Past baseline LiCSAlert +Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. +LiCSBAS date Past baseline LiCSAlert To process 20141031 no 20141218 no 20150111 no @@ -77,41440 +70,540 @@ LiCSBAS date Past baseline LiCSAlert 20161219 no 20161225 no 20161231 no -20170112 yes pending -20170118 yes pending -20170124 yes pending -20170130 yes pending -20170205 yes pending -20170211 yes pending -20170223 yes pending -20170301 yes pending -20170307 yes pending -20170313 yes pending -20170319 yes pending -20170325 yes pending -20170331 yes pending -20170406 yes pending -20170412 yes pending -20170418 yes pending -20170424 yes pending -20170430 yes pending -20170506 yes pending -20170512 yes pending -20170518 yes pending -20170524 yes pending -20170530 yes pending -20170605 yes pending -20170611 yes pending -20170617 yes pending -20170623 yes pending -20170629 yes pending -20170705 yes pending -20170711 yes pending -20170717 yes pending -20170723 yes pending -20170729 yes pending -20170804 yes pending -20170816 yes pending -20170822 yes pending -20170828 yes pending -20170903 yes pending -20170909 yes pending -20170915 yes pending -20170921 yes pending -20170927 yes pending -20171009 yes pending -20171015 yes pending -20171021 yes pending -20171027 yes pending -20171102 yes pending -20171108 yes pending -20171114 yes pending -20171120 yes pending -20171202 yes pending -20171208 yes pending -20171214 yes pending -20171226 yes pending -20180101 yes pending -20180107 yes pending -20180113 yes pending -20180119 yes pending -20180125 yes pending -20180131 yes pending -20180206 yes pending -20180218 yes pending -20180224 yes pending -20180302 yes pending -20180308 yes pending -20180314 yes pending -20180320 yes pending -20180326 yes pending -20180401 yes pending -20180407 yes pending -20180413 yes pending -20180419 yes pending -20180425 yes pending -20180501 yes pending -20180507 yes pending -20180513 yes pending -20180519 yes pending -20180525 yes pending -20180531 yes pending -20180606 yes pending -20180612 yes pending -20180618 yes pending -20180630 yes pending -20180712 yes pending -20180718 yes pending -20180724 yes pending -20180730 yes pending -20180805 yes pending -20180811 yes pending -20180817 yes pending -20180823 yes pending -20180829 yes pending -20180904 yes pending -20180910 yes pending -20180916 yes pending -20180922 yes pending -20180928 yes pending -20181004 yes pending -20181010 yes pending -20181016 yes pending -20181022 yes pending -20181028 yes pending -20181109 yes pending -20181115 yes pending -20181121 yes pending -20181127 yes pending -20181203 yes pending -20181209 yes pending -20181215 yes pending -20181221 yes pending -20181227 yes pending -20190102 yes pending -20190108 yes pending -20190114 yes pending -20190120 yes pending -20190126 yes pending -20190201 yes pending -20190207 yes pending -20190213 yes pending -20190225 yes pending -20190303 yes pending -20190309 yes pending -20190321 yes pending -20190402 yes pending -20190408 yes pending -20190414 yes pending -20190420 yes pending -20190426 yes pending -20190502 yes pending -20190508 yes pending -20190520 yes pending -20190526 yes pending -20190601 yes pending -20190607 yes pending -20190613 yes pending -20190625 yes pending -20190701 yes pending -20190707 yes pending -20190713 yes pending -20190719 yes pending -20190725 yes pending -20190731 yes pending -20190806 yes pending -20190812 yes pending -20190818 yes pending -20190824 yes pending -20190830 yes pending -20190905 yes pending -20190911 yes pending -20190917 yes pending -20190923 yes pending -20191005 yes pending -20191011 yes pending -20191017 yes pending -20191023 yes pending -20191029 yes pending -20191104 yes pending -20191116 yes pending -20191122 yes pending -20191128 yes pending -20191204 yes pending -20191210 yes pending -20191216 yes pending -20191222 yes pending -20191228 yes pending -20200103 yes pending -20200109 yes pending -20200115 yes pending -20200121 yes pending -20200127 yes pending -20200202 yes pending -20200208 yes pending -20200214 yes pending -20200220 yes pending -20200226 yes pending -20200303 yes pending -20200309 yes pending -20200315 yes pending -20200321 yes pending -20200402 yes pending -20200408 yes pending -20200414 yes pending -20200420 yes pending -20200426 yes pending -20200502 yes pending -20200508 yes pending -20200514 yes pending -20200520 yes pending -20200526 yes pending -20200601 yes pending -20200607 yes pending -20200613 yes pending -20200619 yes pending -20200625 yes pending -20200701 yes pending -20200707 yes pending -20200713 yes pending -20200719 yes pending -20200725 yes pending -20200731 yes pending -20200806 yes pending -20200812 yes pending -20200818 yes pending -20200824 yes pending -20200830 yes pending -20200905 yes pending -20200911 yes pending -20200917 yes pending -20200923 yes pending -20200929 yes pending -20201005 yes pending -20201011 yes pending -20201017 yes pending -20201023 yes pending -20201029 yes pending -20201104 yes pending -20201110 yes pending -20201116 yes pending -20201122 yes pending -20201128 yes pending -20201204 yes pending -20201210 yes pending -20201216 yes pending -20201222 yes pending -20201228 yes pending -20210103 yes pending -20210109 yes pending -20210115 yes pending -20210121 yes pending -20210127 yes pending -20210202 yes pending -20210208 yes pending -20210214 yes pending -20210220 yes pending -20210226 yes pending -20210304 yes pending -20210310 yes pending -20210316 yes pending -20210322 yes pending -20210328 yes pending -20210403 yes pending -20210409 yes pending -20210415 yes pending -20210421 yes pending -20210427 yes pending -20210503 yes pending -20210509 yes pending -20210515 yes pending -20210521 yes pending -20210527 yes pending -20210602 yes pending -20210608 yes pending -20210614 yes pending -20210620 yes pending -20210626 yes pending -20210702 yes pending -20210708 yes pending -20210714 yes pending -20210720 yes pending -20210726 yes pending -20210801 yes pending -20210807 yes pending -20210813 yes pending -20210819 yes pending -20210825 yes pending -20210831 yes pending -20210906 yes pending -20210912 yes pending -LiCSAlert status: 1) Run ICASAR: True 2) Run LiCSAlert: True - -Running ICASAR. -**************************************** -Entering post mortem debugging... -**************************************** -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(808)load_or_create_ICASAR_results() - 806  spatial_ICASAR_data['dem'] = displacement_r2['dem'] - 807  ---> 808  sources, tcs, residual, Iq, n_clusters, S_all_info, r2_ifg_means = ICASAR(spatial_data = spatial_ICASAR_data, # Run ICASAR (slow)) - 809  out_folder = out_dir, **ICASAR_settings, - 810  ica_verbose = 'short') - - [... skipping 21 hidden frame(s)] - - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - [... skipping 2 hidden frame(s)] - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - [... skipping 1 hidden frame(s)] - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(135)LiCSAlert_monitoring_mode() - 133  - 134  # 4a: either load or make the ICs (from icasar) ---> 135  icasar_sources, icasar_mask, LiCSAlert_settings['baseline_end_ifg_n'] = load_or_create_ICASAR_results(LiCSAlert_status['run_ICASAR'], displacement_r2, tbaseline_info, # either load or create the ICASAR sources - 136  LiCSAlert_settings['baseline_end'], volcano_dir / "ICASAR_results", ICASAR_settings) - 137  - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(808)load_or_create_ICASAR_results() - 806  spatial_ICASAR_data['dem'] = displacement_r2['dem'] - 807  ---> 808  sources, tcs, residual, Iq, n_clusters, S_all_info, r2_ifg_means = ICASAR(spatial_data = spatial_ICASAR_data, # Run ICASAR (slow)) - 809  out_folder = out_dir, **ICASAR_settings, - 810  ica_verbose = 'short') - -*** Newest frame -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:34:56 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:34:56 - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - -LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert - -20141031 20141031 no no - -20141218 20141218 no no - -20150111 20150111 no no - -20150123 20150123 no no - -20150216 20150216 no no - -20150228 20150228 no no - -20150312 20150312 no no - -20150324 20150324 no no - -20150405 20150405 no no - -20150429 20150429 no no - -20150511 20150511 no no - -20150523 20150523 no no - -20150604 20150604 no no - -20150710 20150710 no no - -20150722 20150722 no no - -20150815 20150815 no no - -20150920 20150920 no no - -20151002 20151002 no no - -20151014 20151014 no no - -20151107 20151107 no no - -20151119 20151119 no no - -20151201 20151201 no no - -20151213 20151213 no no - -20151225 20151225 no no - -20160106 20160106 no no - -20160118 20160118 no no - -20160211 20160211 no no - -20160223 20160223 no no - -20160306 20160306 no no - -20160318 20160318 no no - -20160330 20160330 no no - -20160411 20160411 no no - -20160505 20160505 no no - -20160517 20160517 no no - -20160529 20160529 no no - -20160610 20160610 no no - -20160704 20160704 no no - -20160716 20160716 no no - -20160728 20160728 no no - -20160809 20160809 no no - -20160821 20160821 no no - -20160902 20160902 no no - -20160914 20160914 no no - -20160926 20160926 no no - -20161002 20161002 no no - -20161008 20161008 no no - -20161014 20161014 no no - -20161020 20161020 no no - -20161026 20161026 no no - -20161101 20161101 no no - -20161107 20161107 no no - -20161113 20161113 no no - -20161119 20161119 no no - -20161201 20161201 no no - -20161207 20161207 no no - -20161213 20161213 no no - -20161219 20161219 no no - -20161225 20161225 no no - -20161231 20161231 no no - -20170112 20170112 yes yes pendingpending - -20170118 20170118 yes yes pendingpending - -20170124 20170124 yes yes pendingpending - -20170130 20170130 yes yes pendingpending - -20170205 20170205 yes yes pendingpending - -20170211 20170211 yes yes pendingpending - -20170223 20170223 yes yes pendingpending - -20170301 20170301 yes yes pendingpending - -20170307 20170307 yes yes pendingpending - -20170313 20170313 yes yes pendingpending - -20170319 20170319 yes yes pendingpending - -20170325 20170325 yes yes pendingpending - -20170331 20170331 yes yes pendingpending - -20170406 20170406 yes yes pendingpending - -20170412 20170412 yes yes pendingpending - -20170418 20170418 yes yes pendingpending - -20170424 20170424 yes yes pendingpending - -20170430 20170430 yes yes pendingpending - -20170506 20170506 yes yes pendingpending - -20170512 20170512 yes yes pendingpending - -20170518 20170518 yes yes pendingpending - -20170524 20170524 yes yes pendingpending - -20170530 20170530 yes yes pendingpending - -20170605 20170605 yes yes pendingpending - -20170611 20170611 yes yes pendingpending - -20170617 20170617 yes yes pendingpending - -20170623 20170623 yes yes pendingpending - -20170629 20170629 yes yes pendingpending - -20170705 20170705 yes yes pendingpending - -20170711 20170711 yes yes pendingpending - -20170717 20170717 yes yes pendingpending - -20170723 20170723 yes yes pendingpending - -20170729 20170729 yes yes pendingpending - -20170804 20170804 yes yes pendingpending - -20170816 20170816 yes yes pendingpending - -20170822 20170822 yes yes pendingpending - -20170828 20170828 yes yes pendingpending - -20170903 20170903 yes yes pendingpending - -20170909 20170909 yes yes pendingpending - -20170915 20170915 yes yes pendingpending - -20170921 20170921 yes yes pendingpending - -20170927 20170927 yes yes pendingpending - -20171009 20171009 yes yes pendingpending - -20171015 20171015 yes yes pendingpending - -20171021 20171021 yes yes pendingpending - -20171027 20171027 yes yes pendingpending - -20171102 20171102 yes yes pendingpending - -20171108 20171108 yes yes pendingpending - -20171114 20171114 yes yes pendingpending - -20171120 20171120 yes yes pendingpending - -20171202 20171202 yes yes pendingpending - -20171208 20171208 yes yes pendingpending - -20171214 20171214 yes yes pendingpending - -20171226 20171226 yes yes pendingpending - -20180101 20180101 yes yes pendingpending - -20180107 20180107 yes yes pendingpending - -20180113 20180113 yes yes pendingpending - -20180119 20180119 yes yes pendingpending - -20180125 20180125 yes yes pendingpending - -20180131 20180131 yes yes pendingpending - -20180206 20180206 yes yes pendingpending - -20180218 20180218 yes yes pendingpending - -20180224 20180224 yes yes pendingpending - -20180302 20180302 yes yes pendingpending - -20180308 20180308 yes yes pendingpending - -20180314 20180314 yes yes pendingpending - -20180320 20180320 yes yes pendingpending - -20180326 20180326 yes yes pendingpending - -20180401 20180401 yes yes pendingpending - -20180407 20180407 yes yes pendingpending - -20180413 20180413 yes yes pendingpending - -20180419 20180419 yes yes pendingpending - -20180425 20180425 yes yes pendingpending - -20180501 20180501 yes yes pendingpending - -20180507 20180507 yes yes pendingpending - -20180513 20180513 yes yes pendingpending - -20180519 20180519 yes yes pendingpending - -20180525 20180525 yes yes pendingpending - -20180531 20180531 yes yes pendingpending - -20180606 20180606 yes yes pendingpending - -20180612 20180612 yes yes pendingpending - -20180618 20180618 yes yes pendingpending - -20180630 20180630 yes yes pendingpending - -20180712 20180712 yes yes pendingpending - -20180718 20180718 yes yes pendingpending - -20180724 20180724 yes yes pendingpending - -20180730 20180730 yes yes pendingpending - -20180805 20180805 yes yes pendingpending - -20180811 20180811 yes yes pendingpending - -20180817 20180817 yes yes pendingpending - -20180823 20180823 yes yes pendingpending - -20180829 20180829 yes yes pendingpending - -20180904 20180904 yes yes pendingpending - -20180910 20180910 yes yes pendingpending - -20180916 20180916 yes yes pendingpending - -20180922 20180922 yes yes pendingpending - -20180928 20180928 yes yes pendingpending - -20181004 20181004 yes yes pendingpending - -20181010 20181010 yes yes pendingpending - -20181016 20181016 yes yes pendingpending - -20181022 20181022 yes yes pendingpending - -20181028 20181028 yes yes pendingpending - -20181109 20181109 yes yes pendingpending - -20181115 20181115 yes yes pendingpending - -20181121 20181121 yes yes pendingpending - -20181127 20181127 yes yes pendingpending - -20181203 20181203 yes yes pendingpending - -20181209 20181209 yes yes pendingpending - -20181215 20181215 yes yes pendingpending - -20181221 20181221 yes yes pendingpending - -20181227 20181227 yes yes pendingpending - -20190102 20190102 yes yes pendingpending - -20190108 20190108 yes yes pendingpending - -20190114 20190114 yes yes pendingpending - -20190120 20190120 yes yes pendingpending - -20190126 20190126 yes yes pendingpending - -20190201 20190201 yes yes pendingpending - -20190207 20190207 yes yes pendingpending - -20190213 20190213 yes yes pendingpending - -20190225 20190225 yes yes pendingpending - -20190303 20190303 yes yes pendingpending - -20190309 20190309 yes yes pendingpending - -20190321 20190321 yes yes pendingpending - -20190402 20190402 yes yes pendingpending - -20190408 20190408 yes yes pendingpending - -20190414 20190414 yes yes pendingpending - -20190420 20190420 yes yes pendingpending - -20190426 20190426 yes yes pendingpending - -20190502 20190502 yes yes pendingpending - -20190508 20190508 yes yes pendingpending - -20190520 20190520 yes yes pendingpending - -20190526 20190526 yes yes pendingpending - -20190601 20190601 yes yes pendingpending - -20190607 20190607 yes yes pendingpending - -20190613 20190613 yes yes pendingpending - -20190625 20190625 yes yes pendingpending - -20190701 20190701 yes yes pendingpending - -20190707 20190707 yes yes pendingpending - -20190713 20190713 yes yes pendingpending - -20190719 20190719 yes yes pendingpending - -20190725 20190725 yes yes pendingpending - -20190731 20190731 yes yes pendingpending - -20190806 20190806 yes yes pendingpending - -20190812 20190812 yes yes pendingpending - -20190818 20190818 yes yes pendingpending - -20190824 20190824 yes yes pendingpending - -20190830 20190830 yes yes pendingpending - -20190905 20190905 yes yes pendingpending - -20190911 20190911 yes yes pendingpending - -20190917 20190917 yes yes pendingpending - -20190923 20190923 yes yes pendingpending - -20191005 20191005 yes yes pendingpending - -20191011 20191011 yes yes pendingpending - -20191017 20191017 yes yes pendingpending - -20191023 20191023 yes yes pendingpending - -20191029 20191029 yes yes pendingpending - -20191104 20191104 yes yes pendingpending - -20191116 20191116 yes yes pendingpending - -20191122 20191122 yes yes pendingpending - -20191128 20191128 yes yes pendingpending - -20191204 20191204 yes yes pendingpending - -20191210 20191210 yes yes pendingpending - -20191216 20191216 yes yes pendingpending - -20191222 20191222 yes yes pendingpending - -20191228 20191228 yes yes pendingpending - -20200103 20200103 yes yes pendingpending - -20200109 20200109 yes yes pendingpending - -20200115 20200115 yes yes pendingpending - -20200121 20200121 yes yes pendingpending - -20200127 20200127 yes yes pendingpending - -20200202 20200202 yes yes pendingpending - -20200208 20200208 yes yes pendingpending - -20200214 20200214 yes yes pendingpending - -20200220 20200220 yes yes pendingpending - -20200226 20200226 yes yes pendingpending - -20200303 20200303 yes yes pendingpending - -20200309 20200309 yes yes pendingpending - -20200315 20200315 yes yes pendingpending - -20200321 20200321 yes yes pendingpending - -20200402 20200402 yes yes pendingpending - -20200408 20200408 yes yes pendingpending - -20200414 20200414 yes yes pendingpending - -20200420 20200420 yes yes pendingpending - -20200426 20200426 yes yes pendingpending - -20200502 20200502 yes yes pendingpending - -20200508 20200508 yes yes pendingpending - -20200514 20200514 yes yes pendingpending - -20200520 20200520 yes yes pendingpending - -20200526 20200526 yes yes pendingpending - -20200601 20200601 yes yes pendingpending - -20200607 20200607 yes yes pendingpending - -20200613 20200613 yes yes pendingpending - -20200619 20200619 yes yes pendingpending - -20200625 20200625 yes yes pendingpending - -20200701 20200701 yes yes pendingpending - -20200707 20200707 yes yes pendingpending - -20200713 20200713 yes yes pendingpending - -20200719 20200719 yes yes pendingpending - -20200725 20200725 yes yes pendingpending - -20200731 20200731 yes yes pendingpending - -20200806 20200806 yes yes pendingpending - -20200812 20200812 yes yes pendingpending - -20200818 20200818 yes yes pendingpending - -20200824 20200824 yes yes pendingpending - -20200830 20200830 yes yes pendingpending - -20200905 20200905 yes yes pendingpending - -20200911 20200911 yes yes pendingpending - -20200917 20200917 yes yes pendingpending - -20200923 20200923 yes yes pendingpending - -20200929 20200929 yes yes pendingpending - -20201005 20201005 yes yes pendingpending - -20201011 20201011 yes yes pendingpending - -20201017 20201017 yes yes pendingpending - -20201023 20201023 yes yes pendingpending - -20201029 20201029 yes yes pendingpending - -20201104 20201104 yes yes pendingpending - -20201110 20201110 yes yes pendingpending - -20201116 20201116 yes yes pendingpending - -20201122 20201122 yes yes pendingpending - -20201128 20201128 yes yes pendingpending - -20201204 20201204 yes yes pendingpending - -20201210 20201210 yes yes pendingpending - -20201216 20201216 yes yes pendingpending - -20201222 20201222 yes yes pendingpending - -20201228 20201228 yes yes pendingpending - -20210103 20210103 yes yes pendingpending - -20210109 20210109 yes yes pendingpending - -20210115 20210115 yes yes pendingpending - -20210121 20210121 yes yes pendingpending - -20210127 20210127 yes yes pendingpending - -20210202 20210202 yes yes pendingpending - -20210208 20210208 yes yes pendingpending - -20210214 20210214 yes yes pendingpending - -20210220 20210220 yes yes pendingpending - -20210226 20210226 yes yes pendingpending - -20210304 20210304 yes yes pendingpending - -20210310 20210310 yes yes pendingpending - -20210316 20210316 yes yes pendingpending - -20210322 20210322 yes yes pendingpending - -20210328 20210328 yes yes pendingpending - -20210403 20210403 yes yes pendingpending - -20210409 20210409 yes yes pendingpending - -20210415 20210415 yes yes pendingpending - -20210421 20210421 yes yes pendingpending - -20210427 20210427 yes yes pendingpending - -20210503 20210503 yes yes pendingpending - -20210509 20210509 yes yes pendingpending - -20210515 20210515 yes yes pendingpending - -20210521 20210521 yes yes pendingpending - -20210527 20210527 yes yes pendingpending - -20210602 20210602 yes yes pendingpending - -20210608 20210608 yes yes pendingpending - -20210614 20210614 yes yes pendingpending - -20210620 20210620 yes yes pendingpending - -20210626 20210626 yes yes pendingpending - -20210702 20210702 yes yes pendingpending - -20210708 20210708 yes yes pendingpending - -20210714 20210714 yes yes pendingpending - -20210720 20210720 yes yes pendingpending - -20210726 20210726 yes yes pendingpending - -20210801 20210801 yes yes pendingpending - -20210807 20210807 yes yes pendingpending - -20210813 20210813 yes yes pendingpending - -20210819 20210819 yes yes pendingpending - -20210825 20210825 yes yes pendingpending - -20210831 20210831 yes yes pendingpending - -20210906 20210906 yes yes pendingpending - -20210912 20210912 yes yes pendingpending - -LiCSAlert status: 1) Run ICASAR: True 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: True 2) Run LiCSAlert: True - - -Running ICASAR. -Running ICASAR. - -From the data passed to ICASAR, I understand it to be spatial data (e.g. time series of images)From the data passed to ICASAR, I understand it to be spatial data (e.g. time series of images) - -As 'lons' and 'lats' have been provided, the ICs will be geocoded. As 'lons' and 'lats' have been provided, the ICs will be geocoded. - -Spatial patterns will be statitically independent and Spatial patterns will be statitically independent and The cumulative (single master) interferograms will be used. The cumulative (single master) interferograms will be used. - -Creating all possible variations of the time series (incremental/daisy chain, cumulative, and all possible). Creating all possible variations of the time series (incremental/daisy chain, cumulative, and all possible). - -When creating all interferograms, 59 were passed to the function, and these were found to make 1 connected networks. From these, 1000 interferograms were created. When creating all interferograms, 59 were passed to the function, and these were found to make 1 connected networks. From these, 1000 interferograms were created. - -This interferogram timeseries has 59 times and 8533 pixels. This interferogram timeseries has 59 times and 8533 pixels. - -This interferogram timeseries has 1000 times and 8533 pixels. This interferogram timeseries has 1000 times and 8533 pixels. - -This interferogram timeseries has 59 times and 8533 pixels. This interferogram timeseries has 59 times and 8533 pixels. - -Performing PCA to whiten the data....Performing PCA to whiten the data....Starting to create the 02_PCA_sources_correlations figure:Starting to create the 02_PCA_sources_correlations figure: - -Updating masks and ICA sources. Of the 8533 in the 1st set of sources and 8278 in the 2nd set of sources, 8270 are in both and can be used in the following step. Updating masks and ICA sources. Of the 8533 in the 1st set of sources and 8278 in the 2nd set of sources, 8270 are in both and can be used in the following step. - - Starting to calculate the 2D kernel density estimates for the signals. Completed Starting to calculate the 2D kernel density estimates for the signals. Completed 0 0 1 1 2 2 3 3 4 4 - - - - Starting to calculate the 2D kernel density estimates for the signals. Completed Starting to calculate the 2D kernel density estimates for the signals. Completed 0 0 1 1 2 2 3 3 4 4 - - - -Done. Done. - -Loading the results of multiple FastICA runs. Loading the results of multiple FastICA runs. - -Failed to open the results from the previous runs of FastICA. Switching 'load_fastICA_results' to False and trying to continue anyway. Failed to open the results from the previous runs of FastICA. Switching 'load_fastICA_results' to False and trying to continue anyway. - -No results were found for the multiple ICA runs, so these will now be performed. No results were found for the multiple ICA runs, so these will now be performed. - -FastICA progress with bootstrapping: FastICA progress with bootstrapping: FastICA algorithm converged in 45 iterations. FastICA algorithm converged in 45 iterations. - -0% 0% FastICA algorithm converged in 15 iterations. FastICA algorithm converged in 15 iterations. - -1% 1% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -1% 1% FastICA algorithm converged in 11 iterations. FastICA algorithm converged in 11 iterations. - -2% 2% FastICA algorithm converged in 32 iterations. FastICA algorithm converged in 32 iterations. - -2% 2% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -3% 3% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -3% 3% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -4% 4% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -4% 4% FastICA algorithm converged in 117 iterations. FastICA algorithm converged in 117 iterations. - -5% 5% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -5% 5% FastICA algorithm converged in 19 iterations. FastICA algorithm converged in 19 iterations. - -6% 6% FastICA algorithm converged in 14 iterations. FastICA algorithm converged in 14 iterations. - -6% 6% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -6% 6% FastICA algorithm converged in 20 iterations. FastICA algorithm converged in 20 iterations. - -7% 7% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -7% 7% FastICA algorithm converged in 50 iterations. FastICA algorithm converged in 50 iterations. - -8% 8% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -8% 8% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -8% 8% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -9% 9% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -9% 9% FastICA algorithm converged in 28 iterations. FastICA algorithm converged in 28 iterations. - -10% 10% FastICA algorithm converged in 19 iterations. FastICA algorithm converged in 19 iterations. - -10% 10% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -11% 11% FastICA algorithm converged in 98 iterations. FastICA algorithm converged in 98 iterations. - -11% 11% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -12% 12% FastICA algorithm converged in 35 iterations. FastICA algorithm converged in 35 iterations. - -12% 12% FastICA algorithm converged in 12 iterations. FastICA algorithm converged in 12 iterations. - -13% 13% FastICA algorithm converged in 10 iterations. FastICA algorithm converged in 10 iterations. - -13% 13% FastICA algorithm converged in 15 iterations. FastICA algorithm converged in 15 iterations. - -14% 14% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -14% 14% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -15% 15% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -15% 15% FastICA algorithm converged in 31 iterations. FastICA algorithm converged in 31 iterations. - -16% 16% FastICA algorithm converged in 37 iterations. FastICA algorithm converged in 37 iterations. - -16% 16% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -17% 17% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -17% 17% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -18% 18% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -18% 18% FastICA algorithm converged in 31 iterations. FastICA algorithm converged in 31 iterations. - -18% 18% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -19% 19% FastICA algorithm converged in 17 iterations. FastICA algorithm converged in 17 iterations. - -19% 19% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -20% 20% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -20% 20% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -21% 21% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -21% 21% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -22% 22% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -22% 22% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -23% 23% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -23% 23% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -24% 24% FastICA algorithm converged in 12 iterations. FastICA algorithm converged in 12 iterations. - -24% 24% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -25% 25% FastICA algorithm converged in 84 iterations. FastICA algorithm converged in 84 iterations. - -25% 25% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -25% 25% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -25% 25% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -26% 26% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -26% 26% FastICA algorithm converged in 87 iterations. FastICA algorithm converged in 87 iterations. - -27% 27% FastICA algorithm converged in 12 iterations. FastICA algorithm converged in 12 iterations. - -27% 27% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -28% 28% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -28% 28% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -28% 28% FastICA algorithm converged in 11 iterations. FastICA algorithm converged in 11 iterations. - -28% 28% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -29% 29% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -30% 30% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -30% 30% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -30% 30% FastICA algorithm converged in 92 iterations. FastICA algorithm converged in 92 iterations. - -31% 31% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -31% 31% FastICA algorithm converged in 95 iterations. FastICA algorithm converged in 95 iterations. - -32% 32% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -32% 32% FastICA algorithm converged in 10 iterations. FastICA algorithm converged in 10 iterations. - -33% 33% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -33% 33% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -34% 34% FastICA algorithm converged in 15 iterations. FastICA algorithm converged in 15 iterations. - -34% 34% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -34% 34% FastICA algorithm converged in 12 iterations. FastICA algorithm converged in 12 iterations. - -35% 35% FastICA algorithm converged in 10 iterations. FastICA algorithm converged in 10 iterations. - -35% 35% FastICA algorithm converged in 29 iterations. FastICA algorithm converged in 29 iterations. - -36% 36% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -36% 36% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -36% 36% FastICA algorithm converged in 19 iterations. FastICA algorithm converged in 19 iterations. - -37% 37% FastICA algorithm converged in 18 iterations. FastICA algorithm converged in 18 iterations. - -37% 37% FastICA algorithm converged in 17 iterations. FastICA algorithm converged in 17 iterations. - -38% 38% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -38% 38% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -38% 38% FastICA algorithm converged in 10 iterations. FastICA algorithm converged in 10 iterations. - -39% 39% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -39% 39% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -40% 40% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -40% 40% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -40% 40% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -41% 41% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -41% 41% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -42% 42% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -42% 42% FastICA algorithm converged in 26 iterations. FastICA algorithm converged in 26 iterations. - -43% 43% FastICA algorithm converged in 10 iterations. FastICA algorithm converged in 10 iterations. - -43% 43% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -44% 44% FastICA algorithm converged in 19 iterations. FastICA algorithm converged in 19 iterations. - -44% 44% FastICA algorithm converged in 27 iterations. FastICA algorithm converged in 27 iterations. - -45% 45% FastICA algorithm converged in 12 iterations. FastICA algorithm converged in 12 iterations. - -45% 45% FastICA algorithm converged in 56 iterations. FastICA algorithm converged in 56 iterations. - -46% 46% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -46% 46% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -46% 46% FastICA algorithm converged in 10 iterations. FastICA algorithm converged in 10 iterations. - -47% 47% FastICA algorithm converged in 32 iterations. FastICA algorithm converged in 32 iterations. - -47% 47% FastICA algorithm converged in 105 iterations. FastICA algorithm converged in 105 iterations. - -48% 48% FastICA algorithm converged in 36 iterations. FastICA algorithm converged in 36 iterations. - -48% 48% FastICA algorithm converged in 16 iterations. FastICA algorithm converged in 16 iterations. - -49% 49% FastICA algorithm converged in 18 iterations. FastICA algorithm converged in 18 iterations. - -49% 49% FastICA algorithm converged in 34 iterations. FastICA algorithm converged in 34 iterations. - -50% 50% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -50% 50% FastICA algorithm converged in 11 iterations. FastICA algorithm converged in 11 iterations. - -51% 51% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -51% 51% FastICA algorithm converged in 15 iterations. FastICA algorithm converged in 15 iterations. - -51% 51% FastICA algorithm converged in 11 iterations. FastICA algorithm converged in 11 iterations. - -52% 52% FastICA algorithm converged in 21 iterations. FastICA algorithm converged in 21 iterations. - -52% 52% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -53% 53% FastICA algorithm converged in 16 iterations. FastICA algorithm converged in 16 iterations. - -53% 53% FastICA algorithm converged in 88 iterations. FastICA algorithm converged in 88 iterations. - -54% 54% FastICA algorithm converged in 10 iterations. FastICA algorithm converged in 10 iterations. - -54% 54% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -54% 54% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -54% 54% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -55% 55% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -55% 55% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -56% 56% FastICA algorithm converged in 35 iterations. FastICA algorithm converged in 35 iterations. - -56% 56% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -56% 56% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -57% 57% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -57% 57% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -57% 57% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -58% 58% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -59% 59% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -59% 59% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -60% 60% FastICA algorithm converged in 13 iterations. FastICA algorithm converged in 13 iterations. - -60% 60% FastICA algorithm converged in 13 iterations. FastICA algorithm converged in 13 iterations. - -61% 61% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -61% 61% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -62% 62% FastICA algorithm converged in 51 iterations. FastICA algorithm converged in 51 iterations. - -62% 62% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -63% 63% FastICA algorithm converged in 68 iterations. FastICA algorithm converged in 68 iterations. - -63% 63% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -64% 64% FastICA algorithm converged in 23 iterations. FastICA algorithm converged in 23 iterations. - -64% 64% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -64% 64% FastICA algorithm converged in 17 iterations. FastICA algorithm converged in 17 iterations. - -65% 65% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -65% 65% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -65% 65% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -66% 66% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -66% 66% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -67% 67% FastICA algorithm converged in 21 iterations. FastICA algorithm converged in 21 iterations. - -67% 67% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -68% 68% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -68% 68% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -69% 69% FastICA algorithm converged in 10 iterations. FastICA algorithm converged in 10 iterations. - -69% 69% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -70% 70% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -70% 70% FastICA algorithm converged in 11 iterations. FastICA algorithm converged in 11 iterations. - -71% 71% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -71% 71% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -72% 72% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -72% 72% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -73% 73% FastICA algorithm converged in 27 iterations. FastICA algorithm converged in 27 iterations. - -73% 73% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -74% 74% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -74% 74% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -74% 74% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -74% 74% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -75% 75% FastICA algorithm converged in 65 iterations. FastICA algorithm converged in 65 iterations. - -75% 75% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -76% 76% FastICA algorithm converged in 76 iterations. FastICA algorithm converged in 76 iterations. - -76% 76% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -77% 77% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -77% 77% FastICA algorithm converged in 73 iterations. FastICA algorithm converged in 73 iterations. - -78% 78% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -78% 78% FastICA algorithm converged in 52 iterations. FastICA algorithm converged in 52 iterations. - -79% 79% FastICA algorithm converged in 76 iterations. FastICA algorithm converged in 76 iterations. - -79% 79% FastICA algorithm converged in 67 iterations. FastICA algorithm converged in 67 iterations. - -80% 80% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -80% 80% FastICA algorithm converged in 8 iterations. FastICA algorithm converged in 8 iterations. - -81% 81% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -81% 81% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -81% 81% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -82% 82% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -82% 82% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -83% 83% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -83% 83% FastICA algorithm converged in 12 iterations. FastICA algorithm converged in 12 iterations. - -84% 84% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -84% 84% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -85% 85% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -85% 85% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -85% 85% FastICA algorithm converged in 13 iterations. FastICA algorithm converged in 13 iterations. - -85% 85% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -86% 86% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -86% 86% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -86% 86% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -87% 87% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -87% 87% FastICA algorithm converged in 27 iterations. FastICA algorithm converged in 27 iterations. - -88% 88% FastICA algorithm converged in 71 iterations. FastICA algorithm converged in 71 iterations. - -88% 88% FastICA algorithm converged in 3 iterations. FastICA algorithm converged in 3 iterations. - -89% 89% FastICA algorithm converged in 103 iterations. FastICA algorithm converged in 103 iterations. - -89% 89% FastICA algorithm converged in 13 iterations. FastICA algorithm converged in 13 iterations. - -90% 90% FastICA algorithm converged in 17 iterations. FastICA algorithm converged in 17 iterations. - -90% 90% FastICA algorithm converged in 10 iterations. FastICA algorithm converged in 10 iterations. - -91% 91% FastICA algorithm converged in 21 iterations. FastICA algorithm converged in 21 iterations. - -91% 91% FastICA algorithm converged in 22 iterations. FastICA algorithm converged in 22 iterations. - -92% 92% FastICA algorithm converged in 43 iterations. FastICA algorithm converged in 43 iterations. - -92% 92% FastICA algorithm converged in 14 iterations. FastICA algorithm converged in 14 iterations. - -93% 93% FastICA algorithm converged in 51 iterations. FastICA algorithm converged in 51 iterations. - -93% 93% FastICA algorithm converged in 9 iterations. FastICA algorithm converged in 9 iterations. - -94% 94% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -94% 94% FastICA algorithm converged in 7 iterations. FastICA algorithm converged in 7 iterations. - -95% 95% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -95% 95% FastICA algorithm converged in 17 iterations. FastICA algorithm converged in 17 iterations. - -96% 96% FastICA algorithm converged in 6 iterations. FastICA algorithm converged in 6 iterations. - -96% 96% FastICA algorithm converged in 13 iterations. FastICA algorithm converged in 13 iterations. - -97% 97% FastICA algorithm converged in 13 iterations. FastICA algorithm converged in 13 iterations. - -97% 97% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -98% 98% FastICA algorithm converged in 41 iterations. FastICA algorithm converged in 41 iterations. - -98% 98% FastICA algorithm converged in 4 iterations. FastICA algorithm converged in 4 iterations. - -99% 99% FastICA algorithm converged in 28 iterations. FastICA algorithm converged in 28 iterations. - -99% 99% FastICA algorithm didn't converge in 149 iterations. FastICA algorithm didn't converge in 149 iterations. - -99% 99% FastICA algorithm converged in 5 iterations. FastICA algorithm converged in 5 iterations. - -100% 100% -Starting to compute the pairwise distance matrices.... -Starting to compute the pairwise distance matrices....Done!Done! - -Starting to cluster the sources using HDBSCAN....Starting to cluster the sources using HDBSCAN....Done!Done! - -Starting to calculate the 2D manifold representation....Starting to calculate the 2D manifold representation....Done!Done! - -Calculating the centrotypes and associated time courses...Calculating the centrotypes and associated time courses...Done!Done! - -Starting to create the 03_ICA_sources_correlations figure:Starting to create the 03_ICA_sources_correlations figure: - -Updating masks and ICA sources. Of the 8533 in the 1st set of sources and 8278 in the 2nd set of sources, 8270 are in both and can be used in the following step. Updating masks and ICA sources. Of the 8533 in the 1st set of sources and 8278 in the 2nd set of sources, 8270 are in both and can be used in the following step. - - Starting to calculate the 2D kernel density estimates for the signals. Completed Starting to calculate the 2D kernel density estimates for the signals. Completed 0 0 1 1 2 2 3 3 4 4 - - - - Starting to calculate the 2D kernel density estimates for the signals. Completed Starting to calculate the 2D kernel density estimates for the signals. Completed 0 0 1 1 2 2 3 3 4 4 - - - -Done. Done. - -Creating a Google Earth .kmz of the geocoded independent components... Creating a Google Earth .kmz of the geocoded independent components... Done!Done! - -Saving the key results as a .pkl file... Saving the key results as a .pkl file... Done!Done! - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - -Running LiCSAlert for 20170112Running LiCSAlert for 20170112 - -There are 60 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 1 in ifgs_monitoring. There are 60 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 1 in ifgs_monitoring. - -Running LiCSAlert for 20170118Running LiCSAlert for 20170118 - -There are 61 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 2 in ifgs_monitoring. There are 61 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 2 in ifgs_monitoring. - -Reloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, icasar.blind_signal_separation, licsalert.licsalert, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, icasar.blind_signal_separation, licsalert.licsalert, licsalert.monitoring_functions - -******************************************************************************** - -Entering post mortem debugging...Entering post mortem debugging... - -******************************************************************************** - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(16)() - 14  - 15 import licsalert ----> 16 from licsalert.licsalert import LiCSAlert_batch_mode - 17  - 18 #ICASAR_path = Path("/home/matthew/university_work/15_my_software_releases/ICASAR-2.13/") # location of ICASAR functions -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(16)() - 14  - 15 import licsalert ----> 16 from licsalert.licsalert import LiCSAlert_batch_mode - 17  - 18 #ICASAR_path = Path("/home/matthew/university_work/15_my_software_releases/ICASAR-2.13/") # location of ICASAR functions - - - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - - - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(16)() - 14  - 15 import licsalert ----> 16 from licsalert.licsalert import LiCSAlert_batch_mode - 17  - 18 #ICASAR_path = Path("/home/matthew/university_work/15_my_software_releases/ICASAR-2.13/") # location of ICASAR functions -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(16)() - 14  - 15 import licsalert ----> 16 from licsalert.licsalert import LiCSAlert_batch_mode - 17  - 18 #ICASAR_path = Path("/home/matthew/university_work/15_my_software_releases/ICASAR-2.13/") # location of ICASAR functions - - -Reloaded modules: licsalert, licsalert.licsalertReloaded modules: licsalert, licsalert.licsalert - -******************************************************************************** - -Entering post mortem debugging...Entering post mortem debugging... - -******************************************************************************** - -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/ast.py(50)parse() - 48  feature_version = -1 - 49  # Else it should be an int giving the minor version for 3.x. ----> 50  return compile(source, filename, mode, flags, - 51  _feature_version=feature_version) - 52  -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/ast.py(50)parse() - 48  feature_version = -1 - 49  # Else it should be an int giving the minor version for 3.x. ----> 50  return compile(source, filename, mode, flags, - 51  _feature_version=feature_version) - 52  - - - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - - - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - - [... skipping 6 hidden frame(s)] - [... skipping 6 hidden frame(s)] - - -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/ast.py(50)parse() - 48  feature_version = -1 - 49  # Else it should be an int giving the minor version for 3.x. ----> 50  return compile(source, filename, mode, flags, - 51  _feature_version=feature_version) - 52  -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/ast.py(50)parse() - 48  feature_version = -1 - 49  # Else it should be an int giving the minor version for 3.x. ----> 50  return compile(source, filename, mode, flags, - 51  _feature_version=feature_version) - 52  - - -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - - [... skipped 6 hidden frame(s)] - [... skipped 6 hidden frame(s)] - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:39:13 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:39:13 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:39:13 - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(695)run_LiCSAlert_status() - 693  - 694  # 7: Print the information to the terminal (and the sys.out file) ---> 695  print(f"LiCSBAS date Past baseline LiCSAlert ") - 696  for date_n, date in enumerate(sorted(licsbas_dates)): - 697  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(695)run_LiCSAlert_status() - 693  - 694  # 7: Print the information to the terminal (and the sys.out file) ---> 695  print(f"LiCSBAS date Past baseline LiCSAlert ") - 696  for date_n, date in enumerate(sorted(licsbas_dates)): - 697  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(695)run_LiCSAlert_status() - 693  - 694  # 7: Print the information to the terminal (and the sys.out file) ---> 695  print(f"LiCSBAS date Past baseline LiCSAlert ") - 696  for date_n, date in enumerate(sorted(licsbas_dates)): - 697  print(f"{date} ", end = '') - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], figure_intermediate) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], figure_intermediate) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], figure_intermediate) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:40:38 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:40:38 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:40:38 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:40:38 - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(695)run_LiCSAlert_status() - 693  - 694  # 7: Print the information to the terminal (and the sys.out file) ---> 695  print(f"LiCSBAS date Past baseline LiCSAlert ") - 696  for date_n, date in enumerate(sorted(licsbas_dates)): - 697  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(695)run_LiCSAlert_status() - 693  - 694  # 7: Print the information to the terminal (and the sys.out file) ---> 695  print(f"LiCSBAS date Past baseline LiCSAlert ") - 696  for date_n, date in enumerate(sorted(licsbas_dates)): - 697  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(695)run_LiCSAlert_status() - 693  - 694  # 7: Print the information to the terminal (and the sys.out file) ---> 695  print(f"LiCSBAS date Past baseline LiCSAlert ") - 696  for date_n, date in enumerate(sorted(licsbas_dates)): - 697  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(695)run_LiCSAlert_status() - 693  - 694  # 7: Print the information to the terminal (and the sys.out file) ---> 695  print(f"LiCSBAS date Past baseline LiCSAlert ") - 696  for date_n, date in enumerate(sorted(licsbas_dates)): - 697  print(f"{date} ", end = '') - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:14 - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(693)run_LiCSAlert_status() - 691  # 7: - 692  pdb.set_trace() ---> 693  if not figure_intermediate: - 694  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 695  LiCSAlert_status['pending'] = LiCSAlert_status['pending'][-1] -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(693)run_LiCSAlert_status() - 691  # 7: - 692  pdb.set_trace() ---> 693  if not figure_intermediate: - 694  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 695  LiCSAlert_status['pending'] = LiCSAlert_status['pending'][-1] -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(693)run_LiCSAlert_status() - 691  # 7: - 692  pdb.set_trace() ---> 693  if not figure_intermediate: - 694  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 695  LiCSAlert_status['pending'] = LiCSAlert_status['pending'][-1] -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(693)run_LiCSAlert_status() - 691  # 7: - 692  pdb.set_trace() ---> 693  if not figure_intermediate: - 694  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 695  LiCSAlert_status['pending'] = LiCSAlert_status['pending'][-1] -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(693)run_LiCSAlert_status() - 691  # 7: - 692  pdb.set_trace() ---> 693  if not figure_intermediate: - 694  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 695  LiCSAlert_status['pending'] = LiCSAlert_status['pending'][-1] - - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:46:43 - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - -LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert - - - - - -20141031 20141031 20141031 20141031 20141031 20141031 no no no no no no - - - - - -20141218 20141218 20141218 20141218 20141218 20141218 no no no no no no - - - - - -20150111 20150111 20150111 20150111 20150111 20150111 no no no no no no - - - - - -20150123 20150123 20150123 20150123 20150123 20150123 no no no no no no - - - - - -20150216 20150216 20150216 20150216 20150216 20150216 no no no no no no - - - - - -20150228 20150228 20150228 20150228 20150228 20150228 no no no no no no - - - - - -20150312 20150312 20150312 20150312 20150312 20150312 no no no no no no - - - - - -20150324 20150324 20150324 20150324 20150324 20150324 no no no no no no - - - - - -20150405 20150405 20150405 20150405 20150405 20150405 no no no no no no - - - - - -20150429 20150429 20150429 20150429 20150429 20150429 no no no no no no - - - - - -20150511 20150511 20150511 20150511 20150511 20150511 no no no no no no - - - - - -20150523 20150523 20150523 20150523 20150523 20150523 no no no no no no - - - - - -20150604 20150604 20150604 20150604 20150604 20150604 no no no no no no - - - - - -20150710 20150710 20150710 20150710 20150710 20150710 no no no no no no - - - - - -20150722 20150722 20150722 20150722 20150722 20150722 no no no no no no - - - - - -20150815 20150815 20150815 20150815 20150815 20150815 no no no no no no - - - - - -20150920 20150920 20150920 20150920 20150920 20150920 no no no no no no - - - - - -20151002 20151002 20151002 20151002 20151002 20151002 no no no no no no - - - - - -20151014 20151014 20151014 20151014 20151014 20151014 no no no no no no - - - - - -20151107 20151107 20151107 20151107 20151107 20151107 no no no no no no - - - - - -20151119 20151119 20151119 20151119 20151119 20151119 no no no no no no - - - - - -20151201 20151201 20151201 20151201 20151201 20151201 no no no no no no - - - - - -20151213 20151213 20151213 20151213 20151213 20151213 no no no no no no - - - - - -20151225 20151225 20151225 20151225 20151225 20151225 no no no no no no - - - - - -20160106 20160106 20160106 20160106 20160106 20160106 no no no no no no - - - - - -20160118 20160118 20160118 20160118 20160118 20160118 no no no no no no - - - - - -20160211 20160211 20160211 20160211 20160211 20160211 no no no no no no - - - - - -20160223 20160223 20160223 20160223 20160223 20160223 no no no no no no - - - - - -20160306 20160306 20160306 20160306 20160306 20160306 no no no no no no - - - - - -20160318 20160318 20160318 20160318 20160318 20160318 no no no no no no - - - - - -20160330 20160330 20160330 20160330 20160330 20160330 no no no no no no - - - - - -20160411 20160411 20160411 20160411 20160411 20160411 no no no no no no - - - - - -20160505 20160505 20160505 20160505 20160505 20160505 no no no no no no - - - - - -20160517 20160517 20160517 20160517 20160517 20160517 no no no no no no - - - - - -20160529 20160529 20160529 20160529 20160529 20160529 no no no no no no - - - - - -20160610 20160610 20160610 20160610 20160610 20160610 no no no no no no - - - - - -20160704 20160704 20160704 20160704 20160704 20160704 no no no no no no - - - - - -20160716 20160716 20160716 20160716 20160716 20160716 no no no no no no - - - - - -20160728 20160728 20160728 20160728 20160728 20160728 no no no no no no - - - - - -20160809 20160809 20160809 20160809 20160809 20160809 no no no no no no - - - - - -20160821 20160821 20160821 20160821 20160821 20160821 no no no no no no - - - - - -20160902 20160902 20160902 20160902 20160902 20160902 no no no no no no - - - - - -20160914 20160914 20160914 20160914 20160914 20160914 no no no no no no - - - - - -20160926 20160926 20160926 20160926 20160926 20160926 no no no no no no - - - - - -20161002 20161002 20161002 20161002 20161002 20161002 no no no no no no - - - - - -20161008 20161008 20161008 20161008 20161008 20161008 no no no no no no - - - - - -20161014 20161014 20161014 20161014 20161014 20161014 no no no no no no - - - - - -20161020 20161020 20161020 20161020 20161020 20161020 no no no no no no - - - - - -20161026 20161026 20161026 20161026 20161026 20161026 no no no no no no - - - - - -20161101 20161101 20161101 20161101 20161101 20161101 no no no no no no - - - - - -20161107 20161107 20161107 20161107 20161107 20161107 no no no no no no - - - - - -20161113 20161113 20161113 20161113 20161113 20161113 no no no no no no - - - - - -20161119 20161119 20161119 20161119 20161119 20161119 no no no no no no - - - - - -20161201 20161201 20161201 20161201 20161201 20161201 no no no no no no - - - - - -20161207 20161207 20161207 20161207 20161207 20161207 no no no no no no - - - - - -20161213 20161213 20161213 20161213 20161213 20161213 no no no no no no - - - - - -20161219 20161219 20161219 20161219 20161219 20161219 no no no no no no - - - - - -20161225 20161225 20161225 20161225 20161225 20161225 no no no no no no - - - - - -20161231 20161231 20161231 20161231 20161231 20161231 no no no no no no - - - - - -20170112 20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170118 20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170124 20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170130 20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170205 20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170211 20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170223 20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170301 20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170307 20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170313 20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170319 20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170325 20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170331 20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170406 20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170412 20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170418 20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170424 20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170430 20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170506 20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170512 20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170518 20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170524 20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170530 20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170605 20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170611 20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170617 20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170623 20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170629 20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170705 20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170711 20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170717 20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170723 20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170729 20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170804 20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170816 20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170822 20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170828 20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170903 20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170909 20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170915 20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170921 20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20170927 20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171009 20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171015 20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171021 20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171027 20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171102 20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171108 20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171114 20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171120 20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171202 20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171208 20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171214 20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20171226 20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180101 20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180107 20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180113 20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180119 20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180125 20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180131 20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180206 20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180218 20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180224 20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180302 20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180308 20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180314 20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180320 20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180326 20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180401 20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180407 20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180413 20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180419 20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180425 20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180501 20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180507 20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180513 20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180519 20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180525 20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180531 20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180606 20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180612 20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180618 20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180630 20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180712 20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180718 20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180724 20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180730 20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180805 20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180811 20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180817 20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180823 20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180829 20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180904 20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180910 20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180916 20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180922 20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20180928 20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181004 20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181010 20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181016 20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181022 20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181028 20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181109 20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181115 20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181121 20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181127 20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181203 20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181209 20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181215 20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181221 20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20181227 20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190102 20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190108 20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190114 20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190120 20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190126 20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190201 20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190207 20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190213 20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190225 20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190303 20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190309 20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190321 20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190402 20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190408 20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190414 20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190420 20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190426 20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190502 20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190508 20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190520 20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190526 20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190601 20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190607 20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190613 20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190625 20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190701 20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190707 20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190713 20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190719 20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190725 20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190731 20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190806 20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190812 20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190818 20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190824 20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190830 20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190905 20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190911 20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190917 20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20190923 20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191005 20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191011 20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191017 20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191023 20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191029 20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191104 20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191116 20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191122 20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191128 20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191204 20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191210 20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191216 20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191222 20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20191228 20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200103 20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200109 20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200115 20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200121 20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200127 20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200202 20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200208 20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200214 20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200220 20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200226 20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200303 20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200309 20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200315 20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200321 20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200402 20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200408 20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200414 20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200420 20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200426 20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200502 20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200508 20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200514 20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200520 20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200526 20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200601 20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200607 20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200613 20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200619 20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200625 20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200701 20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200707 20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200713 20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200719 20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200725 20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200731 20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200806 20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200812 20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200818 20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200824 20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200830 20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200905 20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200911 20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200917 20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200923 20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20200929 20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201005 20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201011 20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201017 20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201023 20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201029 20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201104 20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201110 20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201116 20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201122 20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201128 20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201204 20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201210 20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201216 20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201222 20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20201228 20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210103 20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210109 20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210115 20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210121 20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210127 20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210202 20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210208 20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210214 20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210220 20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210226 20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210304 20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210310 20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210316 20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210322 20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210328 20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210403 20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210409 20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210415 20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210421 20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210427 20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210503 20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210509 20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210515 20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210521 20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210527 20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210602 20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210608 20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210614 20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210620 20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210626 20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210702 20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210708 20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210714 20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210720 20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210726 20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210801 20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210807 20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210813 20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210819 20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210825 20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210831 20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210906 20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -20210912 20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes yes pendingpendingpendingpendingpendingpending - - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - - -************************************************************************************************************************************************************************************************************************************************ - - - - - -Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging... - - - - - -************************************************************************************************************************************************************************************************************************************************ - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - - - - - - - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - - - - - - - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_1730346/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - - - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - - - - - - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - - - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - - - - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - - - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(147)LiCSAlert_monitoring_mode() - 145  - 146  # 4c: Main loop to run LiCSAlert for each date that is required ---> 147  LiCSAlert_status['combined_processing'] = sorted(list(set(LiCSAlert_status['pending'] + LiCSAlert_status['processed_with_errors']))) # get a sorted and unique list of all the dates we need LiCSAlert for - 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - - - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:10 - - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - - -LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert - - - - - - -20141031 20141031 20141031 20141031 20141031 20141031 20141031 no no no no no no no - - - - - - -20141218 20141218 20141218 20141218 20141218 20141218 20141218 no no no no no no no - - - - - - -20150111 20150111 20150111 20150111 20150111 20150111 20150111 no no no no no no no - - - - - - -20150123 20150123 20150123 20150123 20150123 20150123 20150123 no no no no no no no - - - - - - -20150216 20150216 20150216 20150216 20150216 20150216 20150216 no no no no no no no - - - - - - -20150228 20150228 20150228 20150228 20150228 20150228 20150228 no no no no no no no - - - - - - -20150312 20150312 20150312 20150312 20150312 20150312 20150312 no no no no no no no - - - - - - -20150324 20150324 20150324 20150324 20150324 20150324 20150324 no no no no no no no - - - - - - -20150405 20150405 20150405 20150405 20150405 20150405 20150405 no no no no no no no - - - - - - -20150429 20150429 20150429 20150429 20150429 20150429 20150429 no no no no no no no - - - - - - -20150511 20150511 20150511 20150511 20150511 20150511 20150511 no no no no no no no - - - - - - -20150523 20150523 20150523 20150523 20150523 20150523 20150523 no no no no no no no - - - - - - -20150604 20150604 20150604 20150604 20150604 20150604 20150604 no no no no no no no - - - - - - -20150710 20150710 20150710 20150710 20150710 20150710 20150710 no no no no no no no - - - - - - -20150722 20150722 20150722 20150722 20150722 20150722 20150722 no no no no no no no - - - - - - -20150815 20150815 20150815 20150815 20150815 20150815 20150815 no no no no no no no - - - - - - -20150920 20150920 20150920 20150920 20150920 20150920 20150920 no no no no no no no - - - - - - -20151002 20151002 20151002 20151002 20151002 20151002 20151002 no no no no no no no - - - - - - -20151014 20151014 20151014 20151014 20151014 20151014 20151014 no no no no no no no - - - - - - -20151107 20151107 20151107 20151107 20151107 20151107 20151107 no no no no no no no - - - - - - -20151119 20151119 20151119 20151119 20151119 20151119 20151119 no no no no no no no - - - - - - -20151201 20151201 20151201 20151201 20151201 20151201 20151201 no no no no no no no - - - - - - -20151213 20151213 20151213 20151213 20151213 20151213 20151213 no no no no no no no - - - - - - -20151225 20151225 20151225 20151225 20151225 20151225 20151225 no no no no no no no - - - - - - -20160106 20160106 20160106 20160106 20160106 20160106 20160106 no no no no no no no - - - - - - -20160118 20160118 20160118 20160118 20160118 20160118 20160118 no no no no no no no - - - - - - -20160211 20160211 20160211 20160211 20160211 20160211 20160211 no no no no no no no - - - - - - -20160223 20160223 20160223 20160223 20160223 20160223 20160223 no no no no no no no - - - - - - -20160306 20160306 20160306 20160306 20160306 20160306 20160306 no no no no no no no - - - - - - -20160318 20160318 20160318 20160318 20160318 20160318 20160318 no no no no no no no - - - - - - -20160330 20160330 20160330 20160330 20160330 20160330 20160330 no no no no no no no - - - - - - -20160411 20160411 20160411 20160411 20160411 20160411 20160411 no no no no no no no - - - - - - -20160505 20160505 20160505 20160505 20160505 20160505 20160505 no no no no no no no - - - - - - -20160517 20160517 20160517 20160517 20160517 20160517 20160517 no no no no no no no - - - - - - -20160529 20160529 20160529 20160529 20160529 20160529 20160529 no no no no no no no - - - - - - -20160610 20160610 20160610 20160610 20160610 20160610 20160610 no no no no no no no - - - - - - -20160704 20160704 20160704 20160704 20160704 20160704 20160704 no no no no no no no - - - - - - -20160716 20160716 20160716 20160716 20160716 20160716 20160716 no no no no no no no - - - - - - -20160728 20160728 20160728 20160728 20160728 20160728 20160728 no no no no no no no - - - - - - -20160809 20160809 20160809 20160809 20160809 20160809 20160809 no no no no no no no - - - - - - -20160821 20160821 20160821 20160821 20160821 20160821 20160821 no no no no no no no - - - - - - -20160902 20160902 20160902 20160902 20160902 20160902 20160902 no no no no no no no - - - - - - -20160914 20160914 20160914 20160914 20160914 20160914 20160914 no no no no no no no - - - - - - -20160926 20160926 20160926 20160926 20160926 20160926 20160926 no no no no no no no - - - - - - -20161002 20161002 20161002 20161002 20161002 20161002 20161002 no no no no no no no - - - - - - -20161008 20161008 20161008 20161008 20161008 20161008 20161008 no no no no no no no - - - - - - -20161014 20161014 20161014 20161014 20161014 20161014 20161014 no no no no no no no - - - - - - -20161020 20161020 20161020 20161020 20161020 20161020 20161020 no no no no no no no - - - - - - -20161026 20161026 20161026 20161026 20161026 20161026 20161026 no no no no no no no - - - - - - -20161101 20161101 20161101 20161101 20161101 20161101 20161101 no no no no no no no - - - - - - -20161107 20161107 20161107 20161107 20161107 20161107 20161107 no no no no no no no - - - - - - -20161113 20161113 20161113 20161113 20161113 20161113 20161113 no no no no no no no - - - - - - -20161119 20161119 20161119 20161119 20161119 20161119 20161119 no no no no no no no - - - - - - -20161201 20161201 20161201 20161201 20161201 20161201 20161201 no no no no no no no - - - - - - -20161207 20161207 20161207 20161207 20161207 20161207 20161207 no no no no no no no - - - - - - -20161213 20161213 20161213 20161213 20161213 20161213 20161213 no no no no no no no - - - - - - -20161219 20161219 20161219 20161219 20161219 20161219 20161219 no no no no no no no - - - - - - -20161225 20161225 20161225 20161225 20161225 20161225 20161225 no no no no no no no - - - - - - -20161231 20161231 20161231 20161231 20161231 20161231 20161231 no no no no no no no - - - - - - -20170112 20170112 20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170118 20170118 20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170124 20170124 20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170130 20170130 20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170205 20170205 20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170211 20170211 20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170223 20170223 20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170301 20170301 20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170307 20170307 20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170313 20170313 20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170319 20170319 20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170325 20170325 20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170331 20170331 20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170406 20170406 20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170412 20170412 20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170418 20170418 20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170424 20170424 20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170430 20170430 20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170506 20170506 20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170512 20170512 20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170518 20170518 20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170524 20170524 20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170530 20170530 20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170605 20170605 20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170611 20170611 20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170617 20170617 20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170623 20170623 20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170629 20170629 20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170705 20170705 20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170711 20170711 20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170717 20170717 20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170723 20170723 20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170729 20170729 20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170804 20170804 20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170816 20170816 20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170822 20170822 20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170828 20170828 20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170903 20170903 20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170909 20170909 20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170915 20170915 20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170921 20170921 20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20170927 20170927 20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171009 20171009 20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171015 20171015 20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171021 20171021 20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171027 20171027 20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171102 20171102 20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171108 20171108 20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171114 20171114 20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171120 20171120 20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171202 20171202 20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171208 20171208 20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171214 20171214 20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20171226 20171226 20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180101 20180101 20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180107 20180107 20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180113 20180113 20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180119 20180119 20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180125 20180125 20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180131 20180131 20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180206 20180206 20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180218 20180218 20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180224 20180224 20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180302 20180302 20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180308 20180308 20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180314 20180314 20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180320 20180320 20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180326 20180326 20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180401 20180401 20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180407 20180407 20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180413 20180413 20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180419 20180419 20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180425 20180425 20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180501 20180501 20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180507 20180507 20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180513 20180513 20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180519 20180519 20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180525 20180525 20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180531 20180531 20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180606 20180606 20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180612 20180612 20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180618 20180618 20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180630 20180630 20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180712 20180712 20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180718 20180718 20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180724 20180724 20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180730 20180730 20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180805 20180805 20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180811 20180811 20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180817 20180817 20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180823 20180823 20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180829 20180829 20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180904 20180904 20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180910 20180910 20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180916 20180916 20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180922 20180922 20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20180928 20180928 20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181004 20181004 20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181010 20181010 20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181016 20181016 20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181022 20181022 20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181028 20181028 20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181109 20181109 20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181115 20181115 20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181121 20181121 20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181127 20181127 20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181203 20181203 20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181209 20181209 20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181215 20181215 20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181221 20181221 20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20181227 20181227 20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190102 20190102 20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190108 20190108 20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190114 20190114 20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190120 20190120 20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190126 20190126 20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190201 20190201 20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190207 20190207 20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190213 20190213 20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190225 20190225 20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190303 20190303 20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190309 20190309 20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190321 20190321 20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190402 20190402 20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190408 20190408 20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190414 20190414 20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190420 20190420 20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190426 20190426 20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190502 20190502 20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190508 20190508 20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190520 20190520 20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190526 20190526 20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190601 20190601 20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190607 20190607 20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190613 20190613 20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190625 20190625 20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190701 20190701 20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190707 20190707 20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190713 20190713 20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190719 20190719 20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190725 20190725 20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190731 20190731 20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190806 20190806 20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190812 20190812 20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190818 20190818 20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190824 20190824 20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190830 20190830 20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190905 20190905 20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190911 20190911 20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190917 20190917 20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20190923 20190923 20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191005 20191005 20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191011 20191011 20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191017 20191017 20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191023 20191023 20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191029 20191029 20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191104 20191104 20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191116 20191116 20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191122 20191122 20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191128 20191128 20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191204 20191204 20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191210 20191210 20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191216 20191216 20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191222 20191222 20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20191228 20191228 20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200103 20200103 20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200109 20200109 20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200115 20200115 20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200121 20200121 20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200127 20200127 20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200202 20200202 20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200208 20200208 20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200214 20200214 20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200220 20200220 20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200226 20200226 20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200303 20200303 20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200309 20200309 20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200315 20200315 20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200321 20200321 20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200402 20200402 20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200408 20200408 20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200414 20200414 20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200420 20200420 20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200426 20200426 20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200502 20200502 20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200508 20200508 20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200514 20200514 20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200520 20200520 20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200526 20200526 20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200601 20200601 20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200607 20200607 20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200613 20200613 20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200619 20200619 20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200625 20200625 20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200701 20200701 20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200707 20200707 20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200713 20200713 20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200719 20200719 20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200725 20200725 20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200731 20200731 20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200806 20200806 20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200812 20200812 20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200818 20200818 20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200824 20200824 20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200830 20200830 20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200905 20200905 20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200911 20200911 20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200917 20200917 20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200923 20200923 20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20200929 20200929 20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201005 20201005 20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201011 20201011 20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201017 20201017 20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201023 20201023 20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201029 20201029 20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201104 20201104 20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201110 20201110 20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201116 20201116 20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201122 20201122 20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201128 20201128 20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201204 20201204 20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201210 20201210 20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201216 20201216 20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201222 20201222 20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20201228 20201228 20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210103 20210103 20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210109 20210109 20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210115 20210115 20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210121 20210121 20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210127 20210127 20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210202 20210202 20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210208 20210208 20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210214 20210214 20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210220 20210220 20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210226 20210226 20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210304 20210304 20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210310 20210310 20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210316 20210316 20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210322 20210322 20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210328 20210328 20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210403 20210403 20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210409 20210409 20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210415 20210415 20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210421 20210421 20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210427 20210427 20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210503 20210503 20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210509 20210509 20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210515 20210515 20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210521 20210521 20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210527 20210527 20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210602 20210602 20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210608 20210608 20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210614 20210614 20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210620 20210620 20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210626 20210626 20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210702 20210702 20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210708 20210708 20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210714 20210714 20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210720 20210720 20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210726 20210726 20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210801 20210801 20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210807 20210807 20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210813 20210813 20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210819 20210819 20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210825 20210825 20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210831 20210831 20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210906 20210906 20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -20210912 20210912 20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes yes yes pendingpendingpendingpendingpendingpendingpending - - - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:49 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:49 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:49 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:49 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:49 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:49 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:49 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 13:48:49 - - - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') - - - - - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:23:23 -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. -LiCSAlert_preprocessing: mean centering the interferograms before downsampling -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') - - [... skipping 21 hidden frame(s)] - - /tmp/ipykernel_3518/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - [... skipping 2 hidden frame(s)] - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(697)run_LiCSAlert_status() - 695  pdb.set_trace() - 696  # 8: Print the information to the terminal (and the sys.out file) ---> 697  print(f"LiCSBAS date Past baseline LiCSAlert ") - 698  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 699  print(f"{date} ", end = '') - -LiCSBAS date Past baseline LiCSAlert -20141031 no -20141218 no -20150111 no -20150123 no -20150216 no -20150228 no -20150312 no -20150324 no -20150405 no -20150429 no -20150511 no -20150523 no -20150604 no -20150710 no -20150722 no -20150815 no -20150920 no -20151002 no -20151014 no -20151107 no -20151119 no -20151201 no -20151213 no -20151225 no -20160106 no -20160118 no -20160211 no -20160223 no -20160306 no -20160318 no -20160330 no -20160411 no -20160505 no -20160517 no -20160529 no -20160610 no -20160704 no -20160716 no -20160728 no -20160809 no -20160821 no -20160902 no -20160914 no -20160926 no -20161002 no -20161008 no -20161014 no -20161020 no -20161026 no -20161101 no -20161107 no -20161113 no -20161119 no -20161201 no -20161207 no -20161213 no -20161219 no -20161225 no -20161231 no -20170112 yes pending -20170118 yes pending -20170124 yes pending -20170130 yes pending -20170205 yes pending -20170211 yes pending -20170223 yes pending -20170301 yes pending -20170307 yes pending -20170313 yes pending -20170319 yes pending -20170325 yes pending -20170331 yes pending -20170406 yes pending -20170412 yes pending -20170418 yes pending -20170424 yes pending -20170430 yes pending -20170506 yes pending -20170512 yes pending -20170518 yes pending -20170524 yes pending -20170530 yes pending -20170605 yes pending -20170611 yes pending -20170617 yes pending -20170623 yes pending -20170629 yes pending -20170705 yes pending -20170711 yes pending -20170717 yes pending -20170723 yes pending -20170729 yes pending -20170804 yes pending -20170816 yes pending -20170822 yes pending -20170828 yes pending -20170903 yes pending -20170909 yes pending -20170915 yes pending -20170921 yes pending -20170927 yes pending -20171009 yes pending -20171015 yes pending -20171021 yes pending -20171027 yes pending -20171102 yes pending -20171108 yes pending -20171114 yes pending -20171120 yes pending -20171202 yes pending -20171208 yes pending -20171214 yes pending -20171226 yes pending -20180101 yes pending -20180107 yes pending -20180113 yes pending -20180119 yes pending -20180125 yes pending -20180131 yes pending -20180206 yes pending -20180218 yes pending -20180224 yes pending -20180302 yes pending -20180308 yes pending -20180314 yes pending -20180320 yes pending -20180326 yes pending -20180401 yes pending -20180407 yes pending -20180413 yes pending -20180419 yes pending -20180425 yes pending -20180501 yes pending -20180507 yes pending -20180513 yes pending -20180519 yes pending -20180525 yes pending -20180531 yes pending -20180606 yes pending -20180612 yes pending -20180618 yes pending -20180630 yes pending -20180712 yes pending -20180718 yes pending -20180724 yes pending -20180730 yes pending -20180805 yes pending -20180811 yes pending -20180817 yes pending -20180823 yes pending -20180829 yes pending -20180904 yes pending -20180910 yes pending -20180916 yes pending -20180922 yes pending -20180928 yes pending -20181004 yes pending -20181010 yes pending -20181016 yes pending -20181022 yes pending -20181028 yes pending -20181109 yes pending -20181115 yes pending -20181121 yes pending -20181127 yes pending -20181203 yes pending -20181209 yes pending -20181215 yes pending -20181221 yes pending -20181227 yes pending -20190102 yes pending -20190108 yes pending -20190114 yes pending -20190120 yes pending -20190126 yes pending -20190201 yes pending -20190207 yes pending -20190213 yes pending -20190225 yes pending -20190303 yes pending -20190309 yes pending -20190321 yes pending -20190402 yes pending -20190408 yes pending -20190414 yes pending -20190420 yes pending -20190426 yes pending -20190502 yes pending -20190508 yes pending -20190520 yes pending -20190526 yes pending -20190601 yes pending -20190607 yes pending -20190613 yes pending -20190625 yes pending -20190701 yes pending -20190707 yes pending -20190713 yes pending -20190719 yes pending -20190725 yes pending -20190731 yes pending -20190806 yes pending -20190812 yes pending -20190818 yes pending -20190824 yes pending -20190830 yes pending -20190905 yes pending -20190911 yes pending -20190917 yes pending -20190923 yes pending -20191005 yes pending -20191011 yes pending -20191017 yes pending -20191023 yes pending -20191029 yes pending -20191104 yes pending -20191116 yes pending -20191122 yes pending -20191128 yes pending -20191204 yes pending -20191210 yes pending -20191216 yes pending -20191222 yes pending -20191228 yes pending -20200103 yes pending -20200109 yes pending -20200115 yes pending -20200121 yes pending -20200127 yes pending -20200202 yes pending -20200208 yes pending -20200214 yes pending -20200220 yes pending -20200226 yes pending -20200303 yes pending -20200309 yes pending -20200315 yes pending -20200321 yes pending -20200402 yes pending -20200408 yes pending -20200414 yes pending -20200420 yes pending -20200426 yes pending -20200502 yes pending -20200508 yes pending -20200514 yes pending -20200520 yes pending -20200526 yes pending -20200601 yes pending -20200607 yes pending -20200613 yes pending -20200619 yes pending -20200625 yes pending -20200701 yes pending -20200707 yes pending -20200713 yes pending -20200719 yes pending -20200725 yes pending -20200731 yes pending -20200806 yes pending -20200812 yes pending -20200818 yes pending -20200824 yes pending -20200830 yes pending -20200905 yes pending -20200911 yes pending -20200917 yes pending -20200923 yes pending -20200929 yes pending -20201005 yes pending -20201011 yes pending -20201017 yes pending -20201023 yes pending -20201029 yes pending -20201104 yes pending -20201110 yes pending -20201116 yes pending -20201122 yes pending -20201128 yes pending -20201204 yes pending -20201210 yes pending -20201216 yes pending -20201222 yes pending -20201228 yes pending -20210103 yes pending -20210109 yes pending -20210115 yes pending -20210121 yes pending -20210127 yes pending -20210202 yes pending -20210208 yes pending -20210214 yes pending -20210220 yes pending -20210226 yes pending -20210304 yes pending -20210310 yes pending -20210316 yes pending -20210322 yes pending -20210328 yes pending -20210403 yes pending -20210409 yes pending -20210415 yes pending -20210421 yes pending -20210427 yes pending -20210503 yes pending -20210509 yes pending -20210515 yes pending -20210521 yes pending -20210527 yes pending -20210602 yes pending -20210608 yes pending -20210614 yes pending -20210620 yes pending -20210626 yes pending -20210702 yes pending -20210708 yes pending -20210714 yes pending -20210720 yes pending -20210726 yes pending -20210801 yes pending -20210807 yes pending -20210813 yes pending -20210819 yes pending -20210825 yes pending -20210831 yes pending -20210906 yes pending -20210912 yes processed with errors -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:26:37 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:26:37 - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - -LiCSBAS date Past baseline LiCSAlert LiCSBAS date Past baseline LiCSAlert - -20141031 20141031 no no - -20141218 20141218 no no - -20150111 20150111 no no - -20150123 20150123 no no - -20150216 20150216 no no - -20150228 20150228 no no - -20150312 20150312 no no - -20150324 20150324 no no - -20150405 20150405 no no - -20150429 20150429 no no - -20150511 20150511 no no - -20150523 20150523 no no - -20150604 20150604 no no - -20150710 20150710 no no - -20150722 20150722 no no - -20150815 20150815 no no - -20150920 20150920 no no - -20151002 20151002 no no - -20151014 20151014 no no - -20151107 20151107 no no - -20151119 20151119 no no - -20151201 20151201 no no - -20151213 20151213 no no - -20151225 20151225 no no - -20160106 20160106 no no - -20160118 20160118 no no - -20160211 20160211 no no - -20160223 20160223 no no - -20160306 20160306 no no - -20160318 20160318 no no - -20160330 20160330 no no - -20160411 20160411 no no - -20160505 20160505 no no - -20160517 20160517 no no - -20160529 20160529 no no - -20160610 20160610 no no - -20160704 20160704 no no - -20160716 20160716 no no - -20160728 20160728 no no - -20160809 20160809 no no - -20160821 20160821 no no - -20160902 20160902 no no - -20160914 20160914 no no - -20160926 20160926 no no - -20161002 20161002 no no - -20161008 20161008 no no - -20161014 20161014 no no - -20161020 20161020 no no - -20161026 20161026 no no - -20161101 20161101 no no - -20161107 20161107 no no - -20161113 20161113 no no - -20161119 20161119 no no - -20161201 20161201 no no - -20161207 20161207 no no - -20161213 20161213 no no - -20161219 20161219 no no - -20161225 20161225 no no - -20161231 20161231 no no - -20170112 20170112 yes yes - -20170118 20170118 yes yes - -20170124 20170124 yes yes - -20170130 20170130 yes yes - -20170205 20170205 yes yes - -20170211 20170211 yes yes - -20170223 20170223 yes yes - -20170301 20170301 yes yes - -20170307 20170307 yes yes - -20170313 20170313 yes yes - -20170319 20170319 yes yes - -20170325 20170325 yes yes - -20170331 20170331 yes yes - -20170406 20170406 yes yes - -20170412 20170412 yes yes - -20170418 20170418 yes yes - -20170424 20170424 yes yes - -20170430 20170430 yes yes - -20170506 20170506 yes yes - -20170512 20170512 yes yes - -20170518 20170518 yes yes - -20170524 20170524 yes yes - -20170530 20170530 yes yes - -20170605 20170605 yes yes - -20170611 20170611 yes yes - -20170617 20170617 yes yes - -20170623 20170623 yes yes - -20170629 20170629 yes yes - -20170705 20170705 yes yes - -20170711 20170711 yes yes - -20170717 20170717 yes yes - -20170723 20170723 yes yes - -20170729 20170729 yes yes - -20170804 20170804 yes yes - -20170816 20170816 yes yes - -20170822 20170822 yes yes - -20170828 20170828 yes yes - -20170903 20170903 yes yes - -20170909 20170909 yes yes - -20170915 20170915 yes yes - -20170921 20170921 yes yes - -20170927 20170927 yes yes - -20171009 20171009 yes yes - -20171015 20171015 yes yes - -20171021 20171021 yes yes - -20171027 20171027 yes yes - -20171102 20171102 yes yes - -20171108 20171108 yes yes - -20171114 20171114 yes yes - -20171120 20171120 yes yes - -20171202 20171202 yes yes - -20171208 20171208 yes yes - -20171214 20171214 yes yes - -20171226 20171226 yes yes - -20180101 20180101 yes yes - -20180107 20180107 yes yes - -20180113 20180113 yes yes - -20180119 20180119 yes yes - -20180125 20180125 yes yes - -20180131 20180131 yes yes - -20180206 20180206 yes yes - -20180218 20180218 yes yes - -20180224 20180224 yes yes - -20180302 20180302 yes yes - -20180308 20180308 yes yes - -20180314 20180314 yes yes - -20180320 20180320 yes yes - -20180326 20180326 yes yes - -20180401 20180401 yes yes - -20180407 20180407 yes yes - -20180413 20180413 yes yes - -20180419 20180419 yes yes - -20180425 20180425 yes yes - -20180501 20180501 yes yes - -20180507 20180507 yes yes - -20180513 20180513 yes yes - -20180519 20180519 yes yes - -20180525 20180525 yes yes - -20180531 20180531 yes yes - -20180606 20180606 yes yes - -20180612 20180612 yes yes - -20180618 20180618 yes yes - -20180630 20180630 yes yes - -20180712 20180712 yes yes - -20180718 20180718 yes yes - -20180724 20180724 yes yes - -20180730 20180730 yes yes - -20180805 20180805 yes yes - -20180811 20180811 yes yes - -20180817 20180817 yes yes - -20180823 20180823 yes yes - -20180829 20180829 yes yes - -20180904 20180904 yes yes - -20180910 20180910 yes yes - -20180916 20180916 yes yes - -20180922 20180922 yes yes - -20180928 20180928 yes yes - -20181004 20181004 yes yes - -20181010 20181010 yes yes - -20181016 20181016 yes yes - -20181022 20181022 yes yes - -20181028 20181028 yes yes - -20181109 20181109 yes yes - -20181115 20181115 yes yes - -20181121 20181121 yes yes - -20181127 20181127 yes yes - -20181203 20181203 yes yes - -20181209 20181209 yes yes - -20181215 20181215 yes yes - -20181221 20181221 yes yes - -20181227 20181227 yes yes - -20190102 20190102 yes yes - -20190108 20190108 yes yes - -20190114 20190114 yes yes - -20190120 20190120 yes yes - -20190126 20190126 yes yes - -20190201 20190201 yes yes - -20190207 20190207 yes yes - -20190213 20190213 yes yes - -20190225 20190225 yes yes - -20190303 20190303 yes yes - -20190309 20190309 yes yes - -20190321 20190321 yes yes - -20190402 20190402 yes yes - -20190408 20190408 yes yes - -20190414 20190414 yes yes - -20190420 20190420 yes yes - -20190426 20190426 yes yes - -20190502 20190502 yes yes - -20190508 20190508 yes yes - -20190520 20190520 yes yes - -20190526 20190526 yes yes - -20190601 20190601 yes yes - -20190607 20190607 yes yes - -20190613 20190613 yes yes - -20190625 20190625 yes yes - -20190701 20190701 yes yes - -20190707 20190707 yes yes - -20190713 20190713 yes yes - -20190719 20190719 yes yes - -20190725 20190725 yes yes - -20190731 20190731 yes yes - -20190806 20190806 yes yes - -20190812 20190812 yes yes - -20190818 20190818 yes yes - -20190824 20190824 yes yes - -20190830 20190830 yes yes - -20190905 20190905 yes yes - -20190911 20190911 yes yes - -20190917 20190917 yes yes - -20190923 20190923 yes yes - -20191005 20191005 yes yes - -20191011 20191011 yes yes - -20191017 20191017 yes yes - -20191023 20191023 yes yes - -20191029 20191029 yes yes - -20191104 20191104 yes yes - -20191116 20191116 yes yes - -20191122 20191122 yes yes - -20191128 20191128 yes yes - -20191204 20191204 yes yes - -20191210 20191210 yes yes - -20191216 20191216 yes yes - -20191222 20191222 yes yes - -20191228 20191228 yes yes - -20200103 20200103 yes yes - -20200109 20200109 yes yes - -20200115 20200115 yes yes - -20200121 20200121 yes yes - -20200127 20200127 yes yes - -20200202 20200202 yes yes - -20200208 20200208 yes yes - -20200214 20200214 yes yes - -20200220 20200220 yes yes - -20200226 20200226 yes yes - -20200303 20200303 yes yes - -20200309 20200309 yes yes - -20200315 20200315 yes yes - -20200321 20200321 yes yes - -20200402 20200402 yes yes - -20200408 20200408 yes yes - -20200414 20200414 yes yes - -20200420 20200420 yes yes - -20200426 20200426 yes yes - -20200502 20200502 yes yes - -20200508 20200508 yes yes - -20200514 20200514 yes yes - -20200520 20200520 yes yes - -20200526 20200526 yes yes - -20200601 20200601 yes yes - -20200607 20200607 yes yes - -20200613 20200613 yes yes - -20200619 20200619 yes yes - -20200625 20200625 yes yes - -20200701 20200701 yes yes - -20200707 20200707 yes yes - -20200713 20200713 yes yes - -20200719 20200719 yes yes - -20200725 20200725 yes yes - -20200731 20200731 yes yes - -20200806 20200806 yes yes - -20200812 20200812 yes yes - -20200818 20200818 yes yes - -20200824 20200824 yes yes - -20200830 20200830 yes yes - -20200905 20200905 yes yes - -20200911 20200911 yes yes - -20200917 20200917 yes yes - -20200923 20200923 yes yes - -20200929 20200929 yes yes - -20201005 20201005 yes yes - -20201011 20201011 yes yes - -20201017 20201017 yes yes - -20201023 20201023 yes yes - -20201029 20201029 yes yes - -20201104 20201104 yes yes - -20201110 20201110 yes yes - -20201116 20201116 yes yes - -20201122 20201122 yes yes - -20201128 20201128 yes yes - -20201204 20201204 yes yes - -20201210 20201210 yes yes - -20201216 20201216 yes yes - -20201222 20201222 yes yes - -20201228 20201228 yes yes - -20210103 20210103 yes yes - -20210109 20210109 yes yes - -20210115 20210115 yes yes - -20210121 20210121 yes yes - -20210127 20210127 yes yes - -20210202 20210202 yes yes - -20210208 20210208 yes yes - -20210214 20210214 yes yes - -20210220 20210220 yes yes - -20210226 20210226 yes yes - -20210304 20210304 yes yes - -20210310 20210310 yes yes - -20210316 20210316 yes yes - -20210322 20210322 yes yes - -20210328 20210328 yes yes - -20210403 20210403 yes yes - -20210409 20210409 yes yes - -20210415 20210415 yes yes - -20210421 20210421 yes yes - -20210427 20210427 yes yes - -20210503 20210503 yes yes - -20210509 20210509 yes yes - -20210515 20210515 yes yes - -20210521 20210521 yes yes - -20210527 20210527 yes yes - -20210602 20210602 yes yes - -20210608 20210608 yes yes - -20210614 20210614 yes yes - -20210620 20210620 yes yes - -20210626 20210626 yes yes - -20210702 20210702 yes yes - -20210708 20210708 yes yes - -20210714 20210714 yes yes - -20210720 20210720 yes yes - -20210726 20210726 yes yes - -20210801 20210801 yes yes - -20210807 20210807 yes yes - -20210813 20210813 yes yes - -20210819 20210819 yes yes - -20210825 20210825 yes yes - -20210831 20210831 yes yes - -20210906 20210906 yes yes pendingpending - -20210912 20210912 yes yes processed with errorsprocessed with errors - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - -Running LiCSAlert for 20210906Running LiCSAlert for 20210906 - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:27:42 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:27:42 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:27:42 - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(686)run_LiCSAlert_status() - 684  pdb.set_trace() - 685  # 6: Check if we want to make all the figures (which is time consuming), or just the last one. ---> 686  if not figure_intermediate: - 687  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 688  pending = [pending[-1]] -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(686)run_LiCSAlert_status() - 684  pdb.set_trace() - 685  # 6: Check if we want to make all the figures (which is time consuming), or just the last one. ---> 686  if not figure_intermediate: - 687  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 688  pending = [pending[-1]] -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(686)run_LiCSAlert_status() - 684  pdb.set_trace() - 685  # 6: Check if we want to make all the figures (which is time consuming), or just the last one. ---> 686  if not figure_intermediate: - 687  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 688  pending = [pending[-1]] - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(686)run_LiCSAlert_status() - 684  pdb.set_trace() - 685  # 6: Check if we want to make all the figures (which is time consuming), or just the last one. ---> 686  if not figure_intermediate: - 687  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 688  pending = [pending[-1]] -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(686)run_LiCSAlert_status() - 684  pdb.set_trace() - 685  # 6: Check if we want to make all the figures (which is time consuming), or just the last one. ---> 686  if not figure_intermediate: - 687  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 688  pending = [pending[-1]] -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(686)run_LiCSAlert_status() - 684  pdb.set_trace() - 685  # 6: Check if we want to make all the figures (which is time consuming), or just the last one. ---> 686  if not figure_intermediate: - 687  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 688  pending = [pending[-1]] - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - - - -********* NameError: name '_spyderpdb_locals' is not definedNameError: name '_spyderpdb_locals' is not definedNameError: name '_spyderpdb_locals' is not defined - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.auxReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.auxReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux - - -************************************************************************************************************************ - - -Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging... - - -************************************************************************************************************************ - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(16)() - 14  - 15 import licsalert ----> 16 from licsalert.monitoring_functions import LiCSAlert_monitoring_mode - 17  - 18 #ICASAR_path = Path("/home/matthew/university_work/15_my_software_releases/ICASAR-2.13/") # location of ICASAR functions -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(16)() - 14  - 15 import licsalert ----> 16 from licsalert.monitoring_functions import LiCSAlert_monitoring_mode - 17  - 18 #ICASAR_path = Path("/home/matthew/university_work/15_my_software_releases/ICASAR-2.13/") # location of ICASAR functions -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(16)() - 14  - 15 import licsalert ----> 16 from licsalert.monitoring_functions import LiCSAlert_monitoring_mode - 17  - 18 #ICASAR_path = Path("/home/matthew/university_work/15_my_software_releases/ICASAR-2.13/") # location of ICASAR functions - - - ---KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:35:08 -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. -LiCSAlert_preprocessing: mean centering the interferograms before downsampling -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. -LiCSBAS date Past baseline LiCSAlert To process -20141031 no -20141218 no -20150111 no -20150123 no -20150216 no -20150228 no -20150312 no -20150324 no -20150405 no -20150429 no -20150511 no -20150523 no -20150604 no -20150710 no -20150722 no -20150815 no -20150920 no -20151002 no -20151014 no -20151107 no -20151119 no -20151201 no -20151213 no -20151225 no -20160106 no -20160118 no -20160211 no -20160223 no -20160306 no -20160318 no -20160330 no -20160411 no -20160505 no -20160517 no -20160529 no -20160610 no -20160704 no -20160716 no -20160728 no -20160809 no -20160821 no -20160902 no -20160914 no -20160926 no -20161002 no -20161008 no -20161014 no -20161020 no -20161026 no -20161101 no -20161107 no -20161113 no -20161119 no -20161201 no -20161207 no -20161213 no -20161219 no -20161225 no -20161231 no -20170112 yes -20170118 yes -20170124 yes -20170130 yes -20170205 yes -20170211 yes -20170223 yes -20170301 yes -20170307 yes -20170313 yes -20170319 yes -20170325 yes -20170331 yes -20170406 yes -20170412 yes -20170418 yes -20170424 yes -20170430 yes -20170506 yes -20170512 yes -20170518 yes -20170524 yes -20170530 yes -20170605 yes -20170611 yes -20170617 yes -20170623 yes -20170629 yes -20170705 yes -20170711 yes -20170717 yes -20170723 yes -20170729 yes -20170804 yes -20170816 yes -20170822 yes -20170828 yes -20170903 yes -20170909 yes -20170915 yes -20170921 yes -20170927 yes -20171009 yes -20171015 yes -20171021 yes -20171027 yes -20171102 yes -20171108 yes -20171114 yes -20171120 yes -20171202 yes -20171208 yes -20171214 yes -20171226 yes -20180101 yes -20180107 yes -20180113 yes -20180119 yes -20180125 yes -20180131 yes -20180206 yes -20180218 yes -20180224 yes -20180302 yes -20180308 yes -20180314 yes -20180320 yes -20180326 yes -20180401 yes -20180407 yes -20180413 yes -20180419 yes -20180425 yes -20180501 yes -20180507 yes -20180513 yes -20180519 yes -20180525 yes -20180531 yes -20180606 yes -20180612 yes -20180618 yes -20180630 yes -20180712 yes -20180718 yes -20180724 yes -20180730 yes -20180805 yes -20180811 yes -20180817 yes -20180823 yes -20180829 yes -20180904 yes -20180910 yes -20180916 yes -20180922 yes -20180928 yes -20181004 yes -20181010 yes -20181016 yes -20181022 yes -20181028 yes -20181109 yes -20181115 yes -20181121 yes -20181127 yes -20181203 yes -20181209 yes -20181215 yes -20181221 yes -20181227 yes -20190102 yes -20190108 yes -20190114 yes -20190120 yes -20190126 yes -20190201 yes -20190207 yes -20190213 yes -20190225 yes -20190303 yes -20190309 yes -20190321 yes -20190402 yes -20190408 yes -20190414 yes -20190420 yes -20190426 yes -20190502 yes -20190508 yes -20190520 yes -20190526 yes -20190601 yes -20190607 yes -20190613 yes -20190625 yes -20190701 yes -20190707 yes -20190713 yes -20190719 yes -20190725 yes -20190731 yes -20190806 yes -20190812 yes -20190818 yes -20190824 yes -20190830 yes -20190905 yes -20190911 yes -20190917 yes -20190923 yes -20191005 yes -20191011 yes -20191017 yes -20191023 yes -20191029 yes -20191104 yes -20191116 yes -20191122 yes -20191128 yes -20191204 yes -20191210 yes -20191216 yes -20191222 yes -20191228 yes -20200103 yes -20200109 yes -20200115 yes -20200121 yes -20200127 yes -20200202 yes -20200208 yes -20200214 yes -20200220 yes -20200226 yes -20200303 yes -20200309 yes -20200315 yes -20200321 yes -20200402 yes -20200408 yes -20200414 yes -20200420 yes -20200426 yes -20200502 yes -20200508 yes -20200514 yes -20200520 yes -20200526 yes -20200601 yes -20200607 yes -20200613 yes -20200619 yes -20200625 yes -20200701 yes -20200707 yes -20200713 yes -20200719 yes -20200725 yes -20200731 yes -20200806 yes -20200812 yes -20200818 yes -20200824 yes -20200830 yes -20200905 yes -20200911 yes -20200917 yes -20200923 yes -20200929 yes -20201005 yes -20201011 yes -20201017 yes -20201023 yes -20201029 yes -20201104 yes -20201110 yes -20201116 yes -20201122 yes -20201128 yes -20201204 yes -20201210 yes -20201216 yes -20201222 yes -20201228 yes -20210103 yes -20210109 yes -20210115 yes -20210121 yes -20210127 yes -20210202 yes -20210208 yes -20210214 yes -20210220 yes -20210226 yes -20210304 yes -20210310 yes -20210316 yes -20210322 yes -20210328 yes -20210403 yes -20210409 yes -20210415 yes -20210421 yes -20210427 yes -20210503 yes -20210509 yes -20210515 yes -20210521 yes -20210527 yes -20210602 yes -20210608 yes -20210614 yes -20210620 yes -20210626 yes -20210702 yes -20210708 yes -20210714 yes -20210720 yes -20210726 yes -20210801 yes -20210807 yes -20210813 yes -20210819 yes -20210825 yes -20210831 yes -20210906 yes -20210912 yes not processedto process -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. -**************************************** -Entering post mortem debugging... -**************************************** -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(148)LiCSAlert_monitoring_mode() - 146  # 4c: Main loop to run LiCSAlert for each date that is required - 147  ---> 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - 150  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:36:03 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:36:03 - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(702)run_LiCSAlert_status() - 700  - 701  # 8: Print the information to the terminal (and the sys.out file) ---> 702  print(f"LiCSBAS date Past baseline LiCSAlert To process") - 703  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 704  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(702)run_LiCSAlert_status() - 700  - 701  # 8: Print the information to the terminal (and the sys.out file) ---> 702  print(f"LiCSBAS date Past baseline LiCSAlert To process") - 703  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 704  print(f"{date} ", end = '') - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - -20141031 20141031 no no - -20141218 20141218 no no - -20150111 20150111 no no - -20150123 20150123 no no - -20150216 20150216 no no - -20150228 20150228 no no - -20150312 20150312 no no - -20150324 20150324 no no - -20150405 20150405 no no - -20150429 20150429 no no - -20150511 20150511 no no - -20150523 20150523 no no - -20150604 20150604 no no - -20150710 20150710 no no - -20150722 20150722 no no - -20150815 20150815 no no - -20150920 20150920 no no - -20151002 20151002 no no - -20151014 20151014 no no - -20151107 20151107 no no - -20151119 20151119 no no - -20151201 20151201 no no - -20151213 20151213 no no - -20151225 20151225 no no - -20160106 20160106 no no - -20160118 20160118 no no - -20160211 20160211 no no - -20160223 20160223 no no - -20160306 20160306 no no - -20160318 20160318 no no - -20160330 20160330 no no - -20160411 20160411 no no - -20160505 20160505 no no - -20160517 20160517 no no - -20160529 20160529 no no - -20160610 20160610 no no - -20160704 20160704 no no - -20160716 20160716 no no - -20160728 20160728 no no - -20160809 20160809 no no - -20160821 20160821 no no - -20160902 20160902 no no - -20160914 20160914 no no - -20160926 20160926 no no - -20161002 20161002 no no - -20161008 20161008 no no - -20161014 20161014 no no - -20161020 20161020 no no - -20161026 20161026 no no - -20161101 20161101 no no - -20161107 20161107 no no - -20161113 20161113 no no - -20161119 20161119 no no - -20161201 20161201 no no - -20161207 20161207 no no - -20161213 20161213 no no - -20161219 20161219 no no - -20161225 20161225 no no - -20161231 20161231 no no - -20170112 20170112 yes yes - -20170118 20170118 yes yes - -20170124 20170124 yes yes - -20170130 20170130 yes yes - -20170205 20170205 yes yes - -20170211 20170211 yes yes - -20170223 20170223 yes yes - -20170301 20170301 yes yes - -20170307 20170307 yes yes - -20170313 20170313 yes yes - -20170319 20170319 yes yes - -20170325 20170325 yes yes - -20170331 20170331 yes yes - -20170406 20170406 yes yes - -20170412 20170412 yes yes - -20170418 20170418 yes yes - -20170424 20170424 yes yes - -20170430 20170430 yes yes - -20170506 20170506 yes yes - -20170512 20170512 yes yes - -20170518 20170518 yes yes - -20170524 20170524 yes yes - -20170530 20170530 yes yes - -20170605 20170605 yes yes - -20170611 20170611 yes yes - -20170617 20170617 yes yes - -20170623 20170623 yes yes - -20170629 20170629 yes yes - -20170705 20170705 yes yes - -20170711 20170711 yes yes - -20170717 20170717 yes yes - -20170723 20170723 yes yes - -20170729 20170729 yes yes - -20170804 20170804 yes yes - -20170816 20170816 yes yes - -20170822 20170822 yes yes - -20170828 20170828 yes yes - -20170903 20170903 yes yes - -20170909 20170909 yes yes - -20170915 20170915 yes yes - -20170921 20170921 yes yes - -20170927 20170927 yes yes - -20171009 20171009 yes yes - -20171015 20171015 yes yes - -20171021 20171021 yes yes - -20171027 20171027 yes yes - -20171102 20171102 yes yes - -20171108 20171108 yes yes - -20171114 20171114 yes yes - -20171120 20171120 yes yes - -20171202 20171202 yes yes - -20171208 20171208 yes yes - -20171214 20171214 yes yes - -20171226 20171226 yes yes - -20180101 20180101 yes yes - -20180107 20180107 yes yes - -20180113 20180113 yes yes - -20180119 20180119 yes yes - -20180125 20180125 yes yes - -20180131 20180131 yes yes - -20180206 20180206 yes yes - -20180218 20180218 yes yes - -20180224 20180224 yes yes - -20180302 20180302 yes yes - -20180308 20180308 yes yes - -20180314 20180314 yes yes - -20180320 20180320 yes yes - -20180326 20180326 yes yes - -20180401 20180401 yes yes - -20180407 20180407 yes yes - -20180413 20180413 yes yes - -20180419 20180419 yes yes - -20180425 20180425 yes yes - -20180501 20180501 yes yes - -20180507 20180507 yes yes - -20180513 20180513 yes yes - -20180519 20180519 yes yes - -20180525 20180525 yes yes - -20180531 20180531 yes yes - -20180606 20180606 yes yes - -20180612 20180612 yes yes - -20180618 20180618 yes yes - -20180630 20180630 yes yes - -20180712 20180712 yes yes - -20180718 20180718 yes yes - -20180724 20180724 yes yes - -20180730 20180730 yes yes - -20180805 20180805 yes yes - -20180811 20180811 yes yes - -20180817 20180817 yes yes - -20180823 20180823 yes yes - -20180829 20180829 yes yes - -20180904 20180904 yes yes - -20180910 20180910 yes yes - -20180916 20180916 yes yes - -20180922 20180922 yes yes - -20180928 20180928 yes yes - -20181004 20181004 yes yes - -20181010 20181010 yes yes - -20181016 20181016 yes yes - -20181022 20181022 yes yes - -20181028 20181028 yes yes - -20181109 20181109 yes yes - -20181115 20181115 yes yes - -20181121 20181121 yes yes - -20181127 20181127 yes yes - -20181203 20181203 yes yes - -20181209 20181209 yes yes - -20181215 20181215 yes yes - -20181221 20181221 yes yes - -20181227 20181227 yes yes - -20190102 20190102 yes yes - -20190108 20190108 yes yes - -20190114 20190114 yes yes - -20190120 20190120 yes yes - -20190126 20190126 yes yes - -20190201 20190201 yes yes - -20190207 20190207 yes yes - -20190213 20190213 yes yes - -20190225 20190225 yes yes - -20190303 20190303 yes yes - -20190309 20190309 yes yes - -20190321 20190321 yes yes - -20190402 20190402 yes yes - -20190408 20190408 yes yes - -20190414 20190414 yes yes - -20190420 20190420 yes yes - -20190426 20190426 yes yes - -20190502 20190502 yes yes - -20190508 20190508 yes yes - -20190520 20190520 yes yes - -20190526 20190526 yes yes - -20190601 20190601 yes yes - -20190607 20190607 yes yes - -20190613 20190613 yes yes - -20190625 20190625 yes yes - -20190701 20190701 yes yes - -20190707 20190707 yes yes - -20190713 20190713 yes yes - -20190719 20190719 yes yes - -20190725 20190725 yes yes - -20190731 20190731 yes yes - -20190806 20190806 yes yes - -20190812 20190812 yes yes - -20190818 20190818 yes yes - -20190824 20190824 yes yes - -20190830 20190830 yes yes - -20190905 20190905 yes yes - -20190911 20190911 yes yes - -20190917 20190917 yes yes - -20190923 20190923 yes yes - -20191005 20191005 yes yes - -20191011 20191011 yes yes - -20191017 20191017 yes yes - -20191023 20191023 yes yes - -20191029 20191029 yes yes - -20191104 20191104 yes yes - -20191116 20191116 yes yes - -20191122 20191122 yes yes - -20191128 20191128 yes yes - -20191204 20191204 yes yes - -20191210 20191210 yes yes - -20191216 20191216 yes yes - -20191222 20191222 yes yes - -20191228 20191228 yes yes - -20200103 20200103 yes yes - -20200109 20200109 yes yes - -20200115 20200115 yes yes - -20200121 20200121 yes yes - -20200127 20200127 yes yes - -20200202 20200202 yes yes - -20200208 20200208 yes yes - -20200214 20200214 yes yes - -20200220 20200220 yes yes - -20200226 20200226 yes yes - -20200303 20200303 yes yes - -20200309 20200309 yes yes - -20200315 20200315 yes yes - -20200321 20200321 yes yes - -20200402 20200402 yes yes - -20200408 20200408 yes yes - -20200414 20200414 yes yes - -20200420 20200420 yes yes - -20200426 20200426 yes yes - -20200502 20200502 yes yes - -20200508 20200508 yes yes - -20200514 20200514 yes yes - -20200520 20200520 yes yes - -20200526 20200526 yes yes - -20200601 20200601 yes yes - -20200607 20200607 yes yes - -20200613 20200613 yes yes - -20200619 20200619 yes yes - -20200625 20200625 yes yes - -20200701 20200701 yes yes - -20200707 20200707 yes yes - -20200713 20200713 yes yes - -20200719 20200719 yes yes - -20200725 20200725 yes yes - -20200731 20200731 yes yes - -20200806 20200806 yes yes - -20200812 20200812 yes yes - -20200818 20200818 yes yes - -20200824 20200824 yes yes - -20200830 20200830 yes yes - -20200905 20200905 yes yes - -20200911 20200911 yes yes - -20200917 20200917 yes yes - -20200923 20200923 yes yes - -20200929 20200929 yes yes - -20201005 20201005 yes yes - -20201011 20201011 yes yes - -20201017 20201017 yes yes - -20201023 20201023 yes yes - -20201029 20201029 yes yes - -20201104 20201104 yes yes - -20201110 20201110 yes yes - -20201116 20201116 yes yes - -20201122 20201122 yes yes - -20201128 20201128 yes yes - -20201204 20201204 yes yes - -20201210 20201210 yes yes - -20201216 20201216 yes yes - -20201222 20201222 yes yes - -20201228 20201228 yes yes - -20210103 20210103 yes yes - -20210109 20210109 yes yes - -20210115 20210115 yes yes - -20210121 20210121 yes yes - -20210127 20210127 yes yes - -20210202 20210202 yes yes - -20210208 20210208 yes yes - -20210214 20210214 yes yes - -20210220 20210220 yes yes - -20210226 20210226 yes yes - -20210304 20210304 yes yes - -20210310 20210310 yes yes - -20210316 20210316 yes yes - -20210322 20210322 yes yes - -20210328 20210328 yes yes - -20210403 20210403 yes yes - -20210409 20210409 yes yes - -20210415 20210415 yes yes - -20210421 20210421 yes yes - -20210427 20210427 yes yes - -20210503 20210503 yes yes - -20210509 20210509 yes yes - -20210515 20210515 yes yes - -20210521 20210521 yes yes - -20210527 20210527 yes yes - -20210602 20210602 yes yes - -20210608 20210608 yes yes - -20210614 20210614 yes yes - -20210620 20210620 yes yes - -20210626 20210626 yes yes - -20210702 20210702 yes yes - -20210708 20210708 yes yes - -20210714 20210714 yes yes - -20210720 20210720 yes yes - -20210726 20210726 yes yes - -20210801 20210801 yes yes - -20210807 20210807 yes yes - -20210813 20210813 yes yes - -20210819 20210819 yes yes - -20210825 20210825 yes yes - -20210831 20210831 yes yes - -20210906 20210906 yes yes - -20210912 20210912 yes yes not processednot processedto processto process - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:37:33 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:37:33 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:37:33 - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(702)run_LiCSAlert_status() - 700  - 701  # 8: Print the information to the terminal (and the sys.out file) ---> 702  print(f"LiCSBAS date Past baseline LiCSAlert To process") - 703  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 704  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(702)run_LiCSAlert_status() - 700  - 701  # 8: Print the information to the terminal (and the sys.out file) ---> 702  print(f"LiCSBAS date Past baseline LiCSAlert To process") - 703  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 704  print(f"{date} ", end = '') -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(702)run_LiCSAlert_status() - 700  - 701  # 8: Print the information to the terminal (and the sys.out file) ---> 702  print(f"LiCSBAS date Past baseline LiCSAlert To process") - 703  for date_n, date in enumerate(sorted(licsbas_dates)): # iterate over all acquistisions - 704  print(f"{date} ", end = '') - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - -20141031 20141031 20141031 no no no - - -20141218 20141218 20141218 no no no - - -20150111 20150111 20150111 no no no - - -20150123 20150123 20150123 no no no - - -20150216 20150216 20150216 no no no - - -20150228 20150228 20150228 no no no - - -20150312 20150312 20150312 no no no - - -20150324 20150324 20150324 no no no - - -20150405 20150405 20150405 no no no - - -20150429 20150429 20150429 no no no - - -20150511 20150511 20150511 no no no - - -20150523 20150523 20150523 no no no - - -20150604 20150604 20150604 no no no - - -20150710 20150710 20150710 no no no - - -20150722 20150722 20150722 no no no - - -20150815 20150815 20150815 no no no - - -20150920 20150920 20150920 no no no - - -20151002 20151002 20151002 no no no - - -20151014 20151014 20151014 no no no - - -20151107 20151107 20151107 no no no - - -20151119 20151119 20151119 no no no - - -20151201 20151201 20151201 no no no - - -20151213 20151213 20151213 no no no - - -20151225 20151225 20151225 no no no - - -20160106 20160106 20160106 no no no - - -20160118 20160118 20160118 no no no - - -20160211 20160211 20160211 no no no - - -20160223 20160223 20160223 no no no - - -20160306 20160306 20160306 no no no - - -20160318 20160318 20160318 no no no - - -20160330 20160330 20160330 no no no - - -20160411 20160411 20160411 no no no - - -20160505 20160505 20160505 no no no - - -20160517 20160517 20160517 no no no - - -20160529 20160529 20160529 no no no - - -20160610 20160610 20160610 no no no - - -20160704 20160704 20160704 no no no - - -20160716 20160716 20160716 no no no - - -20160728 20160728 20160728 no no no - - -20160809 20160809 20160809 no no no - - -20160821 20160821 20160821 no no no - - -20160902 20160902 20160902 no no no - - -20160914 20160914 20160914 no no no - - -20160926 20160926 20160926 no no no - - -20161002 20161002 20161002 no no no - - -20161008 20161008 20161008 no no no - - -20161014 20161014 20161014 no no no - - -20161020 20161020 20161020 no no no - - -20161026 20161026 20161026 no no no - - -20161101 20161101 20161101 no no no - - -20161107 20161107 20161107 no no no - - -20161113 20161113 20161113 no no no - - -20161119 20161119 20161119 no no no - - -20161201 20161201 20161201 no no no - - -20161207 20161207 20161207 no no no - - -20161213 20161213 20161213 no no no - - -20161219 20161219 20161219 no no no - - -20161225 20161225 20161225 no no no - - -20161231 20161231 20161231 no no no - - -20170112 20170112 20170112 yes yes yes not processed not processed not processed to processto processto process - - -20170118 20170118 20170118 yes yes yes not processed not processed not processed to processto processto process - - -20170124 20170124 20170124 yes yes yes not processed not processed not processed to processto processto process - - -20170130 20170130 20170130 yes yes yes not processed not processed not processed to processto processto process - - -20170205 20170205 20170205 yes yes yes not processed not processed not processed to processto processto process - - -20170211 20170211 20170211 yes yes yes not processed not processed not processed to processto processto process - - -20170223 20170223 20170223 yes yes yes not processed not processed not processed to processto processto process - - -20170301 20170301 20170301 yes yes yes not processed not processed not processed to processto processto process - - -20170307 20170307 20170307 yes yes yes not processed not processed not processed to processto processto process - - -20170313 20170313 20170313 yes yes yes not processed not processed not processed to processto processto process - - -20170319 20170319 20170319 yes yes yes not processed not processed not processed to processto processto process - - -20170325 20170325 20170325 yes yes yes not processed not processed not processed to processto processto process - - -20170331 20170331 20170331 yes yes yes not processed not processed not processed to processto processto process - - -20170406 20170406 20170406 yes yes yes not processed not processed not processed to processto processto process - - -20170412 20170412 20170412 yes yes yes not processed not processed not processed to processto processto process - - -20170418 20170418 20170418 yes yes yes not processed not processed not processed to processto processto process - - -20170424 20170424 20170424 yes yes yes not processed not processed not processed to processto processto process - - -20170430 20170430 20170430 yes yes yes not processed not processed not processed to processto processto process - - -20170506 20170506 20170506 yes yes yes not processed not processed not processed to processto processto process - - -20170512 20170512 20170512 yes yes yes not processed not processed not processed to processto processto process - - -20170518 20170518 20170518 yes yes yes not processed not processed not processed to processto processto process - - -20170524 20170524 20170524 yes yes yes not processed not processed not processed to processto processto process - - -20170530 20170530 20170530 yes yes yes not processed not processed not processed to processto processto process - - -20170605 20170605 20170605 yes yes yes not processed not processed not processed to processto processto process - - -20170611 20170611 20170611 yes yes yes not processed not processed not processed to processto processto process - - -20170617 20170617 20170617 yes yes yes not processed not processed not processed to processto processto process - - -20170623 20170623 20170623 yes yes yes not processed not processed not processed to processto processto process - - -20170629 20170629 20170629 yes yes yes not processed not processed not processed to processto processto process - - -20170705 20170705 20170705 yes yes yes not processed not processed not processed to processto processto process - - -20170711 20170711 20170711 yes yes yes not processed not processed not processed to processto processto process - - -20170717 20170717 20170717 yes yes yes not processed not processed not processed to processto processto process - - -20170723 20170723 20170723 yes yes yes not processed not processed not processed to processto processto process - - -20170729 20170729 20170729 yes yes yes not processed not processed not processed to processto processto process - - -20170804 20170804 20170804 yes yes yes not processed not processed not processed to processto processto process - - -20170816 20170816 20170816 yes yes yes not processed not processed not processed to processto processto process - - -20170822 20170822 20170822 yes yes yes not processed not processed not processed to processto processto process - - -20170828 20170828 20170828 yes yes yes not processed not processed not processed to processto processto process - - -20170903 20170903 20170903 yes yes yes not processed not processed not processed to processto processto process - - -20170909 20170909 20170909 yes yes yes not processed not processed not processed to processto processto process - - -20170915 20170915 20170915 yes yes yes not processed not processed not processed to processto processto process - - -20170921 20170921 20170921 yes yes yes not processed not processed not processed to processto processto process - - -20170927 20170927 20170927 yes yes yes not processed not processed not processed to processto processto process - - -20171009 20171009 20171009 yes yes yes not processed not processed not processed to processto processto process - - -20171015 20171015 20171015 yes yes yes not processed not processed not processed to processto processto process - - -20171021 20171021 20171021 yes yes yes not processed not processed not processed to processto processto process - - -20171027 20171027 20171027 yes yes yes not processed not processed not processed to processto processto process - - -20171102 20171102 20171102 yes yes yes not processed not processed not processed to processto processto process - - -20171108 20171108 20171108 yes yes yes not processed not processed not processed to processto processto process - - -20171114 20171114 20171114 yes yes yes not processed not processed not processed to processto processto process - - -20171120 20171120 20171120 yes yes yes not processed not processed not processed to processto processto process - - -20171202 20171202 20171202 yes yes yes not processed not processed not processed to processto processto process - - -20171208 20171208 20171208 yes yes yes not processed not processed not processed to processto processto process - - -20171214 20171214 20171214 yes yes yes not processed not processed not processed to processto processto process - - -20171226 20171226 20171226 yes yes yes not processed not processed not processed to processto processto process - - -20180101 20180101 20180101 yes yes yes not processed not processed not processed to processto processto process - - -20180107 20180107 20180107 yes yes yes not processed not processed not processed to processto processto process - - -20180113 20180113 20180113 yes yes yes not processed not processed not processed to processto processto process - - -20180119 20180119 20180119 yes yes yes not processed not processed not processed to processto processto process - - -20180125 20180125 20180125 yes yes yes not processed not processed not processed to processto processto process - - -20180131 20180131 20180131 yes yes yes not processed not processed not processed to processto processto process - - -20180206 20180206 20180206 yes yes yes not processed not processed not processed to processto processto process - - -20180218 20180218 20180218 yes yes yes not processed not processed not processed to processto processto process - - -20180224 20180224 20180224 yes yes yes not processed not processed not processed to processto processto process - - -20180302 20180302 20180302 yes yes yes not processed not processed not processed to processto processto process - - -20180308 20180308 20180308 yes yes yes not processed not processed not processed to processto processto process - - -20180314 20180314 20180314 yes yes yes not processed not processed not processed to processto processto process - - -20180320 20180320 20180320 yes yes yes not processed not processed not processed to processto processto process - - -20180326 20180326 20180326 yes yes yes not processed not processed not processed to processto processto process - - -20180401 20180401 20180401 yes yes yes not processed not processed not processed to processto processto process - - -20180407 20180407 20180407 yes yes yes not processed not processed not processed to processto processto process - - -20180413 20180413 20180413 yes yes yes not processed not processed not processed to processto processto process - - -20180419 20180419 20180419 yes yes yes not processed not processed not processed to processto processto process - - -20180425 20180425 20180425 yes yes yes not processed not processed not processed to processto processto process - - -20180501 20180501 20180501 yes yes yes not processed not processed not processed to processto processto process - - -20180507 20180507 20180507 yes yes yes not processed not processed not processed to processto processto process - - -20180513 20180513 20180513 yes yes yes not processed not processed not processed to processto processto process - - -20180519 20180519 20180519 yes yes yes not processed not processed not processed to processto processto process - - -20180525 20180525 20180525 yes yes yes not processed not processed not processed to processto processto process - - -20180531 20180531 20180531 yes yes yes not processed not processed not processed to processto processto process - - -20180606 20180606 20180606 yes yes yes not processed not processed not processed to processto processto process - - -20180612 20180612 20180612 yes yes yes not processed not processed not processed to processto processto process - - -20180618 20180618 20180618 yes yes yes not processed not processed not processed to processto processto process - - -20180630 20180630 20180630 yes yes yes not processed not processed not processed to processto processto process - - -20180712 20180712 20180712 yes yes yes not processed not processed not processed to processto processto process - - -20180718 20180718 20180718 yes yes yes not processed not processed not processed to processto processto process - - -20180724 20180724 20180724 yes yes yes not processed not processed not processed to processto processto process - - -20180730 20180730 20180730 yes yes yes not processed not processed not processed to processto processto process - - -20180805 20180805 20180805 yes yes yes not processed not processed not processed to processto processto process - - -20180811 20180811 20180811 yes yes yes not processed not processed not processed to processto processto process - - -20180817 20180817 20180817 yes yes yes not processed not processed not processed to processto processto process - - -20180823 20180823 20180823 yes yes yes not processed not processed not processed to processto processto process - - -20180829 20180829 20180829 yes yes yes not processed not processed not processed to processto processto process - - -20180904 20180904 20180904 yes yes yes not processed not processed not processed to processto processto process - - -20180910 20180910 20180910 yes yes yes not processed not processed not processed to processto processto process - - -20180916 20180916 20180916 yes yes yes not processed not processed not processed to processto processto process - - -20180922 20180922 20180922 yes yes yes not processed not processed not processed to processto processto process - - -20180928 20180928 20180928 yes yes yes not processed not processed not processed to processto processto process - - -20181004 20181004 20181004 yes yes yes not processed not processed not processed to processto processto process - - -20181010 20181010 20181010 yes yes yes not processed not processed not processed to processto processto process - - -20181016 20181016 20181016 yes yes yes not processed not processed not processed to processto processto process - - -20181022 20181022 20181022 yes yes yes not processed not processed not processed to processto processto process - - -20181028 20181028 20181028 yes yes yes not processed not processed not processed to processto processto process - - -20181109 20181109 20181109 yes yes yes not processed not processed not processed to processto processto process - - -20181115 20181115 20181115 yes yes yes not processed not processed not processed to processto processto process - - -20181121 20181121 20181121 yes yes yes not processed not processed not processed to processto processto process - - -20181127 20181127 20181127 yes yes yes not processed not processed not processed to processto processto process - - -20181203 20181203 20181203 yes yes yes not processed not processed not processed to processto processto process - - -20181209 20181209 20181209 yes yes yes not processed not processed not processed to processto processto process - - -20181215 20181215 20181215 yes yes yes not processed not processed not processed to processto processto process - - -20181221 20181221 20181221 yes yes yes not processed not processed not processed to processto processto process - - -20181227 20181227 20181227 yes yes yes not processed not processed not processed to processto processto process - - -20190102 20190102 20190102 yes yes yes not processed not processed not processed to processto processto process - - -20190108 20190108 20190108 yes yes yes not processed not processed not processed to processto processto process - - -20190114 20190114 20190114 yes yes yes not processed not processed not processed to processto processto process - - -20190120 20190120 20190120 yes yes yes not processed not processed not processed to processto processto process - - -20190126 20190126 20190126 yes yes yes not processed not processed not processed to processto processto process - - -20190201 20190201 20190201 yes yes yes not processed not processed not processed to processto processto process - - -20190207 20190207 20190207 yes yes yes not processed not processed not processed to processto processto process - - -20190213 20190213 20190213 yes yes yes not processed not processed not processed to processto processto process - - -20190225 20190225 20190225 yes yes yes not processed not processed not processed to processto processto process - - -20190303 20190303 20190303 yes yes yes not processed not processed not processed to processto processto process - - -20190309 20190309 20190309 yes yes yes not processed not processed not processed to processto processto process - - -20190321 20190321 20190321 yes yes yes not processed not processed not processed to processto processto process - - -20190402 20190402 20190402 yes yes yes not processed not processed not processed to processto processto process - - -20190408 20190408 20190408 yes yes yes not processed not processed not processed to processto processto process - - -20190414 20190414 20190414 yes yes yes not processed not processed not processed to processto processto process - - -20190420 20190420 20190420 yes yes yes not processed not processed not processed to processto processto process - - -20190426 20190426 20190426 yes yes yes not processed not processed not processed to processto processto process - - -20190502 20190502 20190502 yes yes yes not processed not processed not processed to processto processto process - - -20190508 20190508 20190508 yes yes yes not processed not processed not processed to processto processto process - - -20190520 20190520 20190520 yes yes yes not processed not processed not processed to processto processto process - - -20190526 20190526 20190526 yes yes yes not processed not processed not processed to processto processto process - - -20190601 20190601 20190601 yes yes yes not processed not processed not processed to processto processto process - - -20190607 20190607 20190607 yes yes yes not processed not processed not processed to processto processto process - - -20190613 20190613 20190613 yes yes yes not processed not processed not processed to processto processto process - - -20190625 20190625 20190625 yes yes yes not processed not processed not processed to processto processto process - - -20190701 20190701 20190701 yes yes yes not processed not processed not processed to processto processto process - - -20190707 20190707 20190707 yes yes yes not processed not processed not processed to processto processto process - - -20190713 20190713 20190713 yes yes yes not processed not processed not processed to processto processto process - - -20190719 20190719 20190719 yes yes yes not processed not processed not processed to processto processto process - - -20190725 20190725 20190725 yes yes yes not processed not processed not processed to processto processto process - - -20190731 20190731 20190731 yes yes yes not processed not processed not processed to processto processto process - - -20190806 20190806 20190806 yes yes yes not processed not processed not processed to processto processto process - - -20190812 20190812 20190812 yes yes yes not processed not processed not processed to processto processto process - - -20190818 20190818 20190818 yes yes yes not processed not processed not processed to processto processto process - - -20190824 20190824 20190824 yes yes yes not processed not processed not processed to processto processto process - - -20190830 20190830 20190830 yes yes yes not processed not processed not processed to processto processto process - - -20190905 20190905 20190905 yes yes yes not processed not processed not processed to processto processto process - - -20190911 20190911 20190911 yes yes yes not processed not processed not processed to processto processto process - - -20190917 20190917 20190917 yes yes yes not processed not processed not processed to processto processto process - - -20190923 20190923 20190923 yes yes yes not processed not processed not processed to processto processto process - - -20191005 20191005 20191005 yes yes yes not processed not processed not processed to processto processto process - - -20191011 20191011 20191011 yes yes yes not processed not processed not processed to processto processto process - - -20191017 20191017 20191017 yes yes yes not processed not processed not processed to processto processto process - - -20191023 20191023 20191023 yes yes yes not processed not processed not processed to processto processto process - - -20191029 20191029 20191029 yes yes yes not processed not processed not processed to processto processto process - - -20191104 20191104 20191104 yes yes yes not processed not processed not processed to processto processto process - - -20191116 20191116 20191116 yes yes yes not processed not processed not processed to processto processto process - - -20191122 20191122 20191122 yes yes yes not processed not processed not processed to processto processto process - - -20191128 20191128 20191128 yes yes yes not processed not processed not processed to processto processto process - - -20191204 20191204 20191204 yes yes yes not processed not processed not processed to processto processto process - - -20191210 20191210 20191210 yes yes yes not processed not processed not processed to processto processto process - - -20191216 20191216 20191216 yes yes yes not processed not processed not processed to processto processto process - - -20191222 20191222 20191222 yes yes yes not processed not processed not processed to processto processto process - - -20191228 20191228 20191228 yes yes yes not processed not processed not processed to processto processto process - - -20200103 20200103 20200103 yes yes yes not processed not processed not processed to processto processto process - - -20200109 20200109 20200109 yes yes yes not processed not processed not processed to processto processto process - - -20200115 20200115 20200115 yes yes yes not processed not processed not processed to processto processto process - - -20200121 20200121 20200121 yes yes yes not processed not processed not processed to processto processto process - - -20200127 20200127 20200127 yes yes yes not processed not processed not processed to processto processto process - - -20200202 20200202 20200202 yes yes yes not processed not processed not processed to processto processto process - - -20200208 20200208 20200208 yes yes yes not processed not processed not processed to processto processto process - - -20200214 20200214 20200214 yes yes yes not processed not processed not processed to processto processto process - - -20200220 20200220 20200220 yes yes yes not processed not processed not processed to processto processto process - - -20200226 20200226 20200226 yes yes yes not processed not processed not processed to processto processto process - - -20200303 20200303 20200303 yes yes yes not processed not processed not processed to processto processto process - - -20200309 20200309 20200309 yes yes yes not processed not processed not processed to processto processto process - - -20200315 20200315 20200315 yes yes yes not processed not processed not processed to processto processto process - - -20200321 20200321 20200321 yes yes yes not processed not processed not processed to processto processto process - - -20200402 20200402 20200402 yes yes yes not processed not processed not processed to processto processto process - - -20200408 20200408 20200408 yes yes yes not processed not processed not processed to processto processto process - - -20200414 20200414 20200414 yes yes yes not processed not processed not processed to processto processto process - - -20200420 20200420 20200420 yes yes yes not processed not processed not processed to processto processto process - - -20200426 20200426 20200426 yes yes yes not processed not processed not processed to processto processto process - - -20200502 20200502 20200502 yes yes yes not processed not processed not processed to processto processto process - - -20200508 20200508 20200508 yes yes yes not processed not processed not processed to processto processto process - - -20200514 20200514 20200514 yes yes yes not processed not processed not processed to processto processto process - - -20200520 20200520 20200520 yes yes yes not processed not processed not processed to processto processto process - - -20200526 20200526 20200526 yes yes yes not processed not processed not processed to processto processto process - - -20200601 20200601 20200601 yes yes yes not processed not processed not processed to processto processto process - - -20200607 20200607 20200607 yes yes yes not processed not processed not processed to processto processto process - - -20200613 20200613 20200613 yes yes yes not processed not processed not processed to processto processto process - - -20200619 20200619 20200619 yes yes yes not processed not processed not processed to processto processto process - - -20200625 20200625 20200625 yes yes yes not processed not processed not processed to processto processto process - - -20200701 20200701 20200701 yes yes yes not processed not processed not processed to processto processto process - - -20200707 20200707 20200707 yes yes yes not processed not processed not processed to processto processto process - - -20200713 20200713 20200713 yes yes yes not processed not processed not processed to processto processto process - - -20200719 20200719 20200719 yes yes yes not processed not processed not processed to processto processto process - - -20200725 20200725 20200725 yes yes yes not processed not processed not processed to processto processto process - - -20200731 20200731 20200731 yes yes yes not processed not processed not processed to processto processto process - - -20200806 20200806 20200806 yes yes yes not processed not processed not processed to processto processto process - - -20200812 20200812 20200812 yes yes yes not processed not processed not processed to processto processto process - - -20200818 20200818 20200818 yes yes yes not processed not processed not processed to processto processto process - - -20200824 20200824 20200824 yes yes yes not processed not processed not processed to processto processto process - - -20200830 20200830 20200830 yes yes yes not processed not processed not processed to processto processto process - - -20200905 20200905 20200905 yes yes yes not processed not processed not processed to processto processto process - - -20200911 20200911 20200911 yes yes yes not processed not processed not processed to processto processto process - - -20200917 20200917 20200917 yes yes yes not processed not processed not processed to processto processto process - - -20200923 20200923 20200923 yes yes yes not processed not processed not processed to processto processto process - - -20200929 20200929 20200929 yes yes yes not processed not processed not processed to processto processto process - - -20201005 20201005 20201005 yes yes yes not processed not processed not processed to processto processto process - - -20201011 20201011 20201011 yes yes yes not processed not processed not processed to processto processto process - - -20201017 20201017 20201017 yes yes yes not processed not processed not processed to processto processto process - - -20201023 20201023 20201023 yes yes yes not processed not processed not processed to processto processto process - - -20201029 20201029 20201029 yes yes yes not processed not processed not processed to processto processto process - - -20201104 20201104 20201104 yes yes yes not processed not processed not processed to processto processto process - - -20201110 20201110 20201110 yes yes yes not processed not processed not processed to processto processto process - - -20201116 20201116 20201116 yes yes yes not processed not processed not processed to processto processto process - - -20201122 20201122 20201122 yes yes yes not processed not processed not processed to processto processto process - - -20201128 20201128 20201128 yes yes yes not processed not processed not processed to processto processto process - - -20201204 20201204 20201204 yes yes yes not processed not processed not processed to processto processto process - - -20201210 20201210 20201210 yes yes yes not processed not processed not processed to processto processto process - - -20201216 20201216 20201216 yes yes yes not processed not processed not processed to processto processto process - - -20201222 20201222 20201222 yes yes yes not processed not processed not processed to processto processto process - - -20201228 20201228 20201228 yes yes yes not processed not processed not processed to processto processto process - - -20210103 20210103 20210103 yes yes yes not processed not processed not processed to processto processto process - - -20210109 20210109 20210109 yes yes yes not processed not processed not processed to processto processto process - - -20210115 20210115 20210115 yes yes yes not processed not processed not processed to processto processto process - - -20210121 20210121 20210121 yes yes yes not processed not processed not processed to processto processto process - - -20210127 20210127 20210127 yes yes yes not processed not processed not processed to processto processto process - - -20210202 20210202 20210202 yes yes yes not processed not processed not processed to processto processto process - - -20210208 20210208 20210208 yes yes yes not processed not processed not processed to processto processto process - - -20210214 20210214 20210214 yes yes yes not processed not processed not processed to processto processto process - - -20210220 20210220 20210220 yes yes yes not processed not processed not processed to processto processto process - - -20210226 20210226 20210226 yes yes yes not processed not processed not processed to processto processto process - - -20210304 20210304 20210304 yes yes yes not processed not processed not processed to processto processto process - - -20210310 20210310 20210310 yes yes yes not processed not processed not processed to processto processto process - - -20210316 20210316 20210316 yes yes yes not processed not processed not processed to processto processto process - - -20210322 20210322 20210322 yes yes yes not processed not processed not processed to processto processto process - - -20210328 20210328 20210328 yes yes yes not processed not processed not processed to processto processto process - - -20210403 20210403 20210403 yes yes yes not processed not processed not processed to processto processto process - - -20210409 20210409 20210409 yes yes yes not processed not processed not processed to processto processto process - - -20210415 20210415 20210415 yes yes yes not processed not processed not processed to processto processto process - - -20210421 20210421 20210421 yes yes yes not processed not processed not processed to processto processto process - - -20210427 20210427 20210427 yes yes yes not processed not processed not processed to processto processto process - - -20210503 20210503 20210503 yes yes yes not processed not processed not processed to processto processto process - - -20210509 20210509 20210509 yes yes yes not processed not processed not processed to processto processto process - - -20210515 20210515 20210515 yes yes yes not processed not processed not processed to processto processto process - - -20210521 20210521 20210521 yes yes yes not processed not processed not processed to processto processto process - - -20210527 20210527 20210527 yes yes yes not processed not processed not processed to processto processto process - - -20210602 20210602 20210602 yes yes yes not processed not processed not processed to processto processto process - - -20210608 20210608 20210608 yes yes yes not processed not processed not processed to processto processto process - - -20210614 20210614 20210614 yes yes yes not processed not processed not processed to processto processto process - - -20210620 20210620 20210620 yes yes yes not processed not processed not processed to processto processto process - - -20210626 20210626 20210626 yes yes yes not processed not processed not processed to processto processto process - - -20210702 20210702 20210702 yes yes yes not processed not processed not processed to processto processto process - - -20210708 20210708 20210708 yes yes yes not processed not processed not processed to processto processto process - - -20210714 20210714 20210714 yes yes yes not processed not processed not processed to processto processto process - - -20210720 20210720 20210720 yes yes yes not processed not processed not processed to processto processto process - - -20210726 20210726 20210726 yes yes yes not processed not processed not processed to processto processto process - - -20210801 20210801 20210801 yes yes yes not processed not processed not processed to processto processto process - - -20210807 20210807 20210807 yes yes yes not processed not processed not processed to processto processto process - - -20210813 20210813 20210813 yes yes yes not processed not processed not processed to processto processto process - - -20210819 20210819 20210819 yes yes yes not processed not processed not processed to processto processto process - - -20210825 20210825 20210825 yes yes yes not processed not processed not processed to processto processto process - - -20210831 20210831 20210831 yes yes yes not processed not processed not processed to processto processto process - - -20210906 20210906 20210906 yes yes yes not processed not processed not processed to processto processto process - - -20210912 20210912 20210912 yes yes yes not processed not processed not processed to processto processto process - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - -20141031 20141031 20141031 no no no - - -20141218 20141218 20141218 no no no - - -20150111 20150111 20150111 no no no - - -20150123 20150123 20150123 no no no - - -20150216 20150216 20150216 no no no - - -20150228 20150228 20150228 no no no - - -20150312 20150312 20150312 no no no - - -20150324 20150324 20150324 no no no - - -20150405 20150405 20150405 no no no - - -20150429 20150429 20150429 no no no - - -20150511 20150511 20150511 no no no - - -20150523 20150523 20150523 no no no - - -20150604 20150604 20150604 no no no - - -20150710 20150710 20150710 no no no - - -20150722 20150722 20150722 no no no - - -20150815 20150815 20150815 no no no - - -20150920 20150920 20150920 no no no - - -20151002 20151002 20151002 no no no - - -20151014 20151014 20151014 no no no - - -20151107 20151107 20151107 no no no - - -20151119 20151119 20151119 no no no - - -20151201 20151201 20151201 no no no - - -20151213 20151213 20151213 no no no - - -20151225 20151225 20151225 no no no - - -20160106 20160106 20160106 no no no - - -20160118 20160118 20160118 no no no - - -20160211 20160211 20160211 no no no - - -20160223 20160223 20160223 no no no - - -20160306 20160306 20160306 no no no - - -20160318 20160318 20160318 no no no - - -20160330 20160330 20160330 no no no - - -20160411 20160411 20160411 no no no - - -20160505 20160505 20160505 no no no - - -20160517 20160517 20160517 no no no - - -20160529 20160529 20160529 no no no - - -20160610 20160610 20160610 no no no - - -20160704 20160704 20160704 no no no - - -20160716 20160716 20160716 no no no - - -20160728 20160728 20160728 no no no - - -20160809 20160809 20160809 no no no - - -20160821 20160821 20160821 no no no - - -20160902 20160902 20160902 no no no - - -20160914 20160914 20160914 no no no - - -20160926 20160926 20160926 no no no - - -20161002 20161002 20161002 no no no - - -20161008 20161008 20161008 no no no - - -20161014 20161014 20161014 no no no - - -20161020 20161020 20161020 no no no - - -20161026 20161026 20161026 no no no - - -20161101 20161101 20161101 no no no - - -20161107 20161107 20161107 no no no - - -20161113 20161113 20161113 no no no - - -20161119 20161119 20161119 no no no - - -20161201 20161201 20161201 no no no - - -20161207 20161207 20161207 no no no - - -20161213 20161213 20161213 no no no - - -20161219 20161219 20161219 no no no - - -20161225 20161225 20161225 no no no - - -20161231 20161231 20161231 no no no - - -20170112 20170112 20170112 yes yes yes not processed not processed not processed - - -20170118 20170118 20170118 yes yes yes not processed not processed not processed - - -20170124 20170124 20170124 yes yes yes not processed not processed not processed - - -20170130 20170130 20170130 yes yes yes not processed not processed not processed - - -20170205 20170205 20170205 yes yes yes not processed not processed not processed - - -20170211 20170211 20170211 yes yes yes not processed not processed not processed - - -20170223 20170223 20170223 yes yes yes not processed not processed not processed - - -20170301 20170301 20170301 yes yes yes not processed not processed not processed - - -20170307 20170307 20170307 yes yes yes not processed not processed not processed - - -20170313 20170313 20170313 yes yes yes not processed not processed not processed - - -20170319 20170319 20170319 yes yes yes not processed not processed not processed - - -20170325 20170325 20170325 yes yes yes not processed not processed not processed - - -20170331 20170331 20170331 yes yes yes not processed not processed not processed - - -20170406 20170406 20170406 yes yes yes not processed not processed not processed - - -20170412 20170412 20170412 yes yes yes not processed not processed not processed - - -20170418 20170418 20170418 yes yes yes not processed not processed not processed - - -20170424 20170424 20170424 yes yes yes not processed not processed not processed - - -20170430 20170430 20170430 yes yes yes not processed not processed not processed - - -20170506 20170506 20170506 yes yes yes not processed not processed not processed - - -20170512 20170512 20170512 yes yes yes not processed not processed not processed - - -20170518 20170518 20170518 yes yes yes not processed not processed not processed - - -20170524 20170524 20170524 yes yes yes not processed not processed not processed - - -20170530 20170530 20170530 yes yes yes not processed not processed not processed - - -20170605 20170605 20170605 yes yes yes not processed not processed not processed - - -20170611 20170611 20170611 yes yes yes not processed not processed not processed - - -20170617 20170617 20170617 yes yes yes not processed not processed not processed - - -20170623 20170623 20170623 yes yes yes not processed not processed not processed - - -20170629 20170629 20170629 yes yes yes not processed not processed not processed - - -20170705 20170705 20170705 yes yes yes not processed not processed not processed - - -20170711 20170711 20170711 yes yes yes not processed not processed not processed - - -20170717 20170717 20170717 yes yes yes not processed not processed not processed - - -20170723 20170723 20170723 yes yes yes not processed not processed not processed - - -20170729 20170729 20170729 yes yes yes not processed not processed not processed - - -20170804 20170804 20170804 yes yes yes not processed not processed not processed - - -20170816 20170816 20170816 yes yes yes not processed not processed not processed - - -20170822 20170822 20170822 yes yes yes not processed not processed not processed - - -20170828 20170828 20170828 yes yes yes not processed not processed not processed - - -20170903 20170903 20170903 yes yes yes not processed not processed not processed - - -20170909 20170909 20170909 yes yes yes not processed not processed not processed - - -20170915 20170915 20170915 yes yes yes not processed not processed not processed - - -20170921 20170921 20170921 yes yes yes not processed not processed not processed - - -20170927 20170927 20170927 yes yes yes not processed not processed not processed - - -20171009 20171009 20171009 yes yes yes not processed not processed not processed - - -20171015 20171015 20171015 yes yes yes not processed not processed not processed - - -20171021 20171021 20171021 yes yes yes not processed not processed not processed - - -20171027 20171027 20171027 yes yes yes not processed not processed not processed - - -20171102 20171102 20171102 yes yes yes not processed not processed not processed - - -20171108 20171108 20171108 yes yes yes not processed not processed not processed - - -20171114 20171114 20171114 yes yes yes not processed not processed not processed - - -20171120 20171120 20171120 yes yes yes not processed not processed not processed - - -20171202 20171202 20171202 yes yes yes not processed not processed not processed - - -20171208 20171208 20171208 yes yes yes not processed not processed not processed - - -20171214 20171214 20171214 yes yes yes not processed not processed not processed - - -20171226 20171226 20171226 yes yes yes not processed not processed not processed - - -20180101 20180101 20180101 yes yes yes not processed not processed not processed - - -20180107 20180107 20180107 yes yes yes not processed not processed not processed - - -20180113 20180113 20180113 yes yes yes not processed not processed not processed - - -20180119 20180119 20180119 yes yes yes not processed not processed not processed - - -20180125 20180125 20180125 yes yes yes not processed not processed not processed - - -20180131 20180131 20180131 yes yes yes not processed not processed not processed - - -20180206 20180206 20180206 yes yes yes not processed not processed not processed - - -20180218 20180218 20180218 yes yes yes not processed not processed not processed - - -20180224 20180224 20180224 yes yes yes not processed not processed not processed - - -20180302 20180302 20180302 yes yes yes not processed not processed not processed - - -20180308 20180308 20180308 yes yes yes not processed not processed not processed - - -20180314 20180314 20180314 yes yes yes not processed not processed not processed - - -20180320 20180320 20180320 yes yes yes not processed not processed not processed - - -20180326 20180326 20180326 yes yes yes not processed not processed not processed - - -20180401 20180401 20180401 yes yes yes not processed not processed not processed - - -20180407 20180407 20180407 yes yes yes not processed not processed not processed - - -20180413 20180413 20180413 yes yes yes not processed not processed not processed - - -20180419 20180419 20180419 yes yes yes not processed not processed not processed - - -20180425 20180425 20180425 yes yes yes not processed not processed not processed - - -20180501 20180501 20180501 yes yes yes not processed not processed not processed - - -20180507 20180507 20180507 yes yes yes not processed not processed not processed - - -20180513 20180513 20180513 yes yes yes not processed not processed not processed - - -20180519 20180519 20180519 yes yes yes not processed not processed not processed - - -20180525 20180525 20180525 yes yes yes not processed not processed not processed - - -20180531 20180531 20180531 yes yes yes not processed not processed not processed - - -20180606 20180606 20180606 yes yes yes not processed not processed not processed - - -20180612 20180612 20180612 yes yes yes not processed not processed not processed - - -20180618 20180618 20180618 yes yes yes not processed not processed not processed - - -20180630 20180630 20180630 yes yes yes not processed not processed not processed - - -20180712 20180712 20180712 yes yes yes not processed not processed not processed - - -20180718 20180718 20180718 yes yes yes not processed not processed not processed - - -20180724 20180724 20180724 yes yes yes not processed not processed not processed - - -20180730 20180730 20180730 yes yes yes not processed not processed not processed - - -20180805 20180805 20180805 yes yes yes not processed not processed not processed - - -20180811 20180811 20180811 yes yes yes not processed not processed not processed - - -20180817 20180817 20180817 yes yes yes not processed not processed not processed - - -20180823 20180823 20180823 yes yes yes not processed not processed not processed - - -20180829 20180829 20180829 yes yes yes not processed not processed not processed - - -20180904 20180904 20180904 yes yes yes not processed not processed not processed - - -20180910 20180910 20180910 yes yes yes not processed not processed not processed - - -20180916 20180916 20180916 yes yes yes not processed not processed not processed - - -20180922 20180922 20180922 yes yes yes not processed not processed not processed - - -20180928 20180928 20180928 yes yes yes not processed not processed not processed - - -20181004 20181004 20181004 yes yes yes not processed not processed not processed - - -20181010 20181010 20181010 yes yes yes not processed not processed not processed - - -20181016 20181016 20181016 yes yes yes not processed not processed not processed - - -20181022 20181022 20181022 yes yes yes not processed not processed not processed - - -20181028 20181028 20181028 yes yes yes not processed not processed not processed - - -20181109 20181109 20181109 yes yes yes not processed not processed not processed - - -20181115 20181115 20181115 yes yes yes not processed not processed not processed - - -20181121 20181121 20181121 yes yes yes not processed not processed not processed - - -20181127 20181127 20181127 yes yes yes not processed not processed not processed - - -20181203 20181203 20181203 yes yes yes not processed not processed not processed - - -20181209 20181209 20181209 yes yes yes not processed not processed not processed - - -20181215 20181215 20181215 yes yes yes not processed not processed not processed - - -20181221 20181221 20181221 yes yes yes not processed not processed not processed - - -20181227 20181227 20181227 yes yes yes not processed not processed not processed - - -20190102 20190102 20190102 yes yes yes not processed not processed not processed - - -20190108 20190108 20190108 yes yes yes not processed not processed not processed - - -20190114 20190114 20190114 yes yes yes not processed not processed not processed - - -20190120 20190120 20190120 yes yes yes not processed not processed not processed - - -20190126 20190126 20190126 yes yes yes not processed not processed not processed - - -20190201 20190201 20190201 yes yes yes not processed not processed not processed - - -20190207 20190207 20190207 yes yes yes not processed not processed not processed - - -20190213 20190213 20190213 yes yes yes not processed not processed not processed - - -20190225 20190225 20190225 yes yes yes not processed not processed not processed - - -20190303 20190303 20190303 yes yes yes not processed not processed not processed - - -20190309 20190309 20190309 yes yes yes not processed not processed not processed - - -20190321 20190321 20190321 yes yes yes not processed not processed not processed - - -20190402 20190402 20190402 yes yes yes not processed not processed not processed - - -20190408 20190408 20190408 yes yes yes not processed not processed not processed - - -20190414 20190414 20190414 yes yes yes not processed not processed not processed - - -20190420 20190420 20190420 yes yes yes not processed not processed not processed - - -20190426 20190426 20190426 yes yes yes not processed not processed not processed - - -20190502 20190502 20190502 yes yes yes not processed not processed not processed - - -20190508 20190508 20190508 yes yes yes not processed not processed not processed - - -20190520 20190520 20190520 yes yes yes not processed not processed not processed - - -20190526 20190526 20190526 yes yes yes not processed not processed not processed - - -20190601 20190601 20190601 yes yes yes not processed not processed not processed - - -20190607 20190607 20190607 yes yes yes not processed not processed not processed - - -20190613 20190613 20190613 yes yes yes not processed not processed not processed - - -20190625 20190625 20190625 yes yes yes not processed not processed not processed - - -20190701 20190701 20190701 yes yes yes not processed not processed not processed - - -20190707 20190707 20190707 yes yes yes not processed not processed not processed - - -20190713 20190713 20190713 yes yes yes not processed not processed not processed - - -20190719 20190719 20190719 yes yes yes not processed not processed not processed - - -20190725 20190725 20190725 yes yes yes not processed not processed not processed - - -20190731 20190731 20190731 yes yes yes not processed not processed not processed - - -20190806 20190806 20190806 yes yes yes not processed not processed not processed - - -20190812 20190812 20190812 yes yes yes not processed not processed not processed - - -20190818 20190818 20190818 yes yes yes not processed not processed not processed - - -20190824 20190824 20190824 yes yes yes not processed not processed not processed - - -20190830 20190830 20190830 yes yes yes not processed not processed not processed - - -20190905 20190905 20190905 yes yes yes not processed not processed not processed - - -20190911 20190911 20190911 yes yes yes not processed not processed not processed - - -20190917 20190917 20190917 yes yes yes not processed not processed not processed - - -20190923 20190923 20190923 yes yes yes not processed not processed not processed - - -20191005 20191005 20191005 yes yes yes not processed not processed not processed - - -20191011 20191011 20191011 yes yes yes not processed not processed not processed - - -20191017 20191017 20191017 yes yes yes not processed not processed not processed - - -20191023 20191023 20191023 yes yes yes not processed not processed not processed - - -20191029 20191029 20191029 yes yes yes not processed not processed not processed - - -20191104 20191104 20191104 yes yes yes not processed not processed not processed - - -20191116 20191116 20191116 yes yes yes not processed not processed not processed - - -20191122 20191122 20191122 yes yes yes not processed not processed not processed - - -20191128 20191128 20191128 yes yes yes not processed not processed not processed - - -20191204 20191204 20191204 yes yes yes not processed not processed not processed - - -20191210 20191210 20191210 yes yes yes not processed not processed not processed - - -20191216 20191216 20191216 yes yes yes not processed not processed not processed - - -20191222 20191222 20191222 yes yes yes not processed not processed not processed - - -20191228 20191228 20191228 yes yes yes not processed not processed not processed - - -20200103 20200103 20200103 yes yes yes not processed not processed not processed - - -20200109 20200109 20200109 yes yes yes not processed not processed not processed - - -20200115 20200115 20200115 yes yes yes not processed not processed not processed - - -20200121 20200121 20200121 yes yes yes not processed not processed not processed - - -20200127 20200127 20200127 yes yes yes not processed not processed not processed - - -20200202 20200202 20200202 yes yes yes not processed not processed not processed - - -20200208 20200208 20200208 yes yes yes not processed not processed not processed - - -20200214 20200214 20200214 yes yes yes not processed not processed not processed - - -20200220 20200220 20200220 yes yes yes not processed not processed not processed - - -20200226 20200226 20200226 yes yes yes not processed not processed not processed - - -20200303 20200303 20200303 yes yes yes not processed not processed not processed - - -20200309 20200309 20200309 yes yes yes not processed not processed not processed - - -20200315 20200315 20200315 yes yes yes not processed not processed not processed - - -20200321 20200321 20200321 yes yes yes not processed not processed not processed - - -20200402 20200402 20200402 yes yes yes not processed not processed not processed - - -20200408 20200408 20200408 yes yes yes not processed not processed not processed - - -20200414 20200414 20200414 yes yes yes not processed not processed not processed - - -20200420 20200420 20200420 yes yes yes not processed not processed not processed - - -20200426 20200426 20200426 yes yes yes not processed not processed not processed - - -20200502 20200502 20200502 yes yes yes not processed not processed not processed - - -20200508 20200508 20200508 yes yes yes not processed not processed not processed - - -20200514 20200514 20200514 yes yes yes not processed not processed not processed - - -20200520 20200520 20200520 yes yes yes not processed not processed not processed - - -20200526 20200526 20200526 yes yes yes not processed not processed not processed - - -20200601 20200601 20200601 yes yes yes not processed not processed not processed - - -20200607 20200607 20200607 yes yes yes not processed not processed not processed - - -20200613 20200613 20200613 yes yes yes not processed not processed not processed - - -20200619 20200619 20200619 yes yes yes not processed not processed not processed - - -20200625 20200625 20200625 yes yes yes not processed not processed not processed - - -20200701 20200701 20200701 yes yes yes not processed not processed not processed - - -20200707 20200707 20200707 yes yes yes not processed not processed not processed - - -20200713 20200713 20200713 yes yes yes not processed not processed not processed - - -20200719 20200719 20200719 yes yes yes not processed not processed not processed - - -20200725 20200725 20200725 yes yes yes not processed not processed not processed - - -20200731 20200731 20200731 yes yes yes not processed not processed not processed - - -20200806 20200806 20200806 yes yes yes not processed not processed not processed - - -20200812 20200812 20200812 yes yes yes not processed not processed not processed - - -20200818 20200818 20200818 yes yes yes not processed not processed not processed - - -20200824 20200824 20200824 yes yes yes not processed not processed not processed - - -20200830 20200830 20200830 yes yes yes not processed not processed not processed - - -20200905 20200905 20200905 yes yes yes not processed not processed not processed - - -20200911 20200911 20200911 yes yes yes not processed not processed not processed - - -20200917 20200917 20200917 yes yes yes not processed not processed not processed - - -20200923 20200923 20200923 yes yes yes not processed not processed not processed - - -20200929 20200929 20200929 yes yes yes not processed not processed not processed - - -20201005 20201005 20201005 yes yes yes not processed not processed not processed - - -20201011 20201011 20201011 yes yes yes not processed not processed not processed - - -20201017 20201017 20201017 yes yes yes not processed not processed not processed - - -20201023 20201023 20201023 yes yes yes not processed not processed not processed - - -20201029 20201029 20201029 yes yes yes not processed not processed not processed - - -20201104 20201104 20201104 yes yes yes not processed not processed not processed - - -20201110 20201110 20201110 yes yes yes not processed not processed not processed - - -20201116 20201116 20201116 yes yes yes not processed not processed not processed - - -20201122 20201122 20201122 yes yes yes not processed not processed not processed - - -20201128 20201128 20201128 yes yes yes not processed not processed not processed - - -20201204 20201204 20201204 yes yes yes not processed not processed not processed - - -20201210 20201210 20201210 yes yes yes not processed not processed not processed - - -20201216 20201216 20201216 yes yes yes not processed not processed not processed - - -20201222 20201222 20201222 yes yes yes not processed not processed not processed - - -20201228 20201228 20201228 yes yes yes not processed not processed not processed - - -20210103 20210103 20210103 yes yes yes not processed not processed not processed - - -20210109 20210109 20210109 yes yes yes not processed not processed not processed - - -20210115 20210115 20210115 yes yes yes not processed not processed not processed - - -20210121 20210121 20210121 yes yes yes not processed not processed not processed - - -20210127 20210127 20210127 yes yes yes not processed not processed not processed - - -20210202 20210202 20210202 yes yes yes not processed not processed not processed - - -20210208 20210208 20210208 yes yes yes not processed not processed not processed - - -20210214 20210214 20210214 yes yes yes not processed not processed not processed - - -20210220 20210220 20210220 yes yes yes not processed not processed not processed - - -20210226 20210226 20210226 yes yes yes not processed not processed not processed - - -20210304 20210304 20210304 yes yes yes not processed not processed not processed - - -20210310 20210310 20210310 yes yes yes not processed not processed not processed - - -20210316 20210316 20210316 yes yes yes not processed not processed not processed - - -20210322 20210322 20210322 yes yes yes not processed not processed not processed - - -20210328 20210328 20210328 yes yes yes not processed not processed not processed - - -20210403 20210403 20210403 yes yes yes not processed not processed not processed - - -20210409 20210409 20210409 yes yes yes not processed not processed not processed - - -20210415 20210415 20210415 yes yes yes not processed not processed not processed - - -20210421 20210421 20210421 yes yes yes not processed not processed not processed - - -20210427 20210427 20210427 yes yes yes not processed not processed not processed - - -20210503 20210503 20210503 yes yes yes not processed not processed not processed - - -20210509 20210509 20210509 yes yes yes not processed not processed not processed - - -20210515 20210515 20210515 yes yes yes not processed not processed not processed - - -20210521 20210521 20210521 yes yes yes not processed not processed not processed - - -20210527 20210527 20210527 yes yes yes not processed not processed not processed - - -20210602 20210602 20210602 yes yes yes not processed not processed not processed - - -20210608 20210608 20210608 yes yes yes not processed not processed not processed - - -20210614 20210614 20210614 yes yes yes not processed not processed not processed - - -20210620 20210620 20210620 yes yes yes not processed not processed not processed - - -20210626 20210626 20210626 yes yes yes not processed not processed not processed - - -20210702 20210702 20210702 yes yes yes not processed not processed not processed - - -20210708 20210708 20210708 yes yes yes not processed not processed not processed - - -20210714 20210714 20210714 yes yes yes not processed not processed not processed - - -20210720 20210720 20210720 yes yes yes not processed not processed not processed - - -20210726 20210726 20210726 yes yes yes not processed not processed not processed - - -20210801 20210801 20210801 yes yes yes not processed not processed not processed - - -20210807 20210807 20210807 yes yes yes not processed not processed not processed - - -20210813 20210813 20210813 yes yes yes not processed not processed not processed - - -20210819 20210819 20210819 yes yes yes not processed not processed not processed - - -20210825 20210825 20210825 yes yes yes not processed not processed not processed - - -20210831 20210831 20210831 yes yes yes not processed not processed not processed - - -20210906 20210906 20210906 yes yes yes not processed not processed not processed - - -20210912 20210912 20210912 yes yes yes not processed not processed not processed to processto processto process - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:41:00 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:41:00 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:41:00 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:41:00 - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - -20141031 20141031 20141031 20141031 no no no no - - - -20141218 20141218 20141218 20141218 no no no no - - - -20150111 20150111 20150111 20150111 no no no no - - - -20150123 20150123 20150123 20150123 no no no no - - - -20150216 20150216 20150216 20150216 no no no no - - - -20150228 20150228 20150228 20150228 no no no no - - - -20150312 20150312 20150312 20150312 no no no no - - - -20150324 20150324 20150324 20150324 no no no no - - - -20150405 20150405 20150405 20150405 no no no no - - - -20150429 20150429 20150429 20150429 no no no no - - - -20150511 20150511 20150511 20150511 no no no no - - - -20150523 20150523 20150523 20150523 no no no no - - - -20150604 20150604 20150604 20150604 no no no no - - - -20150710 20150710 20150710 20150710 no no no no - - - -20150722 20150722 20150722 20150722 no no no no - - - -20150815 20150815 20150815 20150815 no no no no - - - -20150920 20150920 20150920 20150920 no no no no - - - -20151002 20151002 20151002 20151002 no no no no - - - -20151014 20151014 20151014 20151014 no no no no - - - -20151107 20151107 20151107 20151107 no no no no - - - -20151119 20151119 20151119 20151119 no no no no - - - -20151201 20151201 20151201 20151201 no no no no - - - -20151213 20151213 20151213 20151213 no no no no - - - -20151225 20151225 20151225 20151225 no no no no - - - -20160106 20160106 20160106 20160106 no no no no - - - -20160118 20160118 20160118 20160118 no no no no - - - -20160211 20160211 20160211 20160211 no no no no - - - -20160223 20160223 20160223 20160223 no no no no - - - -20160306 20160306 20160306 20160306 no no no no - - - -20160318 20160318 20160318 20160318 no no no no - - - -20160330 20160330 20160330 20160330 no no no no - - - -20160411 20160411 20160411 20160411 no no no no - - - -20160505 20160505 20160505 20160505 no no no no - - - -20160517 20160517 20160517 20160517 no no no no - - - -20160529 20160529 20160529 20160529 no no no no - - - -20160610 20160610 20160610 20160610 no no no no - - - -20160704 20160704 20160704 20160704 no no no no - - - -20160716 20160716 20160716 20160716 no no no no - - - -20160728 20160728 20160728 20160728 no no no no - - - -20160809 20160809 20160809 20160809 no no no no - - - -20160821 20160821 20160821 20160821 no no no no - - - -20160902 20160902 20160902 20160902 no no no no - - - -20160914 20160914 20160914 20160914 no no no no - - - -20160926 20160926 20160926 20160926 no no no no - - - -20161002 20161002 20161002 20161002 no no no no - - - -20161008 20161008 20161008 20161008 no no no no - - - -20161014 20161014 20161014 20161014 no no no no - - - -20161020 20161020 20161020 20161020 no no no no - - - -20161026 20161026 20161026 20161026 no no no no - - - -20161101 20161101 20161101 20161101 no no no no - - - -20161107 20161107 20161107 20161107 no no no no - - - -20161113 20161113 20161113 20161113 no no no no - - - -20161119 20161119 20161119 20161119 no no no no - - - -20161201 20161201 20161201 20161201 no no no no - - - -20161207 20161207 20161207 20161207 no no no no - - - -20161213 20161213 20161213 20161213 no no no no - - - -20161219 20161219 20161219 20161219 no no no no - - - -20161225 20161225 20161225 20161225 no no no no - - - -20161231 20161231 20161231 20161231 no no no no - - - -20170112 20170112 20170112 20170112 yes yes yes yes not processed not processed not processed not processed - - - -20170118 20170118 20170118 20170118 yes yes yes yes not processed not processed not processed not processed - - - -20170124 20170124 20170124 20170124 yes yes yes yes not processed not processed not processed not processed - - - -20170130 20170130 20170130 20170130 yes yes yes yes not processed not processed not processed not processed - - - -20170205 20170205 20170205 20170205 yes yes yes yes not processed not processed not processed not processed - - - -20170211 20170211 20170211 20170211 yes yes yes yes not processed not processed not processed not processed - - - -20170223 20170223 20170223 20170223 yes yes yes yes not processed not processed not processed not processed - - - -20170301 20170301 20170301 20170301 yes yes yes yes not processed not processed not processed not processed - - - -20170307 20170307 20170307 20170307 yes yes yes yes not processed not processed not processed not processed - - - -20170313 20170313 20170313 20170313 yes yes yes yes not processed not processed not processed not processed - - - -20170319 20170319 20170319 20170319 yes yes yes yes not processed not processed not processed not processed - - - -20170325 20170325 20170325 20170325 yes yes yes yes not processed not processed not processed not processed - - - -20170331 20170331 20170331 20170331 yes yes yes yes not processed not processed not processed not processed - - - -20170406 20170406 20170406 20170406 yes yes yes yes not processed not processed not processed not processed - - - -20170412 20170412 20170412 20170412 yes yes yes yes not processed not processed not processed not processed - - - -20170418 20170418 20170418 20170418 yes yes yes yes not processed not processed not processed not processed - - - -20170424 20170424 20170424 20170424 yes yes yes yes not processed not processed not processed not processed - - - -20170430 20170430 20170430 20170430 yes yes yes yes not processed not processed not processed not processed - - - -20170506 20170506 20170506 20170506 yes yes yes yes not processed not processed not processed not processed - - - -20170512 20170512 20170512 20170512 yes yes yes yes not processed not processed not processed not processed - - - -20170518 20170518 20170518 20170518 yes yes yes yes not processed not processed not processed not processed - - - -20170524 20170524 20170524 20170524 yes yes yes yes not processed not processed not processed not processed - - - -20170530 20170530 20170530 20170530 yes yes yes yes not processed not processed not processed not processed - - - -20170605 20170605 20170605 20170605 yes yes yes yes not processed not processed not processed not processed - - - -20170611 20170611 20170611 20170611 yes yes yes yes not processed not processed not processed not processed - - - -20170617 20170617 20170617 20170617 yes yes yes yes not processed not processed not processed not processed - - - -20170623 20170623 20170623 20170623 yes yes yes yes not processed not processed not processed not processed - - - -20170629 20170629 20170629 20170629 yes yes yes yes not processed not processed not processed not processed - - - -20170705 20170705 20170705 20170705 yes yes yes yes not processed not processed not processed not processed - - - -20170711 20170711 20170711 20170711 yes yes yes yes not processed not processed not processed not processed - - - -20170717 20170717 20170717 20170717 yes yes yes yes not processed not processed not processed not processed - - - -20170723 20170723 20170723 20170723 yes yes yes yes not processed not processed not processed not processed - - - -20170729 20170729 20170729 20170729 yes yes yes yes not processed not processed not processed not processed - - - -20170804 20170804 20170804 20170804 yes yes yes yes not processed not processed not processed not processed - - - -20170816 20170816 20170816 20170816 yes yes yes yes not processed not processed not processed not processed - - - -20170822 20170822 20170822 20170822 yes yes yes yes not processed not processed not processed not processed - - - -20170828 20170828 20170828 20170828 yes yes yes yes not processed not processed not processed not processed - - - -20170903 20170903 20170903 20170903 yes yes yes yes not processed not processed not processed not processed - - - -20170909 20170909 20170909 20170909 yes yes yes yes not processed not processed not processed not processed - - - -20170915 20170915 20170915 20170915 yes yes yes yes not processed not processed not processed not processed - - - -20170921 20170921 20170921 20170921 yes yes yes yes not processed not processed not processed not processed - - - -20170927 20170927 20170927 20170927 yes yes yes yes not processed not processed not processed not processed - - - -20171009 20171009 20171009 20171009 yes yes yes yes not processed not processed not processed not processed - - - -20171015 20171015 20171015 20171015 yes yes yes yes not processed not processed not processed not processed - - - -20171021 20171021 20171021 20171021 yes yes yes yes not processed not processed not processed not processed - - - -20171027 20171027 20171027 20171027 yes yes yes yes not processed not processed not processed not processed - - - -20171102 20171102 20171102 20171102 yes yes yes yes not processed not processed not processed not processed - - - -20171108 20171108 20171108 20171108 yes yes yes yes not processed not processed not processed not processed - - - -20171114 20171114 20171114 20171114 yes yes yes yes not processed not processed not processed not processed - - - -20171120 20171120 20171120 20171120 yes yes yes yes not processed not processed not processed not processed - - - -20171202 20171202 20171202 20171202 yes yes yes yes not processed not processed not processed not processed - - - -20171208 20171208 20171208 20171208 yes yes yes yes not processed not processed not processed not processed - - - -20171214 20171214 20171214 20171214 yes yes yes yes not processed not processed not processed not processed - - - -20171226 20171226 20171226 20171226 yes yes yes yes not processed not processed not processed not processed - - - -20180101 20180101 20180101 20180101 yes yes yes yes not processed not processed not processed not processed - - - -20180107 20180107 20180107 20180107 yes yes yes yes not processed not processed not processed not processed - - - -20180113 20180113 20180113 20180113 yes yes yes yes not processed not processed not processed not processed - - - -20180119 20180119 20180119 20180119 yes yes yes yes not processed not processed not processed not processed - - - -20180125 20180125 20180125 20180125 yes yes yes yes not processed not processed not processed not processed - - - -20180131 20180131 20180131 20180131 yes yes yes yes not processed not processed not processed not processed - - - -20180206 20180206 20180206 20180206 yes yes yes yes not processed not processed not processed not processed - - - -20180218 20180218 20180218 20180218 yes yes yes yes not processed not processed not processed not processed - - - -20180224 20180224 20180224 20180224 yes yes yes yes not processed not processed not processed not processed - - - -20180302 20180302 20180302 20180302 yes yes yes yes not processed not processed not processed not processed - - - -20180308 20180308 20180308 20180308 yes yes yes yes not processed not processed not processed not processed - - - -20180314 20180314 20180314 20180314 yes yes yes yes not processed not processed not processed not processed - - - -20180320 20180320 20180320 20180320 yes yes yes yes not processed not processed not processed not processed - - - -20180326 20180326 20180326 20180326 yes yes yes yes not processed not processed not processed not processed - - - -20180401 20180401 20180401 20180401 yes yes yes yes not processed not processed not processed not processed - - - -20180407 20180407 20180407 20180407 yes yes yes yes not processed not processed not processed not processed - - - -20180413 20180413 20180413 20180413 yes yes yes yes not processed not processed not processed not processed - - - -20180419 20180419 20180419 20180419 yes yes yes yes not processed not processed not processed not processed - - - -20180425 20180425 20180425 20180425 yes yes yes yes not processed not processed not processed not processed - - - -20180501 20180501 20180501 20180501 yes yes yes yes not processed not processed not processed not processed - - - -20180507 20180507 20180507 20180507 yes yes yes yes not processed not processed not processed not processed - - - -20180513 20180513 20180513 20180513 yes yes yes yes not processed not processed not processed not processed - - - -20180519 20180519 20180519 20180519 yes yes yes yes not processed not processed not processed not processed - - - -20180525 20180525 20180525 20180525 yes yes yes yes not processed not processed not processed not processed - - - -20180531 20180531 20180531 20180531 yes yes yes yes not processed not processed not processed not processed - - - -20180606 20180606 20180606 20180606 yes yes yes yes not processed not processed not processed not processed - - - -20180612 20180612 20180612 20180612 yes yes yes yes not processed not processed not processed not processed - - - -20180618 20180618 20180618 20180618 yes yes yes yes not processed not processed not processed not processed - - - -20180630 20180630 20180630 20180630 yes yes yes yes not processed not processed not processed not processed - - - -20180712 20180712 20180712 20180712 yes yes yes yes not processed not processed not processed not processed - - - -20180718 20180718 20180718 20180718 yes yes yes yes not processed not processed not processed not processed - - - -20180724 20180724 20180724 20180724 yes yes yes yes not processed not processed not processed not processed - - - -20180730 20180730 20180730 20180730 yes yes yes yes not processed not processed not processed not processed - - - -20180805 20180805 20180805 20180805 yes yes yes yes not processed not processed not processed not processed - - - -20180811 20180811 20180811 20180811 yes yes yes yes not processed not processed not processed not processed - - - -20180817 20180817 20180817 20180817 yes yes yes yes not processed not processed not processed not processed - - - -20180823 20180823 20180823 20180823 yes yes yes yes not processed not processed not processed not processed - - - -20180829 20180829 20180829 20180829 yes yes yes yes not processed not processed not processed not processed - - - -20180904 20180904 20180904 20180904 yes yes yes yes not processed not processed not processed not processed - - - -20180910 20180910 20180910 20180910 yes yes yes yes not processed not processed not processed not processed - - - -20180916 20180916 20180916 20180916 yes yes yes yes not processed not processed not processed not processed - - - -20180922 20180922 20180922 20180922 yes yes yes yes not processed not processed not processed not processed - - - -20180928 20180928 20180928 20180928 yes yes yes yes not processed not processed not processed not processed - - - -20181004 20181004 20181004 20181004 yes yes yes yes not processed not processed not processed not processed - - - -20181010 20181010 20181010 20181010 yes yes yes yes not processed not processed not processed not processed - - - -20181016 20181016 20181016 20181016 yes yes yes yes not processed not processed not processed not processed - - - -20181022 20181022 20181022 20181022 yes yes yes yes not processed not processed not processed not processed - - - -20181028 20181028 20181028 20181028 yes yes yes yes not processed not processed not processed not processed - - - -20181109 20181109 20181109 20181109 yes yes yes yes not processed not processed not processed not processed - - - -20181115 20181115 20181115 20181115 yes yes yes yes not processed not processed not processed not processed - - - -20181121 20181121 20181121 20181121 yes yes yes yes not processed not processed not processed not processed - - - -20181127 20181127 20181127 20181127 yes yes yes yes not processed not processed not processed not processed - - - -20181203 20181203 20181203 20181203 yes yes yes yes not processed not processed not processed not processed - - - -20181209 20181209 20181209 20181209 yes yes yes yes not processed not processed not processed not processed - - - -20181215 20181215 20181215 20181215 yes yes yes yes not processed not processed not processed not processed - - - -20181221 20181221 20181221 20181221 yes yes yes yes not processed not processed not processed not processed - - - -20181227 20181227 20181227 20181227 yes yes yes yes not processed not processed not processed not processed - - - -20190102 20190102 20190102 20190102 yes yes yes yes not processed not processed not processed not processed - - - -20190108 20190108 20190108 20190108 yes yes yes yes not processed not processed not processed not processed - - - -20190114 20190114 20190114 20190114 yes yes yes yes not processed not processed not processed not processed - - - -20190120 20190120 20190120 20190120 yes yes yes yes not processed not processed not processed not processed - - - -20190126 20190126 20190126 20190126 yes yes yes yes not processed not processed not processed not processed - - - -20190201 20190201 20190201 20190201 yes yes yes yes not processed not processed not processed not processed - - - -20190207 20190207 20190207 20190207 yes yes yes yes not processed not processed not processed not processed - - - -20190213 20190213 20190213 20190213 yes yes yes yes not processed not processed not processed not processed - - - -20190225 20190225 20190225 20190225 yes yes yes yes not processed not processed not processed not processed - - - -20190303 20190303 20190303 20190303 yes yes yes yes not processed not processed not processed not processed - - - -20190309 20190309 20190309 20190309 yes yes yes yes not processed not processed not processed not processed - - - -20190321 20190321 20190321 20190321 yes yes yes yes not processed not processed not processed not processed - - - -20190402 20190402 20190402 20190402 yes yes yes yes not processed not processed not processed not processed - - - -20190408 20190408 20190408 20190408 yes yes yes yes not processed not processed not processed not processed - - - -20190414 20190414 20190414 20190414 yes yes yes yes not processed not processed not processed not processed - - - -20190420 20190420 20190420 20190420 yes yes yes yes not processed not processed not processed not processed - - - -20190426 20190426 20190426 20190426 yes yes yes yes not processed not processed not processed not processed - - - -20190502 20190502 20190502 20190502 yes yes yes yes not processed not processed not processed not processed - - - -20190508 20190508 20190508 20190508 yes yes yes yes not processed not processed not processed not processed - - - -20190520 20190520 20190520 20190520 yes yes yes yes not processed not processed not processed not processed - - - -20190526 20190526 20190526 20190526 yes yes yes yes not processed not processed not processed not processed - - - -20190601 20190601 20190601 20190601 yes yes yes yes not processed not processed not processed not processed - - - -20190607 20190607 20190607 20190607 yes yes yes yes not processed not processed not processed not processed - - - -20190613 20190613 20190613 20190613 yes yes yes yes not processed not processed not processed not processed - - - -20190625 20190625 20190625 20190625 yes yes yes yes not processed not processed not processed not processed - - - -20190701 20190701 20190701 20190701 yes yes yes yes not processed not processed not processed not processed - - - -20190707 20190707 20190707 20190707 yes yes yes yes not processed not processed not processed not processed - - - -20190713 20190713 20190713 20190713 yes yes yes yes not processed not processed not processed not processed - - - -20190719 20190719 20190719 20190719 yes yes yes yes not processed not processed not processed not processed - - - -20190725 20190725 20190725 20190725 yes yes yes yes not processed not processed not processed not processed - - - -20190731 20190731 20190731 20190731 yes yes yes yes not processed not processed not processed not processed - - - -20190806 20190806 20190806 20190806 yes yes yes yes not processed not processed not processed not processed - - - -20190812 20190812 20190812 20190812 yes yes yes yes not processed not processed not processed not processed - - - -20190818 20190818 20190818 20190818 yes yes yes yes not processed not processed not processed not processed - - - -20190824 20190824 20190824 20190824 yes yes yes yes not processed not processed not processed not processed - - - -20190830 20190830 20190830 20190830 yes yes yes yes not processed not processed not processed not processed - - - -20190905 20190905 20190905 20190905 yes yes yes yes not processed not processed not processed not processed - - - -20190911 20190911 20190911 20190911 yes yes yes yes not processed not processed not processed not processed - - - -20190917 20190917 20190917 20190917 yes yes yes yes not processed not processed not processed not processed - - - -20190923 20190923 20190923 20190923 yes yes yes yes not processed not processed not processed not processed - - - -20191005 20191005 20191005 20191005 yes yes yes yes not processed not processed not processed not processed - - - -20191011 20191011 20191011 20191011 yes yes yes yes not processed not processed not processed not processed - - - -20191017 20191017 20191017 20191017 yes yes yes yes not processed not processed not processed not processed - - - -20191023 20191023 20191023 20191023 yes yes yes yes not processed not processed not processed not processed - - - -20191029 20191029 20191029 20191029 yes yes yes yes not processed not processed not processed not processed - - - -20191104 20191104 20191104 20191104 yes yes yes yes not processed not processed not processed not processed - - - -20191116 20191116 20191116 20191116 yes yes yes yes not processed not processed not processed not processed - - - -20191122 20191122 20191122 20191122 yes yes yes yes not processed not processed not processed not processed - - - -20191128 20191128 20191128 20191128 yes yes yes yes not processed not processed not processed not processed - - - -20191204 20191204 20191204 20191204 yes yes yes yes not processed not processed not processed not processed - - - -20191210 20191210 20191210 20191210 yes yes yes yes not processed not processed not processed not processed - - - -20191216 20191216 20191216 20191216 yes yes yes yes not processed not processed not processed not processed - - - -20191222 20191222 20191222 20191222 yes yes yes yes not processed not processed not processed not processed - - - -20191228 20191228 20191228 20191228 yes yes yes yes not processed not processed not processed not processed - - - -20200103 20200103 20200103 20200103 yes yes yes yes not processed not processed not processed not processed - - - -20200109 20200109 20200109 20200109 yes yes yes yes not processed not processed not processed not processed - - - -20200115 20200115 20200115 20200115 yes yes yes yes not processed not processed not processed not processed - - - -20200121 20200121 20200121 20200121 yes yes yes yes not processed not processed not processed not processed - - - -20200127 20200127 20200127 20200127 yes yes yes yes not processed not processed not processed not processed - - - -20200202 20200202 20200202 20200202 yes yes yes yes not processed not processed not processed not processed - - - -20200208 20200208 20200208 20200208 yes yes yes yes not processed not processed not processed not processed - - - -20200214 20200214 20200214 20200214 yes yes yes yes not processed not processed not processed not processed - - - -20200220 20200220 20200220 20200220 yes yes yes yes not processed not processed not processed not processed - - - -20200226 20200226 20200226 20200226 yes yes yes yes not processed not processed not processed not processed - - - -20200303 20200303 20200303 20200303 yes yes yes yes not processed not processed not processed not processed - - - -20200309 20200309 20200309 20200309 yes yes yes yes not processed not processed not processed not processed - - - -20200315 20200315 20200315 20200315 yes yes yes yes not processed not processed not processed not processed - - - -20200321 20200321 20200321 20200321 yes yes yes yes not processed not processed not processed not processed - - - -20200402 20200402 20200402 20200402 yes yes yes yes not processed not processed not processed not processed - - - -20200408 20200408 20200408 20200408 yes yes yes yes not processed not processed not processed not processed - - - -20200414 20200414 20200414 20200414 yes yes yes yes not processed not processed not processed not processed - - - -20200420 20200420 20200420 20200420 yes yes yes yes not processed not processed not processed not processed - - - -20200426 20200426 20200426 20200426 yes yes yes yes not processed not processed not processed not processed - - - -20200502 20200502 20200502 20200502 yes yes yes yes not processed not processed not processed not processed - - - -20200508 20200508 20200508 20200508 yes yes yes yes not processed not processed not processed not processed - - - -20200514 20200514 20200514 20200514 yes yes yes yes not processed not processed not processed not processed - - - -20200520 20200520 20200520 20200520 yes yes yes yes not processed not processed not processed not processed - - - -20200526 20200526 20200526 20200526 yes yes yes yes not processed not processed not processed not processed - - - -20200601 20200601 20200601 20200601 yes yes yes yes not processed not processed not processed not processed - - - -20200607 20200607 20200607 20200607 yes yes yes yes not processed not processed not processed not processed - - - -20200613 20200613 20200613 20200613 yes yes yes yes not processed not processed not processed not processed - - - -20200619 20200619 20200619 20200619 yes yes yes yes not processed not processed not processed not processed - - - -20200625 20200625 20200625 20200625 yes yes yes yes not processed not processed not processed not processed - - - -20200701 20200701 20200701 20200701 yes yes yes yes not processed not processed not processed not processed - - - -20200707 20200707 20200707 20200707 yes yes yes yes not processed not processed not processed not processed - - - -20200713 20200713 20200713 20200713 yes yes yes yes not processed not processed not processed not processed - - - -20200719 20200719 20200719 20200719 yes yes yes yes not processed not processed not processed not processed - - - -20200725 20200725 20200725 20200725 yes yes yes yes not processed not processed not processed not processed - - - -20200731 20200731 20200731 20200731 yes yes yes yes not processed not processed not processed not processed - - - -20200806 20200806 20200806 20200806 yes yes yes yes not processed not processed not processed not processed - - - -20200812 20200812 20200812 20200812 yes yes yes yes not processed not processed not processed not processed - - - -20200818 20200818 20200818 20200818 yes yes yes yes not processed not processed not processed not processed - - - -20200824 20200824 20200824 20200824 yes yes yes yes not processed not processed not processed not processed - - - -20200830 20200830 20200830 20200830 yes yes yes yes not processed not processed not processed not processed - - - -20200905 20200905 20200905 20200905 yes yes yes yes not processed not processed not processed not processed - - - -20200911 20200911 20200911 20200911 yes yes yes yes not processed not processed not processed not processed - - - -20200917 20200917 20200917 20200917 yes yes yes yes not processed not processed not processed not processed - - - -20200923 20200923 20200923 20200923 yes yes yes yes not processed not processed not processed not processed - - - -20200929 20200929 20200929 20200929 yes yes yes yes not processed not processed not processed not processed - - - -20201005 20201005 20201005 20201005 yes yes yes yes not processed not processed not processed not processed - - - -20201011 20201011 20201011 20201011 yes yes yes yes not processed not processed not processed not processed - - - -20201017 20201017 20201017 20201017 yes yes yes yes not processed not processed not processed not processed - - - -20201023 20201023 20201023 20201023 yes yes yes yes not processed not processed not processed not processed - - - -20201029 20201029 20201029 20201029 yes yes yes yes not processed not processed not processed not processed - - - -20201104 20201104 20201104 20201104 yes yes yes yes not processed not processed not processed not processed - - - -20201110 20201110 20201110 20201110 yes yes yes yes not processed not processed not processed not processed - - - -20201116 20201116 20201116 20201116 yes yes yes yes not processed not processed not processed not processed - - - -20201122 20201122 20201122 20201122 yes yes yes yes not processed not processed not processed not processed - - - -20201128 20201128 20201128 20201128 yes yes yes yes not processed not processed not processed not processed - - - -20201204 20201204 20201204 20201204 yes yes yes yes not processed not processed not processed not processed - - - -20201210 20201210 20201210 20201210 yes yes yes yes not processed not processed not processed not processed - - - -20201216 20201216 20201216 20201216 yes yes yes yes not processed not processed not processed not processed - - - -20201222 20201222 20201222 20201222 yes yes yes yes not processed not processed not processed not processed - - - -20201228 20201228 20201228 20201228 yes yes yes yes not processed not processed not processed not processed - - - -20210103 20210103 20210103 20210103 yes yes yes yes not processed not processed not processed not processed - - - -20210109 20210109 20210109 20210109 yes yes yes yes not processed not processed not processed not processed - - - -20210115 20210115 20210115 20210115 yes yes yes yes not processed not processed not processed not processed - - - -20210121 20210121 20210121 20210121 yes yes yes yes not processed not processed not processed not processed - - - -20210127 20210127 20210127 20210127 yes yes yes yes not processed not processed not processed not processed - - - -20210202 20210202 20210202 20210202 yes yes yes yes not processed not processed not processed not processed - - - -20210208 20210208 20210208 20210208 yes yes yes yes not processed not processed not processed not processed - - - -20210214 20210214 20210214 20210214 yes yes yes yes not processed not processed not processed not processed - - - -20210220 20210220 20210220 20210220 yes yes yes yes not processed not processed not processed not processed - - - -20210226 20210226 20210226 20210226 yes yes yes yes not processed not processed not processed not processed - - - -20210304 20210304 20210304 20210304 yes yes yes yes not processed not processed not processed not processed - - - -20210310 20210310 20210310 20210310 yes yes yes yes not processed not processed not processed not processed - - - -20210316 20210316 20210316 20210316 yes yes yes yes not processed not processed not processed not processed - - - -20210322 20210322 20210322 20210322 yes yes yes yes not processed not processed not processed not processed - - - -20210328 20210328 20210328 20210328 yes yes yes yes not processed not processed not processed not processed - - - -20210403 20210403 20210403 20210403 yes yes yes yes not processed not processed not processed not processed - - - -20210409 20210409 20210409 20210409 yes yes yes yes not processed not processed not processed not processed - - - -20210415 20210415 20210415 20210415 yes yes yes yes not processed not processed not processed not processed - - - -20210421 20210421 20210421 20210421 yes yes yes yes not processed not processed not processed not processed - - - -20210427 20210427 20210427 20210427 yes yes yes yes not processed not processed not processed not processed - - - -20210503 20210503 20210503 20210503 yes yes yes yes not processed not processed not processed not processed - - - -20210509 20210509 20210509 20210509 yes yes yes yes not processed not processed not processed not processed - - - -20210515 20210515 20210515 20210515 yes yes yes yes not processed not processed not processed not processed - - - -20210521 20210521 20210521 20210521 yes yes yes yes not processed not processed not processed not processed - - - -20210527 20210527 20210527 20210527 yes yes yes yes not processed not processed not processed not processed - - - -20210602 20210602 20210602 20210602 yes yes yes yes not processed not processed not processed not processed - - - -20210608 20210608 20210608 20210608 yes yes yes yes not processed not processed not processed not processed - - - -20210614 20210614 20210614 20210614 yes yes yes yes not processed not processed not processed not processed - - - -20210620 20210620 20210620 20210620 yes yes yes yes not processed not processed not processed not processed - - - -20210626 20210626 20210626 20210626 yes yes yes yes not processed not processed not processed not processed - - - -20210702 20210702 20210702 20210702 yes yes yes yes not processed not processed not processed not processed - - - -20210708 20210708 20210708 20210708 yes yes yes yes not processed not processed not processed not processed - - - -20210714 20210714 20210714 20210714 yes yes yes yes not processed not processed not processed not processed - - - -20210720 20210720 20210720 20210720 yes yes yes yes not processed not processed not processed not processed - - - -20210726 20210726 20210726 20210726 yes yes yes yes not processed not processed not processed not processed - - - -20210801 20210801 20210801 20210801 yes yes yes yes not processed not processed not processed not processed - - - -20210807 20210807 20210807 20210807 yes yes yes yes not processed not processed not processed not processed - - - -20210813 20210813 20210813 20210813 yes yes yes yes not processed not processed not processed not processed - - - -20210819 20210819 20210819 20210819 yes yes yes yes not processed not processed not processed not processed - - - -20210825 20210825 20210825 20210825 yes yes yes yes not processed not processed not processed not processed - - - -20210831 20210831 20210831 20210831 yes yes yes yes not processed not processed not processed not processed - - - -20210906 20210906 20210906 20210906 yes yes yes yes not processed not processed not processed not processed - - - -20210912 20210912 20210912 20210912 yes yes yes yes not processed not processed not processed not processed to processto processto processto process - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - -**************************************************************************************************************************************************************** - - - -Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging... - - - -**************************************************************************************************************************************************************** - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(148)LiCSAlert_monitoring_mode() - 146  # 4c: Main loop to run LiCSAlert for each date that is required - 147  ---> 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - 150  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(148)LiCSAlert_monitoring_mode() - 146  # 4c: Main loop to run LiCSAlert for each date that is required - 147  ---> 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - 150  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(148)LiCSAlert_monitoring_mode() - 146  # 4c: Main loop to run LiCSAlert for each date that is required - 147  ---> 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - 150  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(148)LiCSAlert_monitoring_mode() - 146  # 4c: Main loop to run LiCSAlert for each date that is required - 147  ---> 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - 150  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. - - - - - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - - - - - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - - - - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(148)LiCSAlert_monitoring_mode() - 146  # 4c: Main loop to run LiCSAlert for each date that is required - 147  ---> 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - 150  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(148)LiCSAlert_monitoring_mode() - 146  # 4c: Main loop to run LiCSAlert for each date that is required - 147  ---> 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - 150  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(148)LiCSAlert_monitoring_mode() - 146  # 4c: Main loop to run LiCSAlert for each date that is required - 147  ---> 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - 150  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(148)LiCSAlert_monitoring_mode() - 146  # 4c: Main loop to run LiCSAlert for each date that is required - 147  ---> 148  for processing_date in LiCSAlert_status['combined_processing']: # - 149  print(f"Running LiCSAlert for {processing_date}") - 150  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:42:12 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:42:12 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:42:12 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:42:12 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 14:42:12 - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - -20141031 20141031 20141031 20141031 20141031 no no no no no - - - - -20141218 20141218 20141218 20141218 20141218 no no no no no - - - - -20150111 20150111 20150111 20150111 20150111 no no no no no - - - - -20150123 20150123 20150123 20150123 20150123 no no no no no - - - - -20150216 20150216 20150216 20150216 20150216 no no no no no - - - - -20150228 20150228 20150228 20150228 20150228 no no no no no - - - - -20150312 20150312 20150312 20150312 20150312 no no no no no - - - - -20150324 20150324 20150324 20150324 20150324 no no no no no - - - - -20150405 20150405 20150405 20150405 20150405 no no no no no - - - - -20150429 20150429 20150429 20150429 20150429 no no no no no - - - - -20150511 20150511 20150511 20150511 20150511 no no no no no - - - - -20150523 20150523 20150523 20150523 20150523 no no no no no - - - - -20150604 20150604 20150604 20150604 20150604 no no no no no - - - - -20150710 20150710 20150710 20150710 20150710 no no no no no - - - - -20150722 20150722 20150722 20150722 20150722 no no no no no - - - - -20150815 20150815 20150815 20150815 20150815 no no no no no - - - - -20150920 20150920 20150920 20150920 20150920 no no no no no - - - - -20151002 20151002 20151002 20151002 20151002 no no no no no - - - - -20151014 20151014 20151014 20151014 20151014 no no no no no - - - - -20151107 20151107 20151107 20151107 20151107 no no no no no - - - - -20151119 20151119 20151119 20151119 20151119 no no no no no - - - - -20151201 20151201 20151201 20151201 20151201 no no no no no - - - - -20151213 20151213 20151213 20151213 20151213 no no no no no - - - - -20151225 20151225 20151225 20151225 20151225 no no no no no - - - - -20160106 20160106 20160106 20160106 20160106 no no no no no - - - - -20160118 20160118 20160118 20160118 20160118 no no no no no - - - - -20160211 20160211 20160211 20160211 20160211 no no no no no - - - - -20160223 20160223 20160223 20160223 20160223 no no no no no - - - - -20160306 20160306 20160306 20160306 20160306 no no no no no - - - - -20160318 20160318 20160318 20160318 20160318 no no no no no - - - - -20160330 20160330 20160330 20160330 20160330 no no no no no - - - - -20160411 20160411 20160411 20160411 20160411 no no no no no - - - - -20160505 20160505 20160505 20160505 20160505 no no no no no - - - - -20160517 20160517 20160517 20160517 20160517 no no no no no - - - - -20160529 20160529 20160529 20160529 20160529 no no no no no - - - - -20160610 20160610 20160610 20160610 20160610 no no no no no - - - - -20160704 20160704 20160704 20160704 20160704 no no no no no - - - - -20160716 20160716 20160716 20160716 20160716 no no no no no - - - - -20160728 20160728 20160728 20160728 20160728 no no no no no - - - - -20160809 20160809 20160809 20160809 20160809 no no no no no - - - - -20160821 20160821 20160821 20160821 20160821 no no no no no - - - - -20160902 20160902 20160902 20160902 20160902 no no no no no - - - - -20160914 20160914 20160914 20160914 20160914 no no no no no - - - - -20160926 20160926 20160926 20160926 20160926 no no no no no - - - - -20161002 20161002 20161002 20161002 20161002 no no no no no - - - - -20161008 20161008 20161008 20161008 20161008 no no no no no - - - - -20161014 20161014 20161014 20161014 20161014 no no no no no - - - - -20161020 20161020 20161020 20161020 20161020 no no no no no - - - - -20161026 20161026 20161026 20161026 20161026 no no no no no - - - - -20161101 20161101 20161101 20161101 20161101 no no no no no - - - - -20161107 20161107 20161107 20161107 20161107 no no no no no - - - - -20161113 20161113 20161113 20161113 20161113 no no no no no - - - - -20161119 20161119 20161119 20161119 20161119 no no no no no - - - - -20161201 20161201 20161201 20161201 20161201 no no no no no - - - - -20161207 20161207 20161207 20161207 20161207 no no no no no - - - - -20161213 20161213 20161213 20161213 20161213 no no no no no - - - - -20161219 20161219 20161219 20161219 20161219 no no no no no - - - - -20161225 20161225 20161225 20161225 20161225 no no no no no - - - - -20161231 20161231 20161231 20161231 20161231 no no no no no - - - - -20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes not processed not processed not processed not processed not processed to processto processto processto processto process - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:11:29 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:11:29 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:11:29 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:11:29 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:11:29 - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - -20141031 20141031 20141031 20141031 20141031 no no no no no - - - - -20141218 20141218 20141218 20141218 20141218 no no no no no - - - - -20150111 20150111 20150111 20150111 20150111 no no no no no - - - - -20150123 20150123 20150123 20150123 20150123 no no no no no - - - - -20150216 20150216 20150216 20150216 20150216 no no no no no - - - - -20150228 20150228 20150228 20150228 20150228 no no no no no - - - - -20150312 20150312 20150312 20150312 20150312 no no no no no - - - - -20150324 20150324 20150324 20150324 20150324 no no no no no - - - - -20150405 20150405 20150405 20150405 20150405 no no no no no - - - - -20150429 20150429 20150429 20150429 20150429 no no no no no - - - - -20150511 20150511 20150511 20150511 20150511 no no no no no - - - - -20150523 20150523 20150523 20150523 20150523 no no no no no - - - - -20150604 20150604 20150604 20150604 20150604 no no no no no - - - - -20150710 20150710 20150710 20150710 20150710 no no no no no - - - - -20150722 20150722 20150722 20150722 20150722 no no no no no - - - - -20150815 20150815 20150815 20150815 20150815 no no no no no - - - - -20150920 20150920 20150920 20150920 20150920 no no no no no - - - - -20151002 20151002 20151002 20151002 20151002 no no no no no - - - - -20151014 20151014 20151014 20151014 20151014 no no no no no - - - - -20151107 20151107 20151107 20151107 20151107 no no no no no - - - - -20151119 20151119 20151119 20151119 20151119 no no no no no - - - - -20151201 20151201 20151201 20151201 20151201 no no no no no - - - - -20151213 20151213 20151213 20151213 20151213 no no no no no - - - - -20151225 20151225 20151225 20151225 20151225 no no no no no - - - - -20160106 20160106 20160106 20160106 20160106 no no no no no - - - - -20160118 20160118 20160118 20160118 20160118 no no no no no - - - - -20160211 20160211 20160211 20160211 20160211 no no no no no - - - - -20160223 20160223 20160223 20160223 20160223 no no no no no - - - - -20160306 20160306 20160306 20160306 20160306 no no no no no - - - - -20160318 20160318 20160318 20160318 20160318 no no no no no - - - - -20160330 20160330 20160330 20160330 20160330 no no no no no - - - - -20160411 20160411 20160411 20160411 20160411 no no no no no - - - - -20160505 20160505 20160505 20160505 20160505 no no no no no - - - - -20160517 20160517 20160517 20160517 20160517 no no no no no - - - - -20160529 20160529 20160529 20160529 20160529 no no no no no - - - - -20160610 20160610 20160610 20160610 20160610 no no no no no - - - - -20160704 20160704 20160704 20160704 20160704 no no no no no - - - - -20160716 20160716 20160716 20160716 20160716 no no no no no - - - - -20160728 20160728 20160728 20160728 20160728 no no no no no - - - - -20160809 20160809 20160809 20160809 20160809 no no no no no - - - - -20160821 20160821 20160821 20160821 20160821 no no no no no - - - - -20160902 20160902 20160902 20160902 20160902 no no no no no - - - - -20160914 20160914 20160914 20160914 20160914 no no no no no - - - - -20160926 20160926 20160926 20160926 20160926 no no no no no - - - - -20161002 20161002 20161002 20161002 20161002 no no no no no - - - - -20161008 20161008 20161008 20161008 20161008 no no no no no - - - - -20161014 20161014 20161014 20161014 20161014 no no no no no - - - - -20161020 20161020 20161020 20161020 20161020 no no no no no - - - - -20161026 20161026 20161026 20161026 20161026 no no no no no - - - - -20161101 20161101 20161101 20161101 20161101 no no no no no - - - - -20161107 20161107 20161107 20161107 20161107 no no no no no - - - - -20161113 20161113 20161113 20161113 20161113 no no no no no - - - - -20161119 20161119 20161119 20161119 20161119 no no no no no - - - - -20161201 20161201 20161201 20161201 20161201 no no no no no - - - - -20161207 20161207 20161207 20161207 20161207 no no no no no - - - - -20161213 20161213 20161213 20161213 20161213 no no no no no - - - - -20161219 20161219 20161219 20161219 20161219 no no no no no - - - - -20161225 20161225 20161225 20161225 20161225 no no no no no - - - - -20161231 20161231 20161231 20161231 20161231 no no no no no - - - - -20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes not processed not processed not processed not processed not processed to processto processto processto processto process - - - - -20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes processed processed processed processed processed - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - -Running LiCSAlert for 20210906Running LiCSAlert for 20210906Running LiCSAlert for 20210906Running LiCSAlert for 20210906Running LiCSAlert for 20210906 - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:14:47 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:14:47 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:14:47 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:14:47 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:14:47 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:14:47 - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - -************************************************************************************************************************************************************************************************************************************************ - - - - - -Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging... - - - - - -************************************************************************************************************************************************************************************************************************************************ - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  - - - - - - - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - - - - - - - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_3515/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - - - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - - - - - - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - - - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - - - - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - - - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - - - - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(128)LiCSAlert_monitoring_mode() - 126  del displacement_r2['cumulative'] # this is not needed and is deleted for safety. - 127  displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data ---> 128  LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) - 129  print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") - 130  - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(701)run_LiCSAlert_status() - 699  print(f"Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.") - 700  #LiCSAlert_status['to_process'] = [LiCSAlert_status['to_process'][-1]] ---> 701  LiCSAlert_status['to_process'] = [LiCSAlert_status[licsbas_last_acq]] - 702  - 703  - - - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:15:19 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:15:19 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:15:19 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:15:19 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:15:19 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:15:19 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:15:19 - - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - - - -20141031 20141031 20141031 20141031 20141031 20141031 20141031 no no no no no no no - - - - - - -20141218 20141218 20141218 20141218 20141218 20141218 20141218 no no no no no no no - - - - - - -20150111 20150111 20150111 20150111 20150111 20150111 20150111 no no no no no no no - - - - - - -20150123 20150123 20150123 20150123 20150123 20150123 20150123 no no no no no no no - - - - - - -20150216 20150216 20150216 20150216 20150216 20150216 20150216 no no no no no no no - - - - - - -20150228 20150228 20150228 20150228 20150228 20150228 20150228 no no no no no no no - - - - - - -20150312 20150312 20150312 20150312 20150312 20150312 20150312 no no no no no no no - - - - - - -20150324 20150324 20150324 20150324 20150324 20150324 20150324 no no no no no no no - - - - - - -20150405 20150405 20150405 20150405 20150405 20150405 20150405 no no no no no no no - - - - - - -20150429 20150429 20150429 20150429 20150429 20150429 20150429 no no no no no no no - - - - - - -20150511 20150511 20150511 20150511 20150511 20150511 20150511 no no no no no no no - - - - - - -20150523 20150523 20150523 20150523 20150523 20150523 20150523 no no no no no no no - - - - - - -20150604 20150604 20150604 20150604 20150604 20150604 20150604 no no no no no no no - - - - - - -20150710 20150710 20150710 20150710 20150710 20150710 20150710 no no no no no no no - - - - - - -20150722 20150722 20150722 20150722 20150722 20150722 20150722 no no no no no no no - - - - - - -20150815 20150815 20150815 20150815 20150815 20150815 20150815 no no no no no no no - - - - - - -20150920 20150920 20150920 20150920 20150920 20150920 20150920 no no no no no no no - - - - - - -20151002 20151002 20151002 20151002 20151002 20151002 20151002 no no no no no no no - - - - - - -20151014 20151014 20151014 20151014 20151014 20151014 20151014 no no no no no no no - - - - - - -20151107 20151107 20151107 20151107 20151107 20151107 20151107 no no no no no no no - - - - - - -20151119 20151119 20151119 20151119 20151119 20151119 20151119 no no no no no no no - - - - - - -20151201 20151201 20151201 20151201 20151201 20151201 20151201 no no no no no no no - - - - - - -20151213 20151213 20151213 20151213 20151213 20151213 20151213 no no no no no no no - - - - - - -20151225 20151225 20151225 20151225 20151225 20151225 20151225 no no no no no no no - - - - - - -20160106 20160106 20160106 20160106 20160106 20160106 20160106 no no no no no no no - - - - - - -20160118 20160118 20160118 20160118 20160118 20160118 20160118 no no no no no no no - - - - - - -20160211 20160211 20160211 20160211 20160211 20160211 20160211 no no no no no no no - - - - - - -20160223 20160223 20160223 20160223 20160223 20160223 20160223 no no no no no no no - - - - - - -20160306 20160306 20160306 20160306 20160306 20160306 20160306 no no no no no no no - - - - - - -20160318 20160318 20160318 20160318 20160318 20160318 20160318 no no no no no no no - - - - - - -20160330 20160330 20160330 20160330 20160330 20160330 20160330 no no no no no no no - - - - - - -20160411 20160411 20160411 20160411 20160411 20160411 20160411 no no no no no no no - - - - - - -20160505 20160505 20160505 20160505 20160505 20160505 20160505 no no no no no no no - - - - - - -20160517 20160517 20160517 20160517 20160517 20160517 20160517 no no no no no no no - - - - - - -20160529 20160529 20160529 20160529 20160529 20160529 20160529 no no no no no no no - - - - - - -20160610 20160610 20160610 20160610 20160610 20160610 20160610 no no no no no no no - - - - - - -20160704 20160704 20160704 20160704 20160704 20160704 20160704 no no no no no no no - - - - - - -20160716 20160716 20160716 20160716 20160716 20160716 20160716 no no no no no no no - - - - - - -20160728 20160728 20160728 20160728 20160728 20160728 20160728 no no no no no no no - - - - - - -20160809 20160809 20160809 20160809 20160809 20160809 20160809 no no no no no no no - - - - - - -20160821 20160821 20160821 20160821 20160821 20160821 20160821 no no no no no no no - - - - - - -20160902 20160902 20160902 20160902 20160902 20160902 20160902 no no no no no no no - - - - - - -20160914 20160914 20160914 20160914 20160914 20160914 20160914 no no no no no no no - - - - - - -20160926 20160926 20160926 20160926 20160926 20160926 20160926 no no no no no no no - - - - - - -20161002 20161002 20161002 20161002 20161002 20161002 20161002 no no no no no no no - - - - - - -20161008 20161008 20161008 20161008 20161008 20161008 20161008 no no no no no no no - - - - - - -20161014 20161014 20161014 20161014 20161014 20161014 20161014 no no no no no no no - - - - - - -20161020 20161020 20161020 20161020 20161020 20161020 20161020 no no no no no no no - - - - - - -20161026 20161026 20161026 20161026 20161026 20161026 20161026 no no no no no no no - - - - - - -20161101 20161101 20161101 20161101 20161101 20161101 20161101 no no no no no no no - - - - - - -20161107 20161107 20161107 20161107 20161107 20161107 20161107 no no no no no no no - - - - - - -20161113 20161113 20161113 20161113 20161113 20161113 20161113 no no no no no no no - - - - - - -20161119 20161119 20161119 20161119 20161119 20161119 20161119 no no no no no no no - - - - - - -20161201 20161201 20161201 20161201 20161201 20161201 20161201 no no no no no no no - - - - - - -20161207 20161207 20161207 20161207 20161207 20161207 20161207 no no no no no no no - - - - - - -20161213 20161213 20161213 20161213 20161213 20161213 20161213 no no no no no no no - - - - - - -20161219 20161219 20161219 20161219 20161219 20161219 20161219 no no no no no no no - - - - - - -20161225 20161225 20161225 20161225 20161225 20161225 20161225 no no no no no no no - - - - - - -20161231 20161231 20161231 20161231 20161231 20161231 20161231 no no no no no no no - - - - - - -20170112 20170112 20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170118 20170118 20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170124 20170124 20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170130 20170130 20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170205 20170205 20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170211 20170211 20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170223 20170223 20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170301 20170301 20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170307 20170307 20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170313 20170313 20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170319 20170319 20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170325 20170325 20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170331 20170331 20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170406 20170406 20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170412 20170412 20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170418 20170418 20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170424 20170424 20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170430 20170430 20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170506 20170506 20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170512 20170512 20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170518 20170518 20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170524 20170524 20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170530 20170530 20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170605 20170605 20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170611 20170611 20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170617 20170617 20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170623 20170623 20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170629 20170629 20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170705 20170705 20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170711 20170711 20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170717 20170717 20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170723 20170723 20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170729 20170729 20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170804 20170804 20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170816 20170816 20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170822 20170822 20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170828 20170828 20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170903 20170903 20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170909 20170909 20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170915 20170915 20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170921 20170921 20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170927 20170927 20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171009 20171009 20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171015 20171015 20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171021 20171021 20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171027 20171027 20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171102 20171102 20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171108 20171108 20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171114 20171114 20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171120 20171120 20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171202 20171202 20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171208 20171208 20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171214 20171214 20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171226 20171226 20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180101 20180101 20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180107 20180107 20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180113 20180113 20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180119 20180119 20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180125 20180125 20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180131 20180131 20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180206 20180206 20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180218 20180218 20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180224 20180224 20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180302 20180302 20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180308 20180308 20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180314 20180314 20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180320 20180320 20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180326 20180326 20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180401 20180401 20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180407 20180407 20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180413 20180413 20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180419 20180419 20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180425 20180425 20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180501 20180501 20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180507 20180507 20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180513 20180513 20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180519 20180519 20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180525 20180525 20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180531 20180531 20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180606 20180606 20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180612 20180612 20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180618 20180618 20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180630 20180630 20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180712 20180712 20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180718 20180718 20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180724 20180724 20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180730 20180730 20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180805 20180805 20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180811 20180811 20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180817 20180817 20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180823 20180823 20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180829 20180829 20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180904 20180904 20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180910 20180910 20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180916 20180916 20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180922 20180922 20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180928 20180928 20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181004 20181004 20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181010 20181010 20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181016 20181016 20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181022 20181022 20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181028 20181028 20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181109 20181109 20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181115 20181115 20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181121 20181121 20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181127 20181127 20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181203 20181203 20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181209 20181209 20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181215 20181215 20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181221 20181221 20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181227 20181227 20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190102 20190102 20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190108 20190108 20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190114 20190114 20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190120 20190120 20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190126 20190126 20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190201 20190201 20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190207 20190207 20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190213 20190213 20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190225 20190225 20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190303 20190303 20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190309 20190309 20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190321 20190321 20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190402 20190402 20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190408 20190408 20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190414 20190414 20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190420 20190420 20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190426 20190426 20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190502 20190502 20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190508 20190508 20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190520 20190520 20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190526 20190526 20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190601 20190601 20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190607 20190607 20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190613 20190613 20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190625 20190625 20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190701 20190701 20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190707 20190707 20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190713 20190713 20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190719 20190719 20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190725 20190725 20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190731 20190731 20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190806 20190806 20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190812 20190812 20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190818 20190818 20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190824 20190824 20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190830 20190830 20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190905 20190905 20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190911 20190911 20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190917 20190917 20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190923 20190923 20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191005 20191005 20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191011 20191011 20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191017 20191017 20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191023 20191023 20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191029 20191029 20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191104 20191104 20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191116 20191116 20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191122 20191122 20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191128 20191128 20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191204 20191204 20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191210 20191210 20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191216 20191216 20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191222 20191222 20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191228 20191228 20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200103 20200103 20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200109 20200109 20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200115 20200115 20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200121 20200121 20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200127 20200127 20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200202 20200202 20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200208 20200208 20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200214 20200214 20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200220 20200220 20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200226 20200226 20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200303 20200303 20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200309 20200309 20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200315 20200315 20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200321 20200321 20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200402 20200402 20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200408 20200408 20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200414 20200414 20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200420 20200420 20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200426 20200426 20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200502 20200502 20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200508 20200508 20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200514 20200514 20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200520 20200520 20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200526 20200526 20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200601 20200601 20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200607 20200607 20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200613 20200613 20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200619 20200619 20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200625 20200625 20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200701 20200701 20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200707 20200707 20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200713 20200713 20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200719 20200719 20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200725 20200725 20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200731 20200731 20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200806 20200806 20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200812 20200812 20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200818 20200818 20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200824 20200824 20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200830 20200830 20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200905 20200905 20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200911 20200911 20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200917 20200917 20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200923 20200923 20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200929 20200929 20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201005 20201005 20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201011 20201011 20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201017 20201017 20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201023 20201023 20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201029 20201029 20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201104 20201104 20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201110 20201110 20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201116 20201116 20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201122 20201122 20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201128 20201128 20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201204 20201204 20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201210 20201210 20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201216 20201216 20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201222 20201222 20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201228 20201228 20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210103 20210103 20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210109 20210109 20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210115 20210115 20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210121 20210121 20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210127 20210127 20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210202 20210202 20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210208 20210208 20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210214 20210214 20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210220 20210220 20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210226 20210226 20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210304 20210304 20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210310 20210310 20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210316 20210316 20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210322 20210322 20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210328 20210328 20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210403 20210403 20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210409 20210409 20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210415 20210415 20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210421 20210421 20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210427 20210427 20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210503 20210503 20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210509 20210509 20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210515 20210515 20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210521 20210521 20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210527 20210527 20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210602 20210602 20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210608 20210608 20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210614 20210614 20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210620 20210620 20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210626 20210626 20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210702 20210702 20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210708 20210708 20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210714 20210714 20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210720 20210720 20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210726 20210726 20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210801 20210801 20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210807 20210807 20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210813 20210813 20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210819 20210819 20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210825 20210825 20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210831 20210831 20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210906 20210906 20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210912 20210912 20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes yes yes processed processed processed processed processed processed processed to processto processto processto processto processto processto process - - - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - - - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - - - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(169)LiCSAlert_monitoring_mode() - 167  - 168  ---> 169  if processing_date == LiCSAlert_status['to_process'][-1]: # if it's the last date possible.... - 170  save_licsalert_products(displacement_r2['dem'], sources_tcs_baseline, residual_tcs_baseline, volcano_dir / processing_date, # save some useful outputs, - 171  remove_others = True, acq_dates = tbaseline_info['acq_dates'] ) # and clean up by removing this file from other dates (as we only need the last one) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(169)LiCSAlert_monitoring_mode() - 167  - 168  ---> 169  if processing_date == LiCSAlert_status['to_process'][-1]: # if it's the last date possible.... - 170  save_licsalert_products(displacement_r2['dem'], sources_tcs_baseline, residual_tcs_baseline, volcano_dir / processing_date, # save some useful outputs, - 171  remove_others = True, acq_dates = tbaseline_info['acq_dates'] ) # and clean up by removing this file from other dates (as we only need the last one) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(169)LiCSAlert_monitoring_mode() - 167  - 168  ---> 169  if processing_date == LiCSAlert_status['to_process'][-1]: # if it's the last date possible.... - 170  save_licsalert_products(displacement_r2['dem'], sources_tcs_baseline, residual_tcs_baseline, volcano_dir / processing_date, # save some useful outputs, - 171  remove_others = True, acq_dates = tbaseline_info['acq_dates'] ) # and clean up by removing this file from other dates (as we only need the last one) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(169)LiCSAlert_monitoring_mode() - 167  - 168  ---> 169  if processing_date == LiCSAlert_status['to_process'][-1]: # if it's the last date possible.... - 170  save_licsalert_products(displacement_r2['dem'], sources_tcs_baseline, residual_tcs_baseline, volcano_dir / processing_date, # save some useful outputs, - 171  remove_others = True, acq_dates = tbaseline_info['acq_dates'] ) # and clean up by removing this file from other dates (as we only need the last one) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(169)LiCSAlert_monitoring_mode() - 167  - 168  ---> 169  if processing_date == LiCSAlert_status['to_process'][-1]: # if it's the last date possible.... - 170  save_licsalert_products(displacement_r2['dem'], sources_tcs_baseline, residual_tcs_baseline, volcano_dir / processing_date, # save some useful outputs, - 171  remove_others = True, acq_dates = tbaseline_info['acq_dates'] ) # and clean up by removing this file from other dates (as we only need the last one) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(169)LiCSAlert_monitoring_mode() - 167  - 168  ---> 169  if processing_date == LiCSAlert_status['to_process'][-1]: # if it's the last date possible.... - 170  save_licsalert_products(displacement_r2['dem'], sources_tcs_baseline, residual_tcs_baseline, volcano_dir / processing_date, # save some useful outputs, - 171  remove_others = True, acq_dates = tbaseline_info['acq_dates'] ) # and clean up by removing this file from other dates (as we only need the last one) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(169)LiCSAlert_monitoring_mode() - 167  - 168  ---> 169  if processing_date == LiCSAlert_status['to_process'][-1]: # if it's the last date possible.... - 170  save_licsalert_products(displacement_r2['dem'], sources_tcs_baseline, residual_tcs_baseline, volcano_dir / processing_date, # save some useful outputs, - 171  remove_others = True, acq_dates = tbaseline_info['acq_dates'] ) # and clean up by removing this file from other dates (as we only need the last one) - - - - - - - -********************* AttributeError: 'list' object has no attribute 'keys'AttributeError: 'list' object has no attribute 'keys'AttributeError: 'list' object has no attribute 'keys'AttributeError: 'list' object has no attribute 'keys'AttributeError: 'list' object has no attribute 'keys'AttributeError: 'list' object has no attribute 'keys'AttributeError: 'list' object has no attribute 'keys' - - - - - - -Reloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalert - - - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:23:24 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:23:24 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:23:24 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:23:24 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:23:24 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:23:24 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:23:24 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:23:24 - - - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - - - - -20141031 20141031 20141031 20141031 20141031 20141031 20141031 20141031 no no no no no no no no - - - - - - - -20141218 20141218 20141218 20141218 20141218 20141218 20141218 20141218 no no no no no no no no - - - - - - - -20150111 20150111 20150111 20150111 20150111 20150111 20150111 20150111 no no no no no no no no - - - - - - - -20150123 20150123 20150123 20150123 20150123 20150123 20150123 20150123 no no no no no no no no - - - - - - - -20150216 20150216 20150216 20150216 20150216 20150216 20150216 20150216 no no no no no no no no - - - - - - - -20150228 20150228 20150228 20150228 20150228 20150228 20150228 20150228 no no no no no no no no - - - - - - - -20150312 20150312 20150312 20150312 20150312 20150312 20150312 20150312 no no no no no no no no - - - - - - - -20150324 20150324 20150324 20150324 20150324 20150324 20150324 20150324 no no no no no no no no - - - - - - - -20150405 20150405 20150405 20150405 20150405 20150405 20150405 20150405 no no no no no no no no - - - - - - - -20150429 20150429 20150429 20150429 20150429 20150429 20150429 20150429 no no no no no no no no - - - - - - - -20150511 20150511 20150511 20150511 20150511 20150511 20150511 20150511 no no no no no no no no - - - - - - - -20150523 20150523 20150523 20150523 20150523 20150523 20150523 20150523 no no no no no no no no - - - - - - - -20150604 20150604 20150604 20150604 20150604 20150604 20150604 20150604 no no no no no no no no - - - - - - - -20150710 20150710 20150710 20150710 20150710 20150710 20150710 20150710 no no no no no no no no - - - - - - - -20150722 20150722 20150722 20150722 20150722 20150722 20150722 20150722 no no no no no no no no - - - - - - - -20150815 20150815 20150815 20150815 20150815 20150815 20150815 20150815 no no no no no no no no - - - - - - - -20150920 20150920 20150920 20150920 20150920 20150920 20150920 20150920 no no no no no no no no - - - - - - - -20151002 20151002 20151002 20151002 20151002 20151002 20151002 20151002 no no no no no no no no - - - - - - - -20151014 20151014 20151014 20151014 20151014 20151014 20151014 20151014 no no no no no no no no - - - - - - - -20151107 20151107 20151107 20151107 20151107 20151107 20151107 20151107 no no no no no no no no - - - - - - - -20151119 20151119 20151119 20151119 20151119 20151119 20151119 20151119 no no no no no no no no - - - - - - - -20151201 20151201 20151201 20151201 20151201 20151201 20151201 20151201 no no no no no no no no - - - - - - - -20151213 20151213 20151213 20151213 20151213 20151213 20151213 20151213 no no no no no no no no - - - - - - - -20151225 20151225 20151225 20151225 20151225 20151225 20151225 20151225 no no no no no no no no - - - - - - - -20160106 20160106 20160106 20160106 20160106 20160106 20160106 20160106 no no no no no no no no - - - - - - - -20160118 20160118 20160118 20160118 20160118 20160118 20160118 20160118 no no no no no no no no - - - - - - - -20160211 20160211 20160211 20160211 20160211 20160211 20160211 20160211 no no no no no no no no - - - - - - - -20160223 20160223 20160223 20160223 20160223 20160223 20160223 20160223 no no no no no no no no - - - - - - - -20160306 20160306 20160306 20160306 20160306 20160306 20160306 20160306 no no no no no no no no - - - - - - - -20160318 20160318 20160318 20160318 20160318 20160318 20160318 20160318 no no no no no no no no - - - - - - - -20160330 20160330 20160330 20160330 20160330 20160330 20160330 20160330 no no no no no no no no - - - - - - - -20160411 20160411 20160411 20160411 20160411 20160411 20160411 20160411 no no no no no no no no - - - - - - - -20160505 20160505 20160505 20160505 20160505 20160505 20160505 20160505 no no no no no no no no - - - - - - - -20160517 20160517 20160517 20160517 20160517 20160517 20160517 20160517 no no no no no no no no - - - - - - - -20160529 20160529 20160529 20160529 20160529 20160529 20160529 20160529 no no no no no no no no - - - - - - - -20160610 20160610 20160610 20160610 20160610 20160610 20160610 20160610 no no no no no no no no - - - - - - - -20160704 20160704 20160704 20160704 20160704 20160704 20160704 20160704 no no no no no no no no - - - - - - - -20160716 20160716 20160716 20160716 20160716 20160716 20160716 20160716 no no no no no no no no - - - - - - - -20160728 20160728 20160728 20160728 20160728 20160728 20160728 20160728 no no no no no no no no - - - - - - - -20160809 20160809 20160809 20160809 20160809 20160809 20160809 20160809 no no no no no no no no - - - - - - - -20160821 20160821 20160821 20160821 20160821 20160821 20160821 20160821 no no no no no no no no - - - - - - - -20160902 20160902 20160902 20160902 20160902 20160902 20160902 20160902 no no no no no no no no - - - - - - - -20160914 20160914 20160914 20160914 20160914 20160914 20160914 20160914 no no no no no no no no - - - - - - - -20160926 20160926 20160926 20160926 20160926 20160926 20160926 20160926 no no no no no no no no - - - - - - - -20161002 20161002 20161002 20161002 20161002 20161002 20161002 20161002 no no no no no no no no - - - - - - - -20161008 20161008 20161008 20161008 20161008 20161008 20161008 20161008 no no no no no no no no - - - - - - - -20161014 20161014 20161014 20161014 20161014 20161014 20161014 20161014 no no no no no no no no - - - - - - - -20161020 20161020 20161020 20161020 20161020 20161020 20161020 20161020 no no no no no no no no - - - - - - - -20161026 20161026 20161026 20161026 20161026 20161026 20161026 20161026 no no no no no no no no - - - - - - - -20161101 20161101 20161101 20161101 20161101 20161101 20161101 20161101 no no no no no no no no - - - - - - - -20161107 20161107 20161107 20161107 20161107 20161107 20161107 20161107 no no no no no no no no - - - - - - - -20161113 20161113 20161113 20161113 20161113 20161113 20161113 20161113 no no no no no no no no - - - - - - - -20161119 20161119 20161119 20161119 20161119 20161119 20161119 20161119 no no no no no no no no - - - - - - - -20161201 20161201 20161201 20161201 20161201 20161201 20161201 20161201 no no no no no no no no - - - - - - - -20161207 20161207 20161207 20161207 20161207 20161207 20161207 20161207 no no no no no no no no - - - - - - - -20161213 20161213 20161213 20161213 20161213 20161213 20161213 20161213 no no no no no no no no - - - - - - - -20161219 20161219 20161219 20161219 20161219 20161219 20161219 20161219 no no no no no no no no - - - - - - - -20161225 20161225 20161225 20161225 20161225 20161225 20161225 20161225 no no no no no no no no - - - - - - - -20161231 20161231 20161231 20161231 20161231 20161231 20161231 20161231 no no no no no no no no - - - - - - - -20170112 20170112 20170112 20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170118 20170118 20170118 20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170124 20170124 20170124 20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170130 20170130 20170130 20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170205 20170205 20170205 20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170211 20170211 20170211 20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170223 20170223 20170223 20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170301 20170301 20170301 20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170307 20170307 20170307 20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170313 20170313 20170313 20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170319 20170319 20170319 20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170325 20170325 20170325 20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170331 20170331 20170331 20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170406 20170406 20170406 20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170412 20170412 20170412 20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170418 20170418 20170418 20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170424 20170424 20170424 20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170430 20170430 20170430 20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170506 20170506 20170506 20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170512 20170512 20170512 20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170518 20170518 20170518 20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170524 20170524 20170524 20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170530 20170530 20170530 20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170605 20170605 20170605 20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170611 20170611 20170611 20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170617 20170617 20170617 20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170623 20170623 20170623 20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170629 20170629 20170629 20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170705 20170705 20170705 20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170711 20170711 20170711 20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170717 20170717 20170717 20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170723 20170723 20170723 20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170729 20170729 20170729 20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170804 20170804 20170804 20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170816 20170816 20170816 20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170822 20170822 20170822 20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170828 20170828 20170828 20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170903 20170903 20170903 20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170909 20170909 20170909 20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170915 20170915 20170915 20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170921 20170921 20170921 20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20170927 20170927 20170927 20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171009 20171009 20171009 20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171015 20171015 20171015 20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171021 20171021 20171021 20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171027 20171027 20171027 20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171102 20171102 20171102 20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171108 20171108 20171108 20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171114 20171114 20171114 20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171120 20171120 20171120 20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171202 20171202 20171202 20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171208 20171208 20171208 20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171214 20171214 20171214 20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20171226 20171226 20171226 20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180101 20180101 20180101 20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180107 20180107 20180107 20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180113 20180113 20180113 20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180119 20180119 20180119 20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180125 20180125 20180125 20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180131 20180131 20180131 20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180206 20180206 20180206 20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180218 20180218 20180218 20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180224 20180224 20180224 20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180302 20180302 20180302 20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180308 20180308 20180308 20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180314 20180314 20180314 20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180320 20180320 20180320 20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180326 20180326 20180326 20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180401 20180401 20180401 20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180407 20180407 20180407 20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180413 20180413 20180413 20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180419 20180419 20180419 20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180425 20180425 20180425 20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180501 20180501 20180501 20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180507 20180507 20180507 20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180513 20180513 20180513 20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180519 20180519 20180519 20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180525 20180525 20180525 20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180531 20180531 20180531 20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180606 20180606 20180606 20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180612 20180612 20180612 20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180618 20180618 20180618 20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180630 20180630 20180630 20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180712 20180712 20180712 20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180718 20180718 20180718 20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180724 20180724 20180724 20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180730 20180730 20180730 20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180805 20180805 20180805 20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180811 20180811 20180811 20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180817 20180817 20180817 20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180823 20180823 20180823 20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180829 20180829 20180829 20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180904 20180904 20180904 20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180910 20180910 20180910 20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180916 20180916 20180916 20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180922 20180922 20180922 20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20180928 20180928 20180928 20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181004 20181004 20181004 20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181010 20181010 20181010 20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181016 20181016 20181016 20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181022 20181022 20181022 20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181028 20181028 20181028 20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181109 20181109 20181109 20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181115 20181115 20181115 20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181121 20181121 20181121 20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181127 20181127 20181127 20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181203 20181203 20181203 20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181209 20181209 20181209 20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181215 20181215 20181215 20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181221 20181221 20181221 20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20181227 20181227 20181227 20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190102 20190102 20190102 20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190108 20190108 20190108 20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190114 20190114 20190114 20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190120 20190120 20190120 20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190126 20190126 20190126 20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190201 20190201 20190201 20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190207 20190207 20190207 20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190213 20190213 20190213 20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190225 20190225 20190225 20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190303 20190303 20190303 20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190309 20190309 20190309 20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190321 20190321 20190321 20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190402 20190402 20190402 20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190408 20190408 20190408 20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190414 20190414 20190414 20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190420 20190420 20190420 20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190426 20190426 20190426 20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190502 20190502 20190502 20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190508 20190508 20190508 20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190520 20190520 20190520 20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190526 20190526 20190526 20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190601 20190601 20190601 20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190607 20190607 20190607 20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190613 20190613 20190613 20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190625 20190625 20190625 20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190701 20190701 20190701 20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190707 20190707 20190707 20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190713 20190713 20190713 20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190719 20190719 20190719 20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190725 20190725 20190725 20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190731 20190731 20190731 20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190806 20190806 20190806 20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190812 20190812 20190812 20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190818 20190818 20190818 20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190824 20190824 20190824 20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190830 20190830 20190830 20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190905 20190905 20190905 20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190911 20190911 20190911 20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190917 20190917 20190917 20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20190923 20190923 20190923 20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191005 20191005 20191005 20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191011 20191011 20191011 20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191017 20191017 20191017 20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191023 20191023 20191023 20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191029 20191029 20191029 20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191104 20191104 20191104 20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191116 20191116 20191116 20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191122 20191122 20191122 20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191128 20191128 20191128 20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191204 20191204 20191204 20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191210 20191210 20191210 20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191216 20191216 20191216 20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191222 20191222 20191222 20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20191228 20191228 20191228 20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200103 20200103 20200103 20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200109 20200109 20200109 20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200115 20200115 20200115 20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200121 20200121 20200121 20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200127 20200127 20200127 20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200202 20200202 20200202 20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200208 20200208 20200208 20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200214 20200214 20200214 20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200220 20200220 20200220 20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200226 20200226 20200226 20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200303 20200303 20200303 20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200309 20200309 20200309 20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200315 20200315 20200315 20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200321 20200321 20200321 20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200402 20200402 20200402 20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200408 20200408 20200408 20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200414 20200414 20200414 20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200420 20200420 20200420 20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200426 20200426 20200426 20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200502 20200502 20200502 20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200508 20200508 20200508 20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200514 20200514 20200514 20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200520 20200520 20200520 20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200526 20200526 20200526 20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200601 20200601 20200601 20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200607 20200607 20200607 20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200613 20200613 20200613 20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200619 20200619 20200619 20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200625 20200625 20200625 20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200701 20200701 20200701 20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200707 20200707 20200707 20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200713 20200713 20200713 20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200719 20200719 20200719 20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200725 20200725 20200725 20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200731 20200731 20200731 20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200806 20200806 20200806 20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200812 20200812 20200812 20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200818 20200818 20200818 20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200824 20200824 20200824 20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200830 20200830 20200830 20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200905 20200905 20200905 20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200911 20200911 20200911 20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200917 20200917 20200917 20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200923 20200923 20200923 20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20200929 20200929 20200929 20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201005 20201005 20201005 20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201011 20201011 20201011 20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201017 20201017 20201017 20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201023 20201023 20201023 20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201029 20201029 20201029 20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201104 20201104 20201104 20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201110 20201110 20201110 20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201116 20201116 20201116 20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201122 20201122 20201122 20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201128 20201128 20201128 20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201204 20201204 20201204 20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201210 20201210 20201210 20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201216 20201216 20201216 20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201222 20201222 20201222 20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20201228 20201228 20201228 20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210103 20210103 20210103 20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210109 20210109 20210109 20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210115 20210115 20210115 20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210121 20210121 20210121 20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210127 20210127 20210127 20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210202 20210202 20210202 20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210208 20210208 20210208 20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210214 20210214 20210214 20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210220 20210220 20210220 20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210226 20210226 20210226 20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210304 20210304 20210304 20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210310 20210310 20210310 20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210316 20210316 20210316 20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210322 20210322 20210322 20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210328 20210328 20210328 20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210403 20210403 20210403 20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210409 20210409 20210409 20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210415 20210415 20210415 20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210421 20210421 20210421 20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210427 20210427 20210427 20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210503 20210503 20210503 20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210509 20210509 20210509 20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210515 20210515 20210515 20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210521 20210521 20210521 20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210527 20210527 20210527 20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210602 20210602 20210602 20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210608 20210608 20210608 20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210614 20210614 20210614 20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210620 20210620 20210620 20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210626 20210626 20210626 20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210702 20210702 20210702 20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210708 20210708 20210708 20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210714 20210714 20210714 20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210720 20210720 20210720 20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210726 20210726 20210726 20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210801 20210801 20210801 20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210807 20210807 20210807 20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210813 20210813 20210813 20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210819 20210819 20210819 20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210825 20210825 20210825 20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210831 20210831 20210831 20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210906 20210906 20210906 20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - -20210912 20210912 20210912 20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes yes yes yes processed processed processed processed processed processed processed processed to processto processto processto processto processto processto processto process - - - - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - - - - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - - - - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/licsalert.py(291)LiCSAlert() - 289  - 290  #2: Calculate time courses/distances etc for the monitoring data ---> 291  if ifgs_monitoring is not None: - 292  tcs_c, residual, d_hat, d_resid = bss_components_inversion(sources, ifgs_monitoring, cumulative=True) # compute cumulative time courses for monitoring interferograms (ie simple inversion to fit each ifg in ifgs_baseline using sources. ) - 293  sources_tcs_monitor = tcs_monitoring(tcs_c, sources_tcs, time_values) # update lines, gradients, etc for time courses Note done by tcs_monitoring, which contrasts with tcs_baseline (which is used before) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/licsalert.py(291)LiCSAlert() - 289  - 290  #2: Calculate time courses/distances etc for the monitoring data ---> 291  if ifgs_monitoring is not None: - 292  tcs_c, residual, d_hat, d_resid = bss_components_inversion(sources, ifgs_monitoring, cumulative=True) # compute cumulative time courses for monitoring interferograms (ie simple inversion to fit each ifg in ifgs_baseline using sources. ) - 293  sources_tcs_monitor = tcs_monitoring(tcs_c, sources_tcs, time_values) # update lines, gradients, etc for time courses Note done by tcs_monitoring, which contrasts with tcs_baseline (which is used before) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/licsalert.py(291)LiCSAlert() - 289  - 290  #2: Calculate time courses/distances etc for the monitoring data ---> 291  if ifgs_monitoring is not None: - 292  tcs_c, residual, d_hat, d_resid = bss_components_inversion(sources, ifgs_monitoring, cumulative=True) # compute cumulative time courses for monitoring interferograms (ie simple inversion to fit each ifg in ifgs_baseline using sources. ) - 293  sources_tcs_monitor = tcs_monitoring(tcs_c, sources_tcs, time_values) # update lines, gradients, etc for time courses Note done by tcs_monitoring, which contrasts with tcs_baseline (which is used before) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/licsalert.py(291)LiCSAlert() - 289  - 290  #2: Calculate time courses/distances etc for the monitoring data ---> 291  if ifgs_monitoring is not None: - 292  tcs_c, residual, d_hat, d_resid = bss_components_inversion(sources, ifgs_monitoring, cumulative=True) # compute cumulative time courses for monitoring interferograms (ie simple inversion to fit each ifg in ifgs_baseline using sources. ) - 293  sources_tcs_monitor = tcs_monitoring(tcs_c, sources_tcs, time_values) # update lines, gradients, etc for time courses Note done by tcs_monitoring, which contrasts with tcs_baseline (which is used before) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/licsalert.py(291)LiCSAlert() - 289  - 290  #2: Calculate time courses/distances etc for the monitoring data ---> 291  if ifgs_monitoring is not None: - 292  tcs_c, residual, d_hat, d_resid = bss_components_inversion(sources, ifgs_monitoring, cumulative=True) # compute cumulative time courses for monitoring interferograms (ie simple inversion to fit each ifg in ifgs_baseline using sources. ) - 293  sources_tcs_monitor = tcs_monitoring(tcs_c, sources_tcs, time_values) # update lines, gradients, etc for time courses Note done by tcs_monitoring, which contrasts with tcs_baseline (which is used before) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/licsalert.py(291)LiCSAlert() - 289  - 290  #2: Calculate time courses/distances etc for the monitoring data ---> 291  if ifgs_monitoring is not None: - 292  tcs_c, residual, d_hat, d_resid = bss_components_inversion(sources, ifgs_monitoring, cumulative=True) # compute cumulative time courses for monitoring interferograms (ie simple inversion to fit each ifg in ifgs_baseline using sources. ) - 293  sources_tcs_monitor = tcs_monitoring(tcs_c, sources_tcs, time_values) # update lines, gradients, etc for time courses Note done by tcs_monitoring, which contrasts with tcs_baseline (which is used before) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/licsalert.py(291)LiCSAlert() - 289  - 290  #2: Calculate time courses/distances etc for the monitoring data ---> 291  if ifgs_monitoring is not None: - 292  tcs_c, residual, d_hat, d_resid = bss_components_inversion(sources, ifgs_monitoring, cumulative=True) # compute cumulative time courses for monitoring interferograms (ie simple inversion to fit each ifg in ifgs_baseline using sources. ) - 293  sources_tcs_monitor = tcs_monitoring(tcs_c, sources_tcs, time_values) # update lines, gradients, etc for time courses Note done by tcs_monitoring, which contrasts with tcs_baseline (which is used before) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/licsalert.py(291)LiCSAlert() - 289  - 290  #2: Calculate time courses/distances etc for the monitoring data ---> 291  if ifgs_monitoring is not None: - 292  tcs_c, residual, d_hat, d_resid = bss_components_inversion(sources, ifgs_monitoring, cumulative=True) # compute cumulative time courses for monitoring interferograms (ie simple inversion to fit each ifg in ifgs_baseline using sources. ) - 293  sources_tcs_monitor = tcs_monitoring(tcs_c, sources_tcs, time_values) # update lines, gradients, etc for time courses Note done by tcs_monitoring, which contrasts with tcs_baseline (which is used before) - - - - - - - - -************************ NameError: name 'tcs_c' is not definedNameError: name 'tcs_c' is not definedNameError: name 'tcs_c' is not definedNameError: name 'tcs_c' is not definedNameError: name 'tcs_c' is not definedNameError: name 'tcs_c' is not definedNameError: name 'tcs_c' is not definedNameError: name 'tcs_c' is not defined - - - - - - - -************************ NameError: name 'residual' is not definedNameError: name 'residual' is not definedNameError: name 'residual' is not definedNameError: name 'residual' is not definedNameError: name 'residual' is not definedNameError: name 'residual' is not definedNameError: name 'residual' is not definedNameError: name 'residual' is not defined - - - - - - - - -Output from spyder call 'get_cwd': - -Output from spyder call 'get_cwd': - -Output from spyder call 'get_cwd': - -Output from spyder call 'get_cwd': - -Output from spyder call 'get_cwd': - -Output from spyder call 'get_cwd': - -Output from spyder call 'get_cwd': - -Output from spyder call 'get_cwd': -Reloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalertReloaded modules: licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.licsalert - - - - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:29:48 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:29:48 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:29:48 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:29:48 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:29:48 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:29:48 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:29:48 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:29:48 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:29:48 - - - - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - - - - - -20141031 20141031 20141031 20141031 20141031 20141031 20141031 20141031 20141031 no no no no no no no no no - - - - - - - - -20141218 20141218 20141218 20141218 20141218 20141218 20141218 20141218 20141218 no no no no no no no no no - - - - - - - - -20150111 20150111 20150111 20150111 20150111 20150111 20150111 20150111 20150111 no no no no no no no no no - - - - - - - - -20150123 20150123 20150123 20150123 20150123 20150123 20150123 20150123 20150123 no no no no no no no no no - - - - - - - - -20150216 20150216 20150216 20150216 20150216 20150216 20150216 20150216 20150216 no no no no no no no no no - - - - - - - - -20150228 20150228 20150228 20150228 20150228 20150228 20150228 20150228 20150228 no no no no no no no no no - - - - - - - - -20150312 20150312 20150312 20150312 20150312 20150312 20150312 20150312 20150312 no no no no no no no no no - - - - - - - - -20150324 20150324 20150324 20150324 20150324 20150324 20150324 20150324 20150324 no no no no no no no no no - - - - - - - - -20150405 20150405 20150405 20150405 20150405 20150405 20150405 20150405 20150405 no no no no no no no no no - - - - - - - - -20150429 20150429 20150429 20150429 20150429 20150429 20150429 20150429 20150429 no no no no no no no no no - - - - - - - - -20150511 20150511 20150511 20150511 20150511 20150511 20150511 20150511 20150511 no no no no no no no no no - - - - - - - - -20150523 20150523 20150523 20150523 20150523 20150523 20150523 20150523 20150523 no no no no no no no no no - - - - - - - - -20150604 20150604 20150604 20150604 20150604 20150604 20150604 20150604 20150604 no no no no no no no no no - - - - - - - - -20150710 20150710 20150710 20150710 20150710 20150710 20150710 20150710 20150710 no no no no no no no no no - - - - - - - - -20150722 20150722 20150722 20150722 20150722 20150722 20150722 20150722 20150722 no no no no no no no no no - - - - - - - - -20150815 20150815 20150815 20150815 20150815 20150815 20150815 20150815 20150815 no no no no no no no no no - - - - - - - - -20150920 20150920 20150920 20150920 20150920 20150920 20150920 20150920 20150920 no no no no no no no no no - - - - - - - - -20151002 20151002 20151002 20151002 20151002 20151002 20151002 20151002 20151002 no no no no no no no no no - - - - - - - - -20151014 20151014 20151014 20151014 20151014 20151014 20151014 20151014 20151014 no no no no no no no no no - - - - - - - - -20151107 20151107 20151107 20151107 20151107 20151107 20151107 20151107 20151107 no no no no no no no no no - - - - - - - - -20151119 20151119 20151119 20151119 20151119 20151119 20151119 20151119 20151119 no no no no no no no no no - - - - - - - - -20151201 20151201 20151201 20151201 20151201 20151201 20151201 20151201 20151201 no no no no no no no no no - - - - - - - - -20151213 20151213 20151213 20151213 20151213 20151213 20151213 20151213 20151213 no no no no no no no no no - - - - - - - - -20151225 20151225 20151225 20151225 20151225 20151225 20151225 20151225 20151225 no no no no no no no no no - - - - - - - - -20160106 20160106 20160106 20160106 20160106 20160106 20160106 20160106 20160106 no no no no no no no no no - - - - - - - - -20160118 20160118 20160118 20160118 20160118 20160118 20160118 20160118 20160118 no no no no no no no no no - - - - - - - - -20160211 20160211 20160211 20160211 20160211 20160211 20160211 20160211 20160211 no no no no no no no no no - - - - - - - - -20160223 20160223 20160223 20160223 20160223 20160223 20160223 20160223 20160223 no no no no no no no no no - - - - - - - - -20160306 20160306 20160306 20160306 20160306 20160306 20160306 20160306 20160306 no no no no no no no no no - - - - - - - - -20160318 20160318 20160318 20160318 20160318 20160318 20160318 20160318 20160318 no no no no no no no no no - - - - - - - - -20160330 20160330 20160330 20160330 20160330 20160330 20160330 20160330 20160330 no no no no no no no no no - - - - - - - - -20160411 20160411 20160411 20160411 20160411 20160411 20160411 20160411 20160411 no no no no no no no no no - - - - - - - - -20160505 20160505 20160505 20160505 20160505 20160505 20160505 20160505 20160505 no no no no no no no no no - - - - - - - - -20160517 20160517 20160517 20160517 20160517 20160517 20160517 20160517 20160517 no no no no no no no no no - - - - - - - - -20160529 20160529 20160529 20160529 20160529 20160529 20160529 20160529 20160529 no no no no no no no no no - - - - - - - - -20160610 20160610 20160610 20160610 20160610 20160610 20160610 20160610 20160610 no no no no no no no no no - - - - - - - - -20160704 20160704 20160704 20160704 20160704 20160704 20160704 20160704 20160704 no no no no no no no no no - - - - - - - - -20160716 20160716 20160716 20160716 20160716 20160716 20160716 20160716 20160716 no no no no no no no no no - - - - - - - - -20160728 20160728 20160728 20160728 20160728 20160728 20160728 20160728 20160728 no no no no no no no no no - - - - - - - - -20160809 20160809 20160809 20160809 20160809 20160809 20160809 20160809 20160809 no no no no no no no no no - - - - - - - - -20160821 20160821 20160821 20160821 20160821 20160821 20160821 20160821 20160821 no no no no no no no no no - - - - - - - - -20160902 20160902 20160902 20160902 20160902 20160902 20160902 20160902 20160902 no no no no no no no no no - - - - - - - - -20160914 20160914 20160914 20160914 20160914 20160914 20160914 20160914 20160914 no no no no no no no no no - - - - - - - - -20160926 20160926 20160926 20160926 20160926 20160926 20160926 20160926 20160926 no no no no no no no no no - - - - - - - - -20161002 20161002 20161002 20161002 20161002 20161002 20161002 20161002 20161002 no no no no no no no no no - - - - - - - - -20161008 20161008 20161008 20161008 20161008 20161008 20161008 20161008 20161008 no no no no no no no no no - - - - - - - - -20161014 20161014 20161014 20161014 20161014 20161014 20161014 20161014 20161014 no no no no no no no no no - - - - - - - - -20161020 20161020 20161020 20161020 20161020 20161020 20161020 20161020 20161020 no no no no no no no no no - - - - - - - - -20161026 20161026 20161026 20161026 20161026 20161026 20161026 20161026 20161026 no no no no no no no no no - - - - - - - - -20161101 20161101 20161101 20161101 20161101 20161101 20161101 20161101 20161101 no no no no no no no no no - - - - - - - - -20161107 20161107 20161107 20161107 20161107 20161107 20161107 20161107 20161107 no no no no no no no no no - - - - - - - - -20161113 20161113 20161113 20161113 20161113 20161113 20161113 20161113 20161113 no no no no no no no no no - - - - - - - - -20161119 20161119 20161119 20161119 20161119 20161119 20161119 20161119 20161119 no no no no no no no no no - - - - - - - - -20161201 20161201 20161201 20161201 20161201 20161201 20161201 20161201 20161201 no no no no no no no no no - - - - - - - - -20161207 20161207 20161207 20161207 20161207 20161207 20161207 20161207 20161207 no no no no no no no no no - - - - - - - - -20161213 20161213 20161213 20161213 20161213 20161213 20161213 20161213 20161213 no no no no no no no no no - - - - - - - - -20161219 20161219 20161219 20161219 20161219 20161219 20161219 20161219 20161219 no no no no no no no no no - - - - - - - - -20161225 20161225 20161225 20161225 20161225 20161225 20161225 20161225 20161225 no no no no no no no no no - - - - - - - - -20161231 20161231 20161231 20161231 20161231 20161231 20161231 20161231 20161231 no no no no no no no no no - - - - - - - - -20170112 20170112 20170112 20170112 20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170118 20170118 20170118 20170118 20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170124 20170124 20170124 20170124 20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170130 20170130 20170130 20170130 20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170205 20170205 20170205 20170205 20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170211 20170211 20170211 20170211 20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170223 20170223 20170223 20170223 20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170301 20170301 20170301 20170301 20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170307 20170307 20170307 20170307 20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170313 20170313 20170313 20170313 20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170319 20170319 20170319 20170319 20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170325 20170325 20170325 20170325 20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170331 20170331 20170331 20170331 20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170406 20170406 20170406 20170406 20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170412 20170412 20170412 20170412 20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170418 20170418 20170418 20170418 20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170424 20170424 20170424 20170424 20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170430 20170430 20170430 20170430 20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170506 20170506 20170506 20170506 20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170512 20170512 20170512 20170512 20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170518 20170518 20170518 20170518 20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170524 20170524 20170524 20170524 20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170530 20170530 20170530 20170530 20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170605 20170605 20170605 20170605 20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170611 20170611 20170611 20170611 20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170617 20170617 20170617 20170617 20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170623 20170623 20170623 20170623 20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170629 20170629 20170629 20170629 20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170705 20170705 20170705 20170705 20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170711 20170711 20170711 20170711 20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170717 20170717 20170717 20170717 20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170723 20170723 20170723 20170723 20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170729 20170729 20170729 20170729 20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170804 20170804 20170804 20170804 20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170816 20170816 20170816 20170816 20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170822 20170822 20170822 20170822 20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170828 20170828 20170828 20170828 20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170903 20170903 20170903 20170903 20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170909 20170909 20170909 20170909 20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170915 20170915 20170915 20170915 20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170921 20170921 20170921 20170921 20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20170927 20170927 20170927 20170927 20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171009 20171009 20171009 20171009 20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171015 20171015 20171015 20171015 20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171021 20171021 20171021 20171021 20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171027 20171027 20171027 20171027 20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171102 20171102 20171102 20171102 20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171108 20171108 20171108 20171108 20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171114 20171114 20171114 20171114 20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171120 20171120 20171120 20171120 20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171202 20171202 20171202 20171202 20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171208 20171208 20171208 20171208 20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171214 20171214 20171214 20171214 20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20171226 20171226 20171226 20171226 20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180101 20180101 20180101 20180101 20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180107 20180107 20180107 20180107 20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180113 20180113 20180113 20180113 20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180119 20180119 20180119 20180119 20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180125 20180125 20180125 20180125 20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180131 20180131 20180131 20180131 20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180206 20180206 20180206 20180206 20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180218 20180218 20180218 20180218 20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180224 20180224 20180224 20180224 20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180302 20180302 20180302 20180302 20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180308 20180308 20180308 20180308 20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180314 20180314 20180314 20180314 20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180320 20180320 20180320 20180320 20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180326 20180326 20180326 20180326 20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180401 20180401 20180401 20180401 20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180407 20180407 20180407 20180407 20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180413 20180413 20180413 20180413 20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180419 20180419 20180419 20180419 20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180425 20180425 20180425 20180425 20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180501 20180501 20180501 20180501 20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180507 20180507 20180507 20180507 20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180513 20180513 20180513 20180513 20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180519 20180519 20180519 20180519 20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180525 20180525 20180525 20180525 20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180531 20180531 20180531 20180531 20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180606 20180606 20180606 20180606 20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180612 20180612 20180612 20180612 20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180618 20180618 20180618 20180618 20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180630 20180630 20180630 20180630 20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180712 20180712 20180712 20180712 20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180718 20180718 20180718 20180718 20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180724 20180724 20180724 20180724 20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180730 20180730 20180730 20180730 20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180805 20180805 20180805 20180805 20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180811 20180811 20180811 20180811 20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180817 20180817 20180817 20180817 20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180823 20180823 20180823 20180823 20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180829 20180829 20180829 20180829 20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180904 20180904 20180904 20180904 20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180910 20180910 20180910 20180910 20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180916 20180916 20180916 20180916 20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180922 20180922 20180922 20180922 20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20180928 20180928 20180928 20180928 20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181004 20181004 20181004 20181004 20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181010 20181010 20181010 20181010 20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181016 20181016 20181016 20181016 20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181022 20181022 20181022 20181022 20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181028 20181028 20181028 20181028 20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181109 20181109 20181109 20181109 20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181115 20181115 20181115 20181115 20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181121 20181121 20181121 20181121 20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181127 20181127 20181127 20181127 20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181203 20181203 20181203 20181203 20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181209 20181209 20181209 20181209 20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181215 20181215 20181215 20181215 20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181221 20181221 20181221 20181221 20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20181227 20181227 20181227 20181227 20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190102 20190102 20190102 20190102 20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190108 20190108 20190108 20190108 20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190114 20190114 20190114 20190114 20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190120 20190120 20190120 20190120 20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190126 20190126 20190126 20190126 20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190201 20190201 20190201 20190201 20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190207 20190207 20190207 20190207 20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190213 20190213 20190213 20190213 20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190225 20190225 20190225 20190225 20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190303 20190303 20190303 20190303 20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190309 20190309 20190309 20190309 20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190321 20190321 20190321 20190321 20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190402 20190402 20190402 20190402 20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190408 20190408 20190408 20190408 20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190414 20190414 20190414 20190414 20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190420 20190420 20190420 20190420 20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190426 20190426 20190426 20190426 20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190502 20190502 20190502 20190502 20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190508 20190508 20190508 20190508 20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190520 20190520 20190520 20190520 20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190526 20190526 20190526 20190526 20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190601 20190601 20190601 20190601 20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190607 20190607 20190607 20190607 20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190613 20190613 20190613 20190613 20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190625 20190625 20190625 20190625 20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190701 20190701 20190701 20190701 20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190707 20190707 20190707 20190707 20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190713 20190713 20190713 20190713 20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190719 20190719 20190719 20190719 20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190725 20190725 20190725 20190725 20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190731 20190731 20190731 20190731 20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190806 20190806 20190806 20190806 20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190812 20190812 20190812 20190812 20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190818 20190818 20190818 20190818 20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190824 20190824 20190824 20190824 20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190830 20190830 20190830 20190830 20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190905 20190905 20190905 20190905 20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190911 20190911 20190911 20190911 20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190917 20190917 20190917 20190917 20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20190923 20190923 20190923 20190923 20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191005 20191005 20191005 20191005 20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191011 20191011 20191011 20191011 20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191017 20191017 20191017 20191017 20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191023 20191023 20191023 20191023 20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191029 20191029 20191029 20191029 20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191104 20191104 20191104 20191104 20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191116 20191116 20191116 20191116 20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191122 20191122 20191122 20191122 20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191128 20191128 20191128 20191128 20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191204 20191204 20191204 20191204 20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191210 20191210 20191210 20191210 20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191216 20191216 20191216 20191216 20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191222 20191222 20191222 20191222 20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20191228 20191228 20191228 20191228 20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200103 20200103 20200103 20200103 20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200109 20200109 20200109 20200109 20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200115 20200115 20200115 20200115 20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200121 20200121 20200121 20200121 20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200127 20200127 20200127 20200127 20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200202 20200202 20200202 20200202 20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200208 20200208 20200208 20200208 20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200214 20200214 20200214 20200214 20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200220 20200220 20200220 20200220 20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200226 20200226 20200226 20200226 20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200303 20200303 20200303 20200303 20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200309 20200309 20200309 20200309 20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200315 20200315 20200315 20200315 20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200321 20200321 20200321 20200321 20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200402 20200402 20200402 20200402 20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200408 20200408 20200408 20200408 20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200414 20200414 20200414 20200414 20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200420 20200420 20200420 20200420 20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200426 20200426 20200426 20200426 20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200502 20200502 20200502 20200502 20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200508 20200508 20200508 20200508 20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200514 20200514 20200514 20200514 20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200520 20200520 20200520 20200520 20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200526 20200526 20200526 20200526 20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200601 20200601 20200601 20200601 20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200607 20200607 20200607 20200607 20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200613 20200613 20200613 20200613 20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200619 20200619 20200619 20200619 20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200625 20200625 20200625 20200625 20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200701 20200701 20200701 20200701 20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200707 20200707 20200707 20200707 20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200713 20200713 20200713 20200713 20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200719 20200719 20200719 20200719 20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200725 20200725 20200725 20200725 20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200731 20200731 20200731 20200731 20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200806 20200806 20200806 20200806 20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200812 20200812 20200812 20200812 20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200818 20200818 20200818 20200818 20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200824 20200824 20200824 20200824 20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200830 20200830 20200830 20200830 20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200905 20200905 20200905 20200905 20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200911 20200911 20200911 20200911 20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200917 20200917 20200917 20200917 20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200923 20200923 20200923 20200923 20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20200929 20200929 20200929 20200929 20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201005 20201005 20201005 20201005 20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201011 20201011 20201011 20201011 20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201017 20201017 20201017 20201017 20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201023 20201023 20201023 20201023 20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201029 20201029 20201029 20201029 20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201104 20201104 20201104 20201104 20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201110 20201110 20201110 20201110 20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201116 20201116 20201116 20201116 20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201122 20201122 20201122 20201122 20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201128 20201128 20201128 20201128 20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201204 20201204 20201204 20201204 20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201210 20201210 20201210 20201210 20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201216 20201216 20201216 20201216 20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201222 20201222 20201222 20201222 20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20201228 20201228 20201228 20201228 20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210103 20210103 20210103 20210103 20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210109 20210109 20210109 20210109 20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210115 20210115 20210115 20210115 20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210121 20210121 20210121 20210121 20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210127 20210127 20210127 20210127 20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210202 20210202 20210202 20210202 20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210208 20210208 20210208 20210208 20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210214 20210214 20210214 20210214 20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210220 20210220 20210220 20210220 20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210226 20210226 20210226 20210226 20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210304 20210304 20210304 20210304 20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210310 20210310 20210310 20210310 20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210316 20210316 20210316 20210316 20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210322 20210322 20210322 20210322 20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210328 20210328 20210328 20210328 20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210403 20210403 20210403 20210403 20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210409 20210409 20210409 20210409 20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210415 20210415 20210415 20210415 20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210421 20210421 20210421 20210421 20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210427 20210427 20210427 20210427 20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210503 20210503 20210503 20210503 20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210509 20210509 20210509 20210509 20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210515 20210515 20210515 20210515 20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210521 20210521 20210521 20210521 20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210527 20210527 20210527 20210527 20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210602 20210602 20210602 20210602 20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210608 20210608 20210608 20210608 20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210614 20210614 20210614 20210614 20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210620 20210620 20210620 20210620 20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210626 20210626 20210626 20210626 20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210702 20210702 20210702 20210702 20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210708 20210708 20210708 20210708 20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210714 20210714 20210714 20210714 20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210720 20210720 20210720 20210720 20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210726 20210726 20210726 20210726 20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210801 20210801 20210801 20210801 20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210807 20210807 20210807 20210807 20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210813 20210813 20210813 20210813 20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210819 20210819 20210819 20210819 20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210825 20210825 20210825 20210825 20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210831 20210831 20210831 20210831 20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210906 20210906 20210906 20210906 20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - -20210912 20210912 20210912 20210912 20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes yes yes yes yes processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors to processto processto processto processto processto processto processto processto process - - - - - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - - - - - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - - - - - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(168)LiCSAlert_monitoring_mode() - 166  - 167  ---> 168  def LiCSAlert_aux_figures(displacement_r2_current, sources_tcs_baseline, tbaseline_info): - 169  """ - 170  Plot last cumulative ifg -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(168)LiCSAlert_monitoring_mode() - 166  - 167  ---> 168  def LiCSAlert_aux_figures(displacement_r2_current, sources_tcs_baseline, tbaseline_info): - 169  """ - 170  Plot last cumulative ifg -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(168)LiCSAlert_monitoring_mode() - 166  - 167  ---> 168  def LiCSAlert_aux_figures(displacement_r2_current, sources_tcs_baseline, tbaseline_info): - 169  """ - 170  Plot last cumulative ifg -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(168)LiCSAlert_monitoring_mode() - 166  - 167  ---> 168  def LiCSAlert_aux_figures(displacement_r2_current, sources_tcs_baseline, tbaseline_info): - 169  """ - 170  Plot last cumulative ifg -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(168)LiCSAlert_monitoring_mode() - 166  - 167  ---> 168  def LiCSAlert_aux_figures(displacement_r2_current, sources_tcs_baseline, tbaseline_info): - 169  """ - 170  Plot last cumulative ifg -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(168)LiCSAlert_monitoring_mode() - 166  - 167  ---> 168  def LiCSAlert_aux_figures(displacement_r2_current, sources_tcs_baseline, tbaseline_info): - 169  """ - 170  Plot last cumulative ifg -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(168)LiCSAlert_monitoring_mode() - 166  - 167  ---> 168  def LiCSAlert_aux_figures(displacement_r2_current, sources_tcs_baseline, tbaseline_info): - 169  """ - 170  Plot last cumulative ifg -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(168)LiCSAlert_monitoring_mode() - 166  - 167  ---> 168  def LiCSAlert_aux_figures(displacement_r2_current, sources_tcs_baseline, tbaseline_info): - 169  """ - 170  Plot last cumulative ifg -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(168)LiCSAlert_monitoring_mode() - 166  - 167  ---> 168  def LiCSAlert_aux_figures(displacement_r2_current, sources_tcs_baseline, tbaseline_info): - 169  """ - 170  Plot last cumulative ifg - - - - - - - - - -*************************** AttributeError: 'numpy.ndarray' object has no attribute 'shaoe'AttributeError: 'numpy.ndarray' object has no attribute 'shaoe'AttributeError: 'numpy.ndarray' object has no attribute 'shaoe'AttributeError: 'numpy.ndarray' object has no attribute 'shaoe'AttributeError: 'numpy.ndarray' object has no attribute 'shaoe'AttributeError: 'numpy.ndarray' object has no attribute 'shaoe'AttributeError: 'numpy.ndarray' object has no attribute 'shaoe'AttributeError: 'numpy.ndarray' object has no attribute 'shaoe'AttributeError: 'numpy.ndarray' object has no attribute 'shaoe' - - - - - - - - -*************************** NameError: name 'np' is not definedNameError: name 'np' is not definedNameError: name 'np' is not definedNameError: name 'np' is not definedNameError: name 'np' is not definedNameError: name 'np' is not definedNameError: name 'np' is not definedNameError: name 'np' is not definedNameError: name 'np' is not defined - - - - - - - - -*************************** TypeError: plot_1_image() takes 2 positional arguments but 3 were givenTypeError: plot_1_image() takes 2 positional arguments but 3 were givenTypeError: plot_1_image() takes 2 positional arguments but 3 were givenTypeError: plot_1_image() takes 2 positional arguments but 3 were givenTypeError: plot_1_image() takes 2 positional arguments but 3 were givenTypeError: plot_1_image() takes 2 positional arguments but 3 were givenTypeError: plot_1_image() takes 2 positional arguments but 3 were givenTypeError: plot_1_image() takes 2 positional arguments but 3 were givenTypeError: plot_1_image() takes 2 positional arguments but 3 were given - - - - - - - - -*************************** NameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not defined - - - - - - - - -*************************** NameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not definedNameError: name 'figure_out_dir' is not defined - - - - - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:53:43 - - - - - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - - - - - - -20141031 20141031 20141031 20141031 20141031 20141031 20141031 20141031 20141031 20141031 no no no no no no no no no no - - - - - - - - - -20141218 20141218 20141218 20141218 20141218 20141218 20141218 20141218 20141218 20141218 no no no no no no no no no no - - - - - - - - - -20150111 20150111 20150111 20150111 20150111 20150111 20150111 20150111 20150111 20150111 no no no no no no no no no no - - - - - - - - - -20150123 20150123 20150123 20150123 20150123 20150123 20150123 20150123 20150123 20150123 no no no no no no no no no no - - - - - - - - - -20150216 20150216 20150216 20150216 20150216 20150216 20150216 20150216 20150216 20150216 no no no no no no no no no no - - - - - - - - - -20150228 20150228 20150228 20150228 20150228 20150228 20150228 20150228 20150228 20150228 no no no no no no no no no no - - - - - - - - - -20150312 20150312 20150312 20150312 20150312 20150312 20150312 20150312 20150312 20150312 no no no no no no no no no no - - - - - - - - - -20150324 20150324 20150324 20150324 20150324 20150324 20150324 20150324 20150324 20150324 no no no no no no no no no no - - - - - - - - - -20150405 20150405 20150405 20150405 20150405 20150405 20150405 20150405 20150405 20150405 no no no no no no no no no no - - - - - - - - - -20150429 20150429 20150429 20150429 20150429 20150429 20150429 20150429 20150429 20150429 no no no no no no no no no no - - - - - - - - - -20150511 20150511 20150511 20150511 20150511 20150511 20150511 20150511 20150511 20150511 no no no no no no no no no no - - - - - - - - - -20150523 20150523 20150523 20150523 20150523 20150523 20150523 20150523 20150523 20150523 no no no no no no no no no no - - - - - - - - - -20150604 20150604 20150604 20150604 20150604 20150604 20150604 20150604 20150604 20150604 no no no no no no no no no no - - - - - - - - - -20150710 20150710 20150710 20150710 20150710 20150710 20150710 20150710 20150710 20150710 no no no no no no no no no no - - - - - - - - - -20150722 20150722 20150722 20150722 20150722 20150722 20150722 20150722 20150722 20150722 no no no no no no no no no no - - - - - - - - - -20150815 20150815 20150815 20150815 20150815 20150815 20150815 20150815 20150815 20150815 no no no no no no no no no no - - - - - - - - - -20150920 20150920 20150920 20150920 20150920 20150920 20150920 20150920 20150920 20150920 no no no no no no no no no no - - - - - - - - - -20151002 20151002 20151002 20151002 20151002 20151002 20151002 20151002 20151002 20151002 no no no no no no no no no no - - - - - - - - - -20151014 20151014 20151014 20151014 20151014 20151014 20151014 20151014 20151014 20151014 no no no no no no no no no no - - - - - - - - - -20151107 20151107 20151107 20151107 20151107 20151107 20151107 20151107 20151107 20151107 no no no no no no no no no no - - - - - - - - - -20151119 20151119 20151119 20151119 20151119 20151119 20151119 20151119 20151119 20151119 no no no no no no no no no no - - - - - - - - - -20151201 20151201 20151201 20151201 20151201 20151201 20151201 20151201 20151201 20151201 no no no no no no no no no no - - - - - - - - - -20151213 20151213 20151213 20151213 20151213 20151213 20151213 20151213 20151213 20151213 no no no no no no no no no no - - - - - - - - - -20151225 20151225 20151225 20151225 20151225 20151225 20151225 20151225 20151225 20151225 no no no no no no no no no no - - - - - - - - - -20160106 20160106 20160106 20160106 20160106 20160106 20160106 20160106 20160106 20160106 no no no no no no no no no no - - - - - - - - - -20160118 20160118 20160118 20160118 20160118 20160118 20160118 20160118 20160118 20160118 no no no no no no no no no no - - - - - - - - - -20160211 20160211 20160211 20160211 20160211 20160211 20160211 20160211 20160211 20160211 no no no no no no no no no no - - - - - - - - - -20160223 20160223 20160223 20160223 20160223 20160223 20160223 20160223 20160223 20160223 no no no no no no no no no no - - - - - - - - - -20160306 20160306 20160306 20160306 20160306 20160306 20160306 20160306 20160306 20160306 no no no no no no no no no no - - - - - - - - - -20160318 20160318 20160318 20160318 20160318 20160318 20160318 20160318 20160318 20160318 no no no no no no no no no no - - - - - - - - - -20160330 20160330 20160330 20160330 20160330 20160330 20160330 20160330 20160330 20160330 no no no no no no no no no no - - - - - - - - - -20160411 20160411 20160411 20160411 20160411 20160411 20160411 20160411 20160411 20160411 no no no no no no no no no no - - - - - - - - - -20160505 20160505 20160505 20160505 20160505 20160505 20160505 20160505 20160505 20160505 no no no no no no no no no no - - - - - - - - - -20160517 20160517 20160517 20160517 20160517 20160517 20160517 20160517 20160517 20160517 no no no no no no no no no no - - - - - - - - - -20160529 20160529 20160529 20160529 20160529 20160529 20160529 20160529 20160529 20160529 no no no no no no no no no no - - - - - - - - - -20160610 20160610 20160610 20160610 20160610 20160610 20160610 20160610 20160610 20160610 no no no no no no no no no no - - - - - - - - - -20160704 20160704 20160704 20160704 20160704 20160704 20160704 20160704 20160704 20160704 no no no no no no no no no no - - - - - - - - - -20160716 20160716 20160716 20160716 20160716 20160716 20160716 20160716 20160716 20160716 no no no no no no no no no no - - - - - - - - - -20160728 20160728 20160728 20160728 20160728 20160728 20160728 20160728 20160728 20160728 no no no no no no no no no no - - - - - - - - - -20160809 20160809 20160809 20160809 20160809 20160809 20160809 20160809 20160809 20160809 no no no no no no no no no no - - - - - - - - - -20160821 20160821 20160821 20160821 20160821 20160821 20160821 20160821 20160821 20160821 no no no no no no no no no no - - - - - - - - - -20160902 20160902 20160902 20160902 20160902 20160902 20160902 20160902 20160902 20160902 no no no no no no no no no no - - - - - - - - - -20160914 20160914 20160914 20160914 20160914 20160914 20160914 20160914 20160914 20160914 no no no no no no no no no no - - - - - - - - - -20160926 20160926 20160926 20160926 20160926 20160926 20160926 20160926 20160926 20160926 no no no no no no no no no no - - - - - - - - - -20161002 20161002 20161002 20161002 20161002 20161002 20161002 20161002 20161002 20161002 no no no no no no no no no no - - - - - - - - - -20161008 20161008 20161008 20161008 20161008 20161008 20161008 20161008 20161008 20161008 no no no no no no no no no no - - - - - - - - - -20161014 20161014 20161014 20161014 20161014 20161014 20161014 20161014 20161014 20161014 no no no no no no no no no no - - - - - - - - - -20161020 20161020 20161020 20161020 20161020 20161020 20161020 20161020 20161020 20161020 no no no no no no no no no no - - - - - - - - - -20161026 20161026 20161026 20161026 20161026 20161026 20161026 20161026 20161026 20161026 no no no no no no no no no no - - - - - - - - - -20161101 20161101 20161101 20161101 20161101 20161101 20161101 20161101 20161101 20161101 no no no no no no no no no no - - - - - - - - - -20161107 20161107 20161107 20161107 20161107 20161107 20161107 20161107 20161107 20161107 no no no no no no no no no no - - - - - - - - - -20161113 20161113 20161113 20161113 20161113 20161113 20161113 20161113 20161113 20161113 no no no no no no no no no no - - - - - - - - - -20161119 20161119 20161119 20161119 20161119 20161119 20161119 20161119 20161119 20161119 no no no no no no no no no no - - - - - - - - - -20161201 20161201 20161201 20161201 20161201 20161201 20161201 20161201 20161201 20161201 no no no no no no no no no no - - - - - - - - - -20161207 20161207 20161207 20161207 20161207 20161207 20161207 20161207 20161207 20161207 no no no no no no no no no no - - - - - - - - - -20161213 20161213 20161213 20161213 20161213 20161213 20161213 20161213 20161213 20161213 no no no no no no no no no no - - - - - - - - - -20161219 20161219 20161219 20161219 20161219 20161219 20161219 20161219 20161219 20161219 no no no no no no no no no no - - - - - - - - - -20161225 20161225 20161225 20161225 20161225 20161225 20161225 20161225 20161225 20161225 no no no no no no no no no no - - - - - - - - - -20161231 20161231 20161231 20161231 20161231 20161231 20161231 20161231 20161231 20161231 no no no no no no no no no no - - - - - - - - - -20170112 20170112 20170112 20170112 20170112 20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170118 20170118 20170118 20170118 20170118 20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170124 20170124 20170124 20170124 20170124 20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170130 20170130 20170130 20170130 20170130 20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170205 20170205 20170205 20170205 20170205 20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170211 20170211 20170211 20170211 20170211 20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170223 20170223 20170223 20170223 20170223 20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170301 20170301 20170301 20170301 20170301 20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170307 20170307 20170307 20170307 20170307 20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170313 20170313 20170313 20170313 20170313 20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170319 20170319 20170319 20170319 20170319 20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170325 20170325 20170325 20170325 20170325 20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170331 20170331 20170331 20170331 20170331 20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170406 20170406 20170406 20170406 20170406 20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170412 20170412 20170412 20170412 20170412 20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170418 20170418 20170418 20170418 20170418 20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170424 20170424 20170424 20170424 20170424 20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170430 20170430 20170430 20170430 20170430 20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170506 20170506 20170506 20170506 20170506 20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170512 20170512 20170512 20170512 20170512 20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170518 20170518 20170518 20170518 20170518 20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170524 20170524 20170524 20170524 20170524 20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170530 20170530 20170530 20170530 20170530 20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170605 20170605 20170605 20170605 20170605 20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170611 20170611 20170611 20170611 20170611 20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170617 20170617 20170617 20170617 20170617 20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170623 20170623 20170623 20170623 20170623 20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170629 20170629 20170629 20170629 20170629 20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170705 20170705 20170705 20170705 20170705 20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170711 20170711 20170711 20170711 20170711 20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170717 20170717 20170717 20170717 20170717 20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170723 20170723 20170723 20170723 20170723 20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170729 20170729 20170729 20170729 20170729 20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170804 20170804 20170804 20170804 20170804 20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170816 20170816 20170816 20170816 20170816 20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170822 20170822 20170822 20170822 20170822 20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170828 20170828 20170828 20170828 20170828 20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170903 20170903 20170903 20170903 20170903 20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170909 20170909 20170909 20170909 20170909 20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170915 20170915 20170915 20170915 20170915 20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170921 20170921 20170921 20170921 20170921 20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20170927 20170927 20170927 20170927 20170927 20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171009 20171009 20171009 20171009 20171009 20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171015 20171015 20171015 20171015 20171015 20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171021 20171021 20171021 20171021 20171021 20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171027 20171027 20171027 20171027 20171027 20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171102 20171102 20171102 20171102 20171102 20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171108 20171108 20171108 20171108 20171108 20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171114 20171114 20171114 20171114 20171114 20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171120 20171120 20171120 20171120 20171120 20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171202 20171202 20171202 20171202 20171202 20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171208 20171208 20171208 20171208 20171208 20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171214 20171214 20171214 20171214 20171214 20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20171226 20171226 20171226 20171226 20171226 20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180101 20180101 20180101 20180101 20180101 20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180107 20180107 20180107 20180107 20180107 20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180113 20180113 20180113 20180113 20180113 20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180119 20180119 20180119 20180119 20180119 20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180125 20180125 20180125 20180125 20180125 20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180131 20180131 20180131 20180131 20180131 20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180206 20180206 20180206 20180206 20180206 20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180218 20180218 20180218 20180218 20180218 20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180224 20180224 20180224 20180224 20180224 20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180302 20180302 20180302 20180302 20180302 20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180308 20180308 20180308 20180308 20180308 20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180314 20180314 20180314 20180314 20180314 20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180320 20180320 20180320 20180320 20180320 20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180326 20180326 20180326 20180326 20180326 20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180401 20180401 20180401 20180401 20180401 20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180407 20180407 20180407 20180407 20180407 20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180413 20180413 20180413 20180413 20180413 20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180419 20180419 20180419 20180419 20180419 20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180425 20180425 20180425 20180425 20180425 20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180501 20180501 20180501 20180501 20180501 20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180507 20180507 20180507 20180507 20180507 20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180513 20180513 20180513 20180513 20180513 20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180519 20180519 20180519 20180519 20180519 20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180525 20180525 20180525 20180525 20180525 20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180531 20180531 20180531 20180531 20180531 20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180606 20180606 20180606 20180606 20180606 20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180612 20180612 20180612 20180612 20180612 20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180618 20180618 20180618 20180618 20180618 20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180630 20180630 20180630 20180630 20180630 20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180712 20180712 20180712 20180712 20180712 20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180718 20180718 20180718 20180718 20180718 20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180724 20180724 20180724 20180724 20180724 20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180730 20180730 20180730 20180730 20180730 20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180805 20180805 20180805 20180805 20180805 20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180811 20180811 20180811 20180811 20180811 20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180817 20180817 20180817 20180817 20180817 20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180823 20180823 20180823 20180823 20180823 20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180829 20180829 20180829 20180829 20180829 20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180904 20180904 20180904 20180904 20180904 20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180910 20180910 20180910 20180910 20180910 20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180916 20180916 20180916 20180916 20180916 20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180922 20180922 20180922 20180922 20180922 20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20180928 20180928 20180928 20180928 20180928 20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181004 20181004 20181004 20181004 20181004 20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181010 20181010 20181010 20181010 20181010 20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181016 20181016 20181016 20181016 20181016 20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181022 20181022 20181022 20181022 20181022 20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181028 20181028 20181028 20181028 20181028 20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181109 20181109 20181109 20181109 20181109 20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181115 20181115 20181115 20181115 20181115 20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181121 20181121 20181121 20181121 20181121 20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181127 20181127 20181127 20181127 20181127 20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181203 20181203 20181203 20181203 20181203 20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181209 20181209 20181209 20181209 20181209 20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181215 20181215 20181215 20181215 20181215 20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181221 20181221 20181221 20181221 20181221 20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20181227 20181227 20181227 20181227 20181227 20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190102 20190102 20190102 20190102 20190102 20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190108 20190108 20190108 20190108 20190108 20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190114 20190114 20190114 20190114 20190114 20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190120 20190120 20190120 20190120 20190120 20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190126 20190126 20190126 20190126 20190126 20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190201 20190201 20190201 20190201 20190201 20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190207 20190207 20190207 20190207 20190207 20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190213 20190213 20190213 20190213 20190213 20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190225 20190225 20190225 20190225 20190225 20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190303 20190303 20190303 20190303 20190303 20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190309 20190309 20190309 20190309 20190309 20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190321 20190321 20190321 20190321 20190321 20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190402 20190402 20190402 20190402 20190402 20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190408 20190408 20190408 20190408 20190408 20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190414 20190414 20190414 20190414 20190414 20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190420 20190420 20190420 20190420 20190420 20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190426 20190426 20190426 20190426 20190426 20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190502 20190502 20190502 20190502 20190502 20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190508 20190508 20190508 20190508 20190508 20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190520 20190520 20190520 20190520 20190520 20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190526 20190526 20190526 20190526 20190526 20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190601 20190601 20190601 20190601 20190601 20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190607 20190607 20190607 20190607 20190607 20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190613 20190613 20190613 20190613 20190613 20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190625 20190625 20190625 20190625 20190625 20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190701 20190701 20190701 20190701 20190701 20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190707 20190707 20190707 20190707 20190707 20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190713 20190713 20190713 20190713 20190713 20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190719 20190719 20190719 20190719 20190719 20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190725 20190725 20190725 20190725 20190725 20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190731 20190731 20190731 20190731 20190731 20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190806 20190806 20190806 20190806 20190806 20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190812 20190812 20190812 20190812 20190812 20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190818 20190818 20190818 20190818 20190818 20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190824 20190824 20190824 20190824 20190824 20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190830 20190830 20190830 20190830 20190830 20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190905 20190905 20190905 20190905 20190905 20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190911 20190911 20190911 20190911 20190911 20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190917 20190917 20190917 20190917 20190917 20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20190923 20190923 20190923 20190923 20190923 20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191005 20191005 20191005 20191005 20191005 20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191011 20191011 20191011 20191011 20191011 20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191017 20191017 20191017 20191017 20191017 20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191023 20191023 20191023 20191023 20191023 20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191029 20191029 20191029 20191029 20191029 20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191104 20191104 20191104 20191104 20191104 20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191116 20191116 20191116 20191116 20191116 20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191122 20191122 20191122 20191122 20191122 20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191128 20191128 20191128 20191128 20191128 20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191204 20191204 20191204 20191204 20191204 20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191210 20191210 20191210 20191210 20191210 20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191216 20191216 20191216 20191216 20191216 20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191222 20191222 20191222 20191222 20191222 20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20191228 20191228 20191228 20191228 20191228 20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200103 20200103 20200103 20200103 20200103 20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200109 20200109 20200109 20200109 20200109 20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200115 20200115 20200115 20200115 20200115 20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200121 20200121 20200121 20200121 20200121 20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200127 20200127 20200127 20200127 20200127 20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200202 20200202 20200202 20200202 20200202 20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200208 20200208 20200208 20200208 20200208 20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200214 20200214 20200214 20200214 20200214 20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200220 20200220 20200220 20200220 20200220 20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200226 20200226 20200226 20200226 20200226 20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200303 20200303 20200303 20200303 20200303 20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200309 20200309 20200309 20200309 20200309 20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200315 20200315 20200315 20200315 20200315 20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200321 20200321 20200321 20200321 20200321 20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200402 20200402 20200402 20200402 20200402 20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200408 20200408 20200408 20200408 20200408 20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200414 20200414 20200414 20200414 20200414 20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200420 20200420 20200420 20200420 20200420 20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200426 20200426 20200426 20200426 20200426 20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200502 20200502 20200502 20200502 20200502 20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200508 20200508 20200508 20200508 20200508 20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200514 20200514 20200514 20200514 20200514 20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200520 20200520 20200520 20200520 20200520 20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200526 20200526 20200526 20200526 20200526 20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200601 20200601 20200601 20200601 20200601 20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200607 20200607 20200607 20200607 20200607 20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200613 20200613 20200613 20200613 20200613 20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200619 20200619 20200619 20200619 20200619 20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200625 20200625 20200625 20200625 20200625 20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200701 20200701 20200701 20200701 20200701 20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200707 20200707 20200707 20200707 20200707 20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200713 20200713 20200713 20200713 20200713 20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200719 20200719 20200719 20200719 20200719 20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200725 20200725 20200725 20200725 20200725 20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200731 20200731 20200731 20200731 20200731 20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200806 20200806 20200806 20200806 20200806 20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200812 20200812 20200812 20200812 20200812 20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200818 20200818 20200818 20200818 20200818 20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200824 20200824 20200824 20200824 20200824 20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200830 20200830 20200830 20200830 20200830 20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200905 20200905 20200905 20200905 20200905 20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200911 20200911 20200911 20200911 20200911 20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200917 20200917 20200917 20200917 20200917 20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200923 20200923 20200923 20200923 20200923 20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20200929 20200929 20200929 20200929 20200929 20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201005 20201005 20201005 20201005 20201005 20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201011 20201011 20201011 20201011 20201011 20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201017 20201017 20201017 20201017 20201017 20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201023 20201023 20201023 20201023 20201023 20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201029 20201029 20201029 20201029 20201029 20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201104 20201104 20201104 20201104 20201104 20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201110 20201110 20201110 20201110 20201110 20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201116 20201116 20201116 20201116 20201116 20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201122 20201122 20201122 20201122 20201122 20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201128 20201128 20201128 20201128 20201128 20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201204 20201204 20201204 20201204 20201204 20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201210 20201210 20201210 20201210 20201210 20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201216 20201216 20201216 20201216 20201216 20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201222 20201222 20201222 20201222 20201222 20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20201228 20201228 20201228 20201228 20201228 20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210103 20210103 20210103 20210103 20210103 20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210109 20210109 20210109 20210109 20210109 20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210115 20210115 20210115 20210115 20210115 20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210121 20210121 20210121 20210121 20210121 20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210127 20210127 20210127 20210127 20210127 20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210202 20210202 20210202 20210202 20210202 20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210208 20210208 20210208 20210208 20210208 20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210214 20210214 20210214 20210214 20210214 20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210220 20210220 20210220 20210220 20210220 20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210226 20210226 20210226 20210226 20210226 20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210304 20210304 20210304 20210304 20210304 20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210310 20210310 20210310 20210310 20210310 20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210316 20210316 20210316 20210316 20210316 20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210322 20210322 20210322 20210322 20210322 20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210328 20210328 20210328 20210328 20210328 20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210403 20210403 20210403 20210403 20210403 20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210409 20210409 20210409 20210409 20210409 20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210415 20210415 20210415 20210415 20210415 20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210421 20210421 20210421 20210421 20210421 20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210427 20210427 20210427 20210427 20210427 20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210503 20210503 20210503 20210503 20210503 20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210509 20210509 20210509 20210509 20210509 20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210515 20210515 20210515 20210515 20210515 20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210521 20210521 20210521 20210521 20210521 20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210527 20210527 20210527 20210527 20210527 20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210602 20210602 20210602 20210602 20210602 20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210608 20210608 20210608 20210608 20210608 20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210614 20210614 20210614 20210614 20210614 20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210620 20210620 20210620 20210620 20210620 20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210626 20210626 20210626 20210626 20210626 20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210702 20210702 20210702 20210702 20210702 20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210708 20210708 20210708 20210708 20210708 20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210714 20210714 20210714 20210714 20210714 20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210720 20210720 20210720 20210720 20210720 20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210726 20210726 20210726 20210726 20210726 20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210801 20210801 20210801 20210801 20210801 20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210807 20210807 20210807 20210807 20210807 20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210813 20210813 20210813 20210813 20210813 20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210819 20210819 20210819 20210819 20210819 20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210825 20210825 20210825 20210825 20210825 20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210831 20210831 20210831 20210831 20210831 20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210906 20210906 20210906 20210906 20210906 20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed not processed not processed not processed - - - - - - - - - -20210912 20210912 20210912 20210912 20210912 20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes yes yes yes yes yes processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors to processto processto processto processto processto processto processto processto processto process - - - - - - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - - - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - - - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - - - - - - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - - - - - - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(188)plot_1_image() - 186  pdb.set_trace() - 187  ---> 188  if (figure_type == 'png') or (figure_type == 'both'): - 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - - - - - - - - - - -****************************** NameError: name 'figur_type' is not definedNameError: name 'figur_type' is not definedNameError: name 'figur_type' is not definedNameError: name 'figur_type' is not definedNameError: name 'figur_type' is not definedNameError: name 'figur_type' is not definedNameError: name 'figur_type' is not definedNameError: name 'figur_type' is not definedNameError: name 'figur_type' is not definedNameError: name 'figur_type' is not defined - - - - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly - - - - - - - - - - ---Return----Return----Return----Return----Return----Return----Return----Return----Return----Return-- - - - - - - - - - -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly -None -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(189)plot_1_image() - 187  - 188  if (figure_type == 'png') or (figure_type == 'both'): ---> 189  f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') - 190  - 191  # 0 Check matplotlib backend is set correctly - - - - - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(199)LiCSAlert_aux_figures() - 197  - 198  # 1: do the plots ---> 199  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 200  figure_type, figure_out_dir) - 201  # plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental") - - - - - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(208)LiCSAlert_monitoring_mode() - 206  plt.switch_backend('Qt5Agg') # - 207  ---> 208  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 209  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 210  - - - - - - - - - - ---KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C--KeyboardInterrupt-- -For copying text while debugging, use Ctrl+Shift+C - - - - - - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 15:56:20 -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. -LiCSAlert_preprocessing: mean centering the interferograms before downsampling -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. -LiCSBAS date Past baseline LiCSAlert To process -20141031 no -20141218 no -20150111 no -20150123 no -20150216 no -20150228 no -20150312 no -20150324 no -20150405 no -20150429 no -20150511 no -20150523 no -20150604 no -20150710 no -20150722 no -20150815 no -20150920 no -20151002 no -20151014 no -20151107 no -20151119 no -20151201 no -20151213 no -20151225 no -20160106 no -20160118 no -20160211 no -20160223 no -20160306 no -20160318 no -20160330 no -20160411 no -20160505 no -20160517 no -20160529 no -20160610 no -20160704 no -20160716 no -20160728 no -20160809 no -20160821 no -20160902 no -20160914 no -20160926 no -20161002 no -20161008 no -20161014 no -20161020 no -20161026 no -20161101 no -20161107 no -20161113 no -20161119 no -20161201 no -20161207 no -20161213 no -20161219 no -20161225 no -20161231 no -20170112 yes not processed -20170118 yes not processed -20170124 yes not processed -20170130 yes not processed -20170205 yes not processed -20170211 yes not processed -20170223 yes not processed -20170301 yes not processed -20170307 yes not processed -20170313 yes not processed -20170319 yes not processed -20170325 yes not processed -20170331 yes not processed -20170406 yes not processed -20170412 yes not processed -20170418 yes not processed -20170424 yes not processed -20170430 yes not processed -20170506 yes not processed -20170512 yes not processed -20170518 yes not processed -20170524 yes not processed -20170530 yes not processed -20170605 yes not processed -20170611 yes not processed -20170617 yes not processed -20170623 yes not processed -20170629 yes not processed -20170705 yes not processed -20170711 yes not processed -20170717 yes not processed -20170723 yes not processed -20170729 yes not processed -20170804 yes not processed -20170816 yes not processed -20170822 yes not processed -20170828 yes not processed -20170903 yes not processed -20170909 yes not processed -20170915 yes not processed -20170921 yes not processed -20170927 yes not processed -20171009 yes not processed -20171015 yes not processed -20171021 yes not processed -20171027 yes not processed -20171102 yes not processed -20171108 yes not processed -20171114 yes not processed -20171120 yes not processed -20171202 yes not processed -20171208 yes not processed -20171214 yes not processed -20171226 yes not processed -20180101 yes not processed -20180107 yes not processed -20180113 yes not processed -20180119 yes not processed -20180125 yes not processed -20180131 yes not processed -20180206 yes not processed -20180218 yes not processed -20180224 yes not processed -20180302 yes not processed -20180308 yes not processed -20180314 yes not processed -20180320 yes not processed -20180326 yes not processed -20180401 yes not processed -20180407 yes not processed -20180413 yes not processed -20180419 yes not processed -20180425 yes not processed -20180501 yes not processed -20180507 yes not processed -20180513 yes not processed -20180519 yes not processed -20180525 yes not processed -20180531 yes not processed -20180606 yes not processed -20180612 yes not processed -20180618 yes not processed -20180630 yes not processed -20180712 yes not processed -20180718 yes not processed -20180724 yes not processed -20180730 yes not processed -20180805 yes not processed -20180811 yes not processed -20180817 yes not processed -20180823 yes not processed -20180829 yes not processed -20180904 yes not processed -20180910 yes not processed -20180916 yes not processed -20180922 yes not processed -20180928 yes not processed -20181004 yes not processed -20181010 yes not processed -20181016 yes not processed -20181022 yes not processed -20181028 yes not processed -20181109 yes not processed -20181115 yes not processed -20181121 yes not processed -20181127 yes not processed -20181203 yes not processed -20181209 yes not processed -20181215 yes not processed -20181221 yes not processed -20181227 yes not processed -20190102 yes not processed -20190108 yes not processed -20190114 yes not processed -20190120 yes not processed -20190126 yes not processed -20190201 yes not processed -20190207 yes not processed -20190213 yes not processed -20190225 yes not processed -20190303 yes not processed -20190309 yes not processed -20190321 yes not processed -20190402 yes not processed -20190408 yes not processed -20190414 yes not processed -20190420 yes not processed -20190426 yes not processed -20190502 yes not processed -20190508 yes not processed -20190520 yes not processed -20190526 yes not processed -20190601 yes not processed -20190607 yes not processed -20190613 yes not processed -20190625 yes not processed -20190701 yes not processed -20190707 yes not processed -20190713 yes not processed -20190719 yes not processed -20190725 yes not processed -20190731 yes not processed -20190806 yes not processed -20190812 yes not processed -20190818 yes not processed -20190824 yes not processed -20190830 yes not processed -20190905 yes not processed -20190911 yes not processed -20190917 yes not processed -20190923 yes not processed -20191005 yes not processed -20191011 yes not processed -20191017 yes not processed -20191023 yes not processed -20191029 yes not processed -20191104 yes not processed -20191116 yes not processed -20191122 yes not processed -20191128 yes not processed -20191204 yes not processed -20191210 yes not processed -20191216 yes not processed -20191222 yes not processed -20191228 yes not processed -20200103 yes not processed -20200109 yes not processed -20200115 yes not processed -20200121 yes not processed -20200127 yes not processed -20200202 yes not processed -20200208 yes not processed -20200214 yes not processed -20200220 yes not processed -20200226 yes not processed -20200303 yes not processed -20200309 yes not processed -20200315 yes not processed -20200321 yes not processed -20200402 yes not processed -20200408 yes not processed -20200414 yes not processed -20200420 yes not processed -20200426 yes not processed -20200502 yes not processed -20200508 yes not processed -20200514 yes not processed -20200520 yes not processed -20200526 yes not processed -20200601 yes not processed -20200607 yes not processed -20200613 yes not processed -20200619 yes not processed -20200625 yes not processed -20200701 yes not processed -20200707 yes not processed -20200713 yes not processed -20200719 yes not processed -20200725 yes not processed -20200731 yes not processed -20200806 yes not processed -20200812 yes not processed -20200818 yes not processed -20200824 yes not processed -20200830 yes not processed -20200905 yes not processed -20200911 yes not processed -20200917 yes not processed -20200923 yes not processed -20200929 yes not processed -20201005 yes not processed -20201011 yes not processed -20201017 yes not processed -20201023 yes not processed -20201029 yes not processed -20201104 yes not processed -20201110 yes not processed -20201116 yes not processed -20201122 yes not processed -20201128 yes not processed -20201204 yes not processed -20201210 yes not processed -20201216 yes not processed -20201222 yes not processed -20201228 yes not processed -20210103 yes not processed -20210109 yes not processed -20210115 yes not processed -20210121 yes not processed -20210127 yes not processed -20210202 yes not processed -20210208 yes not processed -20210214 yes not processed -20210220 yes not processed -20210226 yes not processed -20210304 yes not processed -20210310 yes not processed -20210316 yes not processed -20210322 yes not processed -20210328 yes not processed -20210403 yes not processed -20210409 yes not processed -20210415 yes not processed -20210421 yes not processed -20210427 yes not processed -20210503 yes not processed -20210509 yes not processed -20210515 yes not processed -20210521 yes not processed -20210527 yes not processed -20210602 yes not processed -20210608 yes not processed -20210614 yes not processed -20210620 yes not processed -20210626 yes not processed -20210702 yes not processed -20210708 yes not processed -20210714 yes not processed -20210720 yes not processed -20210726 yes not processed -20210801 yes not processed -20210807 yes not processed -20210813 yes not processed -20210819 yes not processed -20210825 yes not processed -20210831 yes not processed -20210906 yes not processed -20210912 yes processed with errors to process -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. -Running LiCSAlert for 20210912 -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(211)LiCSAlert_monitoring_mode() - 209  - 210  pdb.set_trace() ---> 211  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 212  figure_type = 'both', figure_out_dir = volcano_dir / processing_date) - 213  - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:01:45 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:01:45 - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - -20141031 20141031 no no - -20141218 20141218 no no - -20150111 20150111 no no - -20150123 20150123 no no - -20150216 20150216 no no - -20150228 20150228 no no - -20150312 20150312 no no - -20150324 20150324 no no - -20150405 20150405 no no - -20150429 20150429 no no - -20150511 20150511 no no - -20150523 20150523 no no - -20150604 20150604 no no - -20150710 20150710 no no - -20150722 20150722 no no - -20150815 20150815 no no - -20150920 20150920 no no - -20151002 20151002 no no - -20151014 20151014 no no - -20151107 20151107 no no - -20151119 20151119 no no - -20151201 20151201 no no - -20151213 20151213 no no - -20151225 20151225 no no - -20160106 20160106 no no - -20160118 20160118 no no - -20160211 20160211 no no - -20160223 20160223 no no - -20160306 20160306 no no - -20160318 20160318 no no - -20160330 20160330 no no - -20160411 20160411 no no - -20160505 20160505 no no - -20160517 20160517 no no - -20160529 20160529 no no - -20160610 20160610 no no - -20160704 20160704 no no - -20160716 20160716 no no - -20160728 20160728 no no - -20160809 20160809 no no - -20160821 20160821 no no - -20160902 20160902 no no - -20160914 20160914 no no - -20160926 20160926 no no - -20161002 20161002 no no - -20161008 20161008 no no - -20161014 20161014 no no - -20161020 20161020 no no - -20161026 20161026 no no - -20161101 20161101 no no - -20161107 20161107 no no - -20161113 20161113 no no - -20161119 20161119 no no - -20161201 20161201 no no - -20161207 20161207 no no - -20161213 20161213 no no - -20161219 20161219 no no - -20161225 20161225 no no - -20161231 20161231 no no - -20170112 20170112 yes yes not processed not processed - -20170118 20170118 yes yes not processed not processed - -20170124 20170124 yes yes not processed not processed - -20170130 20170130 yes yes not processed not processed - -20170205 20170205 yes yes not processed not processed - -20170211 20170211 yes yes not processed not processed - -20170223 20170223 yes yes not processed not processed - -20170301 20170301 yes yes not processed not processed - -20170307 20170307 yes yes not processed not processed - -20170313 20170313 yes yes not processed not processed - -20170319 20170319 yes yes not processed not processed - -20170325 20170325 yes yes not processed not processed - -20170331 20170331 yes yes not processed not processed - -20170406 20170406 yes yes not processed not processed - -20170412 20170412 yes yes not processed not processed - -20170418 20170418 yes yes not processed not processed - -20170424 20170424 yes yes not processed not processed - -20170430 20170430 yes yes not processed not processed - -20170506 20170506 yes yes not processed not processed - -20170512 20170512 yes yes not processed not processed - -20170518 20170518 yes yes not processed not processed - -20170524 20170524 yes yes not processed not processed - -20170530 20170530 yes yes not processed not processed - -20170605 20170605 yes yes not processed not processed - -20170611 20170611 yes yes not processed not processed - -20170617 20170617 yes yes not processed not processed - -20170623 20170623 yes yes not processed not processed - -20170629 20170629 yes yes not processed not processed - -20170705 20170705 yes yes not processed not processed - -20170711 20170711 yes yes not processed not processed - -20170717 20170717 yes yes not processed not processed - -20170723 20170723 yes yes not processed not processed - -20170729 20170729 yes yes not processed not processed - -20170804 20170804 yes yes not processed not processed - -20170816 20170816 yes yes not processed not processed - -20170822 20170822 yes yes not processed not processed - -20170828 20170828 yes yes not processed not processed - -20170903 20170903 yes yes not processed not processed - -20170909 20170909 yes yes not processed not processed - -20170915 20170915 yes yes not processed not processed - -20170921 20170921 yes yes not processed not processed - -20170927 20170927 yes yes not processed not processed - -20171009 20171009 yes yes not processed not processed - -20171015 20171015 yes yes not processed not processed - -20171021 20171021 yes yes not processed not processed - -20171027 20171027 yes yes not processed not processed - -20171102 20171102 yes yes not processed not processed - -20171108 20171108 yes yes not processed not processed - -20171114 20171114 yes yes not processed not processed - -20171120 20171120 yes yes not processed not processed - -20171202 20171202 yes yes not processed not processed - -20171208 20171208 yes yes not processed not processed - -20171214 20171214 yes yes not processed not processed - -20171226 20171226 yes yes not processed not processed - -20180101 20180101 yes yes not processed not processed - -20180107 20180107 yes yes not processed not processed - -20180113 20180113 yes yes not processed not processed - -20180119 20180119 yes yes not processed not processed - -20180125 20180125 yes yes not processed not processed - -20180131 20180131 yes yes not processed not processed - -20180206 20180206 yes yes not processed not processed - -20180218 20180218 yes yes not processed not processed - -20180224 20180224 yes yes not processed not processed - -20180302 20180302 yes yes not processed not processed - -20180308 20180308 yes yes not processed not processed - -20180314 20180314 yes yes not processed not processed - -20180320 20180320 yes yes not processed not processed - -20180326 20180326 yes yes not processed not processed - -20180401 20180401 yes yes not processed not processed - -20180407 20180407 yes yes not processed not processed - -20180413 20180413 yes yes not processed not processed - -20180419 20180419 yes yes not processed not processed - -20180425 20180425 yes yes not processed not processed - -20180501 20180501 yes yes not processed not processed - -20180507 20180507 yes yes not processed not processed - -20180513 20180513 yes yes not processed not processed - -20180519 20180519 yes yes not processed not processed - -20180525 20180525 yes yes not processed not processed - -20180531 20180531 yes yes not processed not processed - -20180606 20180606 yes yes not processed not processed - -20180612 20180612 yes yes not processed not processed - -20180618 20180618 yes yes not processed not processed - -20180630 20180630 yes yes not processed not processed - -20180712 20180712 yes yes not processed not processed - -20180718 20180718 yes yes not processed not processed - -20180724 20180724 yes yes not processed not processed - -20180730 20180730 yes yes not processed not processed - -20180805 20180805 yes yes not processed not processed - -20180811 20180811 yes yes not processed not processed - -20180817 20180817 yes yes not processed not processed - -20180823 20180823 yes yes not processed not processed - -20180829 20180829 yes yes not processed not processed - -20180904 20180904 yes yes not processed not processed - -20180910 20180910 yes yes not processed not processed - -20180916 20180916 yes yes not processed not processed - -20180922 20180922 yes yes not processed not processed - -20180928 20180928 yes yes not processed not processed - -20181004 20181004 yes yes not processed not processed - -20181010 20181010 yes yes not processed not processed - -20181016 20181016 yes yes not processed not processed - -20181022 20181022 yes yes not processed not processed - -20181028 20181028 yes yes not processed not processed - -20181109 20181109 yes yes not processed not processed - -20181115 20181115 yes yes not processed not processed - -20181121 20181121 yes yes not processed not processed - -20181127 20181127 yes yes not processed not processed - -20181203 20181203 yes yes not processed not processed - -20181209 20181209 yes yes not processed not processed - -20181215 20181215 yes yes not processed not processed - -20181221 20181221 yes yes not processed not processed - -20181227 20181227 yes yes not processed not processed - -20190102 20190102 yes yes not processed not processed - -20190108 20190108 yes yes not processed not processed - -20190114 20190114 yes yes not processed not processed - -20190120 20190120 yes yes not processed not processed - -20190126 20190126 yes yes not processed not processed - -20190201 20190201 yes yes not processed not processed - -20190207 20190207 yes yes not processed not processed - -20190213 20190213 yes yes not processed not processed - -20190225 20190225 yes yes not processed not processed - -20190303 20190303 yes yes not processed not processed - -20190309 20190309 yes yes not processed not processed - -20190321 20190321 yes yes not processed not processed - -20190402 20190402 yes yes not processed not processed - -20190408 20190408 yes yes not processed not processed - -20190414 20190414 yes yes not processed not processed - -20190420 20190420 yes yes not processed not processed - -20190426 20190426 yes yes not processed not processed - -20190502 20190502 yes yes not processed not processed - -20190508 20190508 yes yes not processed not processed - -20190520 20190520 yes yes not processed not processed - -20190526 20190526 yes yes not processed not processed - -20190601 20190601 yes yes not processed not processed - -20190607 20190607 yes yes not processed not processed - -20190613 20190613 yes yes not processed not processed - -20190625 20190625 yes yes not processed not processed - -20190701 20190701 yes yes not processed not processed - -20190707 20190707 yes yes not processed not processed - -20190713 20190713 yes yes not processed not processed - -20190719 20190719 yes yes not processed not processed - -20190725 20190725 yes yes not processed not processed - -20190731 20190731 yes yes not processed not processed - -20190806 20190806 yes yes not processed not processed - -20190812 20190812 yes yes not processed not processed - -20190818 20190818 yes yes not processed not processed - -20190824 20190824 yes yes not processed not processed - -20190830 20190830 yes yes not processed not processed - -20190905 20190905 yes yes not processed not processed - -20190911 20190911 yes yes not processed not processed - -20190917 20190917 yes yes not processed not processed - -20190923 20190923 yes yes not processed not processed - -20191005 20191005 yes yes not processed not processed - -20191011 20191011 yes yes not processed not processed - -20191017 20191017 yes yes not processed not processed - -20191023 20191023 yes yes not processed not processed - -20191029 20191029 yes yes not processed not processed - -20191104 20191104 yes yes not processed not processed - -20191116 20191116 yes yes not processed not processed - -20191122 20191122 yes yes not processed not processed - -20191128 20191128 yes yes not processed not processed - -20191204 20191204 yes yes not processed not processed - -20191210 20191210 yes yes not processed not processed - -20191216 20191216 yes yes not processed not processed - -20191222 20191222 yes yes not processed not processed - -20191228 20191228 yes yes not processed not processed - -20200103 20200103 yes yes not processed not processed - -20200109 20200109 yes yes not processed not processed - -20200115 20200115 yes yes not processed not processed - -20200121 20200121 yes yes not processed not processed - -20200127 20200127 yes yes not processed not processed - -20200202 20200202 yes yes not processed not processed - -20200208 20200208 yes yes not processed not processed - -20200214 20200214 yes yes not processed not processed - -20200220 20200220 yes yes not processed not processed - -20200226 20200226 yes yes not processed not processed - -20200303 20200303 yes yes not processed not processed - -20200309 20200309 yes yes not processed not processed - -20200315 20200315 yes yes not processed not processed - -20200321 20200321 yes yes not processed not processed - -20200402 20200402 yes yes not processed not processed - -20200408 20200408 yes yes not processed not processed - -20200414 20200414 yes yes not processed not processed - -20200420 20200420 yes yes not processed not processed - -20200426 20200426 yes yes not processed not processed - -20200502 20200502 yes yes not processed not processed - -20200508 20200508 yes yes not processed not processed - -20200514 20200514 yes yes not processed not processed - -20200520 20200520 yes yes not processed not processed - -20200526 20200526 yes yes not processed not processed - -20200601 20200601 yes yes not processed not processed - -20200607 20200607 yes yes not processed not processed - -20200613 20200613 yes yes not processed not processed - -20200619 20200619 yes yes not processed not processed - -20200625 20200625 yes yes not processed not processed - -20200701 20200701 yes yes not processed not processed - -20200707 20200707 yes yes not processed not processed - -20200713 20200713 yes yes not processed not processed - -20200719 20200719 yes yes not processed not processed - -20200725 20200725 yes yes not processed not processed - -20200731 20200731 yes yes not processed not processed - -20200806 20200806 yes yes not processed not processed - -20200812 20200812 yes yes not processed not processed - -20200818 20200818 yes yes not processed not processed - -20200824 20200824 yes yes not processed not processed - -20200830 20200830 yes yes not processed not processed - -20200905 20200905 yes yes not processed not processed - -20200911 20200911 yes yes not processed not processed - -20200917 20200917 yes yes not processed not processed - -20200923 20200923 yes yes not processed not processed - -20200929 20200929 yes yes not processed not processed - -20201005 20201005 yes yes not processed not processed - -20201011 20201011 yes yes not processed not processed - -20201017 20201017 yes yes not processed not processed - -20201023 20201023 yes yes not processed not processed - -20201029 20201029 yes yes not processed not processed - -20201104 20201104 yes yes not processed not processed - -20201110 20201110 yes yes not processed not processed - -20201116 20201116 yes yes not processed not processed - -20201122 20201122 yes yes not processed not processed - -20201128 20201128 yes yes not processed not processed - -20201204 20201204 yes yes not processed not processed - -20201210 20201210 yes yes not processed not processed - -20201216 20201216 yes yes not processed not processed - -20201222 20201222 yes yes not processed not processed - -20201228 20201228 yes yes not processed not processed - -20210103 20210103 yes yes not processed not processed - -20210109 20210109 yes yes not processed not processed - -20210115 20210115 yes yes not processed not processed - -20210121 20210121 yes yes not processed not processed - -20210127 20210127 yes yes not processed not processed - -20210202 20210202 yes yes not processed not processed - -20210208 20210208 yes yes not processed not processed - -20210214 20210214 yes yes not processed not processed - -20210220 20210220 yes yes not processed not processed - -20210226 20210226 yes yes not processed not processed - -20210304 20210304 yes yes not processed not processed - -20210310 20210310 yes yes not processed not processed - -20210316 20210316 yes yes not processed not processed - -20210322 20210322 yes yes not processed not processed - -20210328 20210328 yes yes not processed not processed - -20210403 20210403 yes yes not processed not processed - -20210409 20210409 yes yes not processed not processed - -20210415 20210415 yes yes not processed not processed - -20210421 20210421 yes yes not processed not processed - -20210427 20210427 yes yes not processed not processed - -20210503 20210503 yes yes not processed not processed - -20210509 20210509 yes yes not processed not processed - -20210515 20210515 yes yes not processed not processed - -20210521 20210521 yes yes not processed not processed - -20210527 20210527 yes yes not processed not processed - -20210602 20210602 yes yes not processed not processed - -20210608 20210608 yes yes not processed not processed - -20210614 20210614 yes yes not processed not processed - -20210620 20210620 yes yes not processed not processed - -20210626 20210626 yes yes not processed not processed - -20210702 20210702 yes yes not processed not processed - -20210708 20210708 yes yes not processed not processed - -20210714 20210714 yes yes not processed not processed - -20210720 20210720 yes yes not processed not processed - -20210726 20210726 yes yes not processed not processed - -20210801 20210801 yes yes not processed not processed - -20210807 20210807 yes yes not processed not processed - -20210813 20210813 yes yes not processed not processed - -20210819 20210819 yes yes not processed not processed - -20210825 20210825 yes yes not processed not processed - -20210831 20210831 yes yes not processed not processed - -20210906 20210906 yes yes not processed not processed - -20210912 20210912 yes yes processed with errors processed with errors to processto process - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - -******************************************************************************** - -Entering post mortem debugging...Entering post mortem debugging... - -******************************************************************************** - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(169)LiCSAlert_monitoring_mode() - 167  - 168  # ---> 169  from licsalert.plotting import LiCSAlert_aux_figures - 170  - 171  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(169)LiCSAlert_monitoring_mode() - 167  - 168  # ---> 169  from licsalert.plotting import LiCSAlert_aux_figures - 170  - 171  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - - -Reloaded modules: licsalert, licsalert.monitoring_functions, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.auxReloaded modules: licsalert, licsalert.monitoring_functions, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:02:34 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:02:34 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:02:34 - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - -20141031 20141031 20141031 no no no - - -20141218 20141218 20141218 no no no - - -20150111 20150111 20150111 no no no - - -20150123 20150123 20150123 no no no - - -20150216 20150216 20150216 no no no - - -20150228 20150228 20150228 no no no - - -20150312 20150312 20150312 no no no - - -20150324 20150324 20150324 no no no - - -20150405 20150405 20150405 no no no - - -20150429 20150429 20150429 no no no - - -20150511 20150511 20150511 no no no - - -20150523 20150523 20150523 no no no - - -20150604 20150604 20150604 no no no - - -20150710 20150710 20150710 no no no - - -20150722 20150722 20150722 no no no - - -20150815 20150815 20150815 no no no - - -20150920 20150920 20150920 no no no - - -20151002 20151002 20151002 no no no - - -20151014 20151014 20151014 no no no - - -20151107 20151107 20151107 no no no - - -20151119 20151119 20151119 no no no - - -20151201 20151201 20151201 no no no - - -20151213 20151213 20151213 no no no - - -20151225 20151225 20151225 no no no - - -20160106 20160106 20160106 no no no - - -20160118 20160118 20160118 no no no - - -20160211 20160211 20160211 no no no - - -20160223 20160223 20160223 no no no - - -20160306 20160306 20160306 no no no - - -20160318 20160318 20160318 no no no - - -20160330 20160330 20160330 no no no - - -20160411 20160411 20160411 no no no - - -20160505 20160505 20160505 no no no - - -20160517 20160517 20160517 no no no - - -20160529 20160529 20160529 no no no - - -20160610 20160610 20160610 no no no - - -20160704 20160704 20160704 no no no - - -20160716 20160716 20160716 no no no - - -20160728 20160728 20160728 no no no - - -20160809 20160809 20160809 no no no - - -20160821 20160821 20160821 no no no - - -20160902 20160902 20160902 no no no - - -20160914 20160914 20160914 no no no - - -20160926 20160926 20160926 no no no - - -20161002 20161002 20161002 no no no - - -20161008 20161008 20161008 no no no - - -20161014 20161014 20161014 no no no - - -20161020 20161020 20161020 no no no - - -20161026 20161026 20161026 no no no - - -20161101 20161101 20161101 no no no - - -20161107 20161107 20161107 no no no - - -20161113 20161113 20161113 no no no - - -20161119 20161119 20161119 no no no - - -20161201 20161201 20161201 no no no - - -20161207 20161207 20161207 no no no - - -20161213 20161213 20161213 no no no - - -20161219 20161219 20161219 no no no - - -20161225 20161225 20161225 no no no - - -20161231 20161231 20161231 no no no - - -20170112 20170112 20170112 yes yes yes not processed not processed not processed - - -20170118 20170118 20170118 yes yes yes not processed not processed not processed - - -20170124 20170124 20170124 yes yes yes not processed not processed not processed - - -20170130 20170130 20170130 yes yes yes not processed not processed not processed - - -20170205 20170205 20170205 yes yes yes not processed not processed not processed - - -20170211 20170211 20170211 yes yes yes not processed not processed not processed - - -20170223 20170223 20170223 yes yes yes not processed not processed not processed - - -20170301 20170301 20170301 yes yes yes not processed not processed not processed - - -20170307 20170307 20170307 yes yes yes not processed not processed not processed - - -20170313 20170313 20170313 yes yes yes not processed not processed not processed - - -20170319 20170319 20170319 yes yes yes not processed not processed not processed - - -20170325 20170325 20170325 yes yes yes not processed not processed not processed - - -20170331 20170331 20170331 yes yes yes not processed not processed not processed - - -20170406 20170406 20170406 yes yes yes not processed not processed not processed - - -20170412 20170412 20170412 yes yes yes not processed not processed not processed - - -20170418 20170418 20170418 yes yes yes not processed not processed not processed - - -20170424 20170424 20170424 yes yes yes not processed not processed not processed - - -20170430 20170430 20170430 yes yes yes not processed not processed not processed - - -20170506 20170506 20170506 yes yes yes not processed not processed not processed - - -20170512 20170512 20170512 yes yes yes not processed not processed not processed - - -20170518 20170518 20170518 yes yes yes not processed not processed not processed - - -20170524 20170524 20170524 yes yes yes not processed not processed not processed - - -20170530 20170530 20170530 yes yes yes not processed not processed not processed - - -20170605 20170605 20170605 yes yes yes not processed not processed not processed - - -20170611 20170611 20170611 yes yes yes not processed not processed not processed - - -20170617 20170617 20170617 yes yes yes not processed not processed not processed - - -20170623 20170623 20170623 yes yes yes not processed not processed not processed - - -20170629 20170629 20170629 yes yes yes not processed not processed not processed - - -20170705 20170705 20170705 yes yes yes not processed not processed not processed - - -20170711 20170711 20170711 yes yes yes not processed not processed not processed - - -20170717 20170717 20170717 yes yes yes not processed not processed not processed - - -20170723 20170723 20170723 yes yes yes not processed not processed not processed - - -20170729 20170729 20170729 yes yes yes not processed not processed not processed - - -20170804 20170804 20170804 yes yes yes not processed not processed not processed - - -20170816 20170816 20170816 yes yes yes not processed not processed not processed - - -20170822 20170822 20170822 yes yes yes not processed not processed not processed - - -20170828 20170828 20170828 yes yes yes not processed not processed not processed - - -20170903 20170903 20170903 yes yes yes not processed not processed not processed - - -20170909 20170909 20170909 yes yes yes not processed not processed not processed - - -20170915 20170915 20170915 yes yes yes not processed not processed not processed - - -20170921 20170921 20170921 yes yes yes not processed not processed not processed - - -20170927 20170927 20170927 yes yes yes not processed not processed not processed - - -20171009 20171009 20171009 yes yes yes not processed not processed not processed - - -20171015 20171015 20171015 yes yes yes not processed not processed not processed - - -20171021 20171021 20171021 yes yes yes not processed not processed not processed - - -20171027 20171027 20171027 yes yes yes not processed not processed not processed - - -20171102 20171102 20171102 yes yes yes not processed not processed not processed - - -20171108 20171108 20171108 yes yes yes not processed not processed not processed - - -20171114 20171114 20171114 yes yes yes not processed not processed not processed - - -20171120 20171120 20171120 yes yes yes not processed not processed not processed - - -20171202 20171202 20171202 yes yes yes not processed not processed not processed - - -20171208 20171208 20171208 yes yes yes not processed not processed not processed - - -20171214 20171214 20171214 yes yes yes not processed not processed not processed - - -20171226 20171226 20171226 yes yes yes not processed not processed not processed - - -20180101 20180101 20180101 yes yes yes not processed not processed not processed - - -20180107 20180107 20180107 yes yes yes not processed not processed not processed - - -20180113 20180113 20180113 yes yes yes not processed not processed not processed - - -20180119 20180119 20180119 yes yes yes not processed not processed not processed - - -20180125 20180125 20180125 yes yes yes not processed not processed not processed - - -20180131 20180131 20180131 yes yes yes not processed not processed not processed - - -20180206 20180206 20180206 yes yes yes not processed not processed not processed - - -20180218 20180218 20180218 yes yes yes not processed not processed not processed - - -20180224 20180224 20180224 yes yes yes not processed not processed not processed - - -20180302 20180302 20180302 yes yes yes not processed not processed not processed - - -20180308 20180308 20180308 yes yes yes not processed not processed not processed - - -20180314 20180314 20180314 yes yes yes not processed not processed not processed - - -20180320 20180320 20180320 yes yes yes not processed not processed not processed - - -20180326 20180326 20180326 yes yes yes not processed not processed not processed - - -20180401 20180401 20180401 yes yes yes not processed not processed not processed - - -20180407 20180407 20180407 yes yes yes not processed not processed not processed - - -20180413 20180413 20180413 yes yes yes not processed not processed not processed - - -20180419 20180419 20180419 yes yes yes not processed not processed not processed - - -20180425 20180425 20180425 yes yes yes not processed not processed not processed - - -20180501 20180501 20180501 yes yes yes not processed not processed not processed - - -20180507 20180507 20180507 yes yes yes not processed not processed not processed - - -20180513 20180513 20180513 yes yes yes not processed not processed not processed - - -20180519 20180519 20180519 yes yes yes not processed not processed not processed - - -20180525 20180525 20180525 yes yes yes not processed not processed not processed - - -20180531 20180531 20180531 yes yes yes not processed not processed not processed - - -20180606 20180606 20180606 yes yes yes not processed not processed not processed - - -20180612 20180612 20180612 yes yes yes not processed not processed not processed - - -20180618 20180618 20180618 yes yes yes not processed not processed not processed - - -20180630 20180630 20180630 yes yes yes not processed not processed not processed - - -20180712 20180712 20180712 yes yes yes not processed not processed not processed - - -20180718 20180718 20180718 yes yes yes not processed not processed not processed - - -20180724 20180724 20180724 yes yes yes not processed not processed not processed - - -20180730 20180730 20180730 yes yes yes not processed not processed not processed - - -20180805 20180805 20180805 yes yes yes not processed not processed not processed - - -20180811 20180811 20180811 yes yes yes not processed not processed not processed - - -20180817 20180817 20180817 yes yes yes not processed not processed not processed - - -20180823 20180823 20180823 yes yes yes not processed not processed not processed - - -20180829 20180829 20180829 yes yes yes not processed not processed not processed - - -20180904 20180904 20180904 yes yes yes not processed not processed not processed - - -20180910 20180910 20180910 yes yes yes not processed not processed not processed - - -20180916 20180916 20180916 yes yes yes not processed not processed not processed - - -20180922 20180922 20180922 yes yes yes not processed not processed not processed - - -20180928 20180928 20180928 yes yes yes not processed not processed not processed - - -20181004 20181004 20181004 yes yes yes not processed not processed not processed - - -20181010 20181010 20181010 yes yes yes not processed not processed not processed - - -20181016 20181016 20181016 yes yes yes not processed not processed not processed - - -20181022 20181022 20181022 yes yes yes not processed not processed not processed - - -20181028 20181028 20181028 yes yes yes not processed not processed not processed - - -20181109 20181109 20181109 yes yes yes not processed not processed not processed - - -20181115 20181115 20181115 yes yes yes not processed not processed not processed - - -20181121 20181121 20181121 yes yes yes not processed not processed not processed - - -20181127 20181127 20181127 yes yes yes not processed not processed not processed - - -20181203 20181203 20181203 yes yes yes not processed not processed not processed - - -20181209 20181209 20181209 yes yes yes not processed not processed not processed - - -20181215 20181215 20181215 yes yes yes not processed not processed not processed - - -20181221 20181221 20181221 yes yes yes not processed not processed not processed - - -20181227 20181227 20181227 yes yes yes not processed not processed not processed - - -20190102 20190102 20190102 yes yes yes not processed not processed not processed - - -20190108 20190108 20190108 yes yes yes not processed not processed not processed - - -20190114 20190114 20190114 yes yes yes not processed not processed not processed - - -20190120 20190120 20190120 yes yes yes not processed not processed not processed - - -20190126 20190126 20190126 yes yes yes not processed not processed not processed - - -20190201 20190201 20190201 yes yes yes not processed not processed not processed - - -20190207 20190207 20190207 yes yes yes not processed not processed not processed - - -20190213 20190213 20190213 yes yes yes not processed not processed not processed - - -20190225 20190225 20190225 yes yes yes not processed not processed not processed - - -20190303 20190303 20190303 yes yes yes not processed not processed not processed - - -20190309 20190309 20190309 yes yes yes not processed not processed not processed - - -20190321 20190321 20190321 yes yes yes not processed not processed not processed - - -20190402 20190402 20190402 yes yes yes not processed not processed not processed - - -20190408 20190408 20190408 yes yes yes not processed not processed not processed - - -20190414 20190414 20190414 yes yes yes not processed not processed not processed - - -20190420 20190420 20190420 yes yes yes not processed not processed not processed - - -20190426 20190426 20190426 yes yes yes not processed not processed not processed - - -20190502 20190502 20190502 yes yes yes not processed not processed not processed - - -20190508 20190508 20190508 yes yes yes not processed not processed not processed - - -20190520 20190520 20190520 yes yes yes not processed not processed not processed - - -20190526 20190526 20190526 yes yes yes not processed not processed not processed - - -20190601 20190601 20190601 yes yes yes not processed not processed not processed - - -20190607 20190607 20190607 yes yes yes not processed not processed not processed - - -20190613 20190613 20190613 yes yes yes not processed not processed not processed - - -20190625 20190625 20190625 yes yes yes not processed not processed not processed - - -20190701 20190701 20190701 yes yes yes not processed not processed not processed - - -20190707 20190707 20190707 yes yes yes not processed not processed not processed - - -20190713 20190713 20190713 yes yes yes not processed not processed not processed - - -20190719 20190719 20190719 yes yes yes not processed not processed not processed - - -20190725 20190725 20190725 yes yes yes not processed not processed not processed - - -20190731 20190731 20190731 yes yes yes not processed not processed not processed - - -20190806 20190806 20190806 yes yes yes not processed not processed not processed - - -20190812 20190812 20190812 yes yes yes not processed not processed not processed - - -20190818 20190818 20190818 yes yes yes not processed not processed not processed - - -20190824 20190824 20190824 yes yes yes not processed not processed not processed - - -20190830 20190830 20190830 yes yes yes not processed not processed not processed - - -20190905 20190905 20190905 yes yes yes not processed not processed not processed - - -20190911 20190911 20190911 yes yes yes not processed not processed not processed - - -20190917 20190917 20190917 yes yes yes not processed not processed not processed - - -20190923 20190923 20190923 yes yes yes not processed not processed not processed - - -20191005 20191005 20191005 yes yes yes not processed not processed not processed - - -20191011 20191011 20191011 yes yes yes not processed not processed not processed - - -20191017 20191017 20191017 yes yes yes not processed not processed not processed - - -20191023 20191023 20191023 yes yes yes not processed not processed not processed - - -20191029 20191029 20191029 yes yes yes not processed not processed not processed - - -20191104 20191104 20191104 yes yes yes not processed not processed not processed - - -20191116 20191116 20191116 yes yes yes not processed not processed not processed - - -20191122 20191122 20191122 yes yes yes not processed not processed not processed - - -20191128 20191128 20191128 yes yes yes not processed not processed not processed - - -20191204 20191204 20191204 yes yes yes not processed not processed not processed - - -20191210 20191210 20191210 yes yes yes not processed not processed not processed - - -20191216 20191216 20191216 yes yes yes not processed not processed not processed - - -20191222 20191222 20191222 yes yes yes not processed not processed not processed - - -20191228 20191228 20191228 yes yes yes not processed not processed not processed - - -20200103 20200103 20200103 yes yes yes not processed not processed not processed - - -20200109 20200109 20200109 yes yes yes not processed not processed not processed - - -20200115 20200115 20200115 yes yes yes not processed not processed not processed - - -20200121 20200121 20200121 yes yes yes not processed not processed not processed - - -20200127 20200127 20200127 yes yes yes not processed not processed not processed - - -20200202 20200202 20200202 yes yes yes not processed not processed not processed - - -20200208 20200208 20200208 yes yes yes not processed not processed not processed - - -20200214 20200214 20200214 yes yes yes not processed not processed not processed - - -20200220 20200220 20200220 yes yes yes not processed not processed not processed - - -20200226 20200226 20200226 yes yes yes not processed not processed not processed - - -20200303 20200303 20200303 yes yes yes not processed not processed not processed - - -20200309 20200309 20200309 yes yes yes not processed not processed not processed - - -20200315 20200315 20200315 yes yes yes not processed not processed not processed - - -20200321 20200321 20200321 yes yes yes not processed not processed not processed - - -20200402 20200402 20200402 yes yes yes not processed not processed not processed - - -20200408 20200408 20200408 yes yes yes not processed not processed not processed - - -20200414 20200414 20200414 yes yes yes not processed not processed not processed - - -20200420 20200420 20200420 yes yes yes not processed not processed not processed - - -20200426 20200426 20200426 yes yes yes not processed not processed not processed - - -20200502 20200502 20200502 yes yes yes not processed not processed not processed - - -20200508 20200508 20200508 yes yes yes not processed not processed not processed - - -20200514 20200514 20200514 yes yes yes not processed not processed not processed - - -20200520 20200520 20200520 yes yes yes not processed not processed not processed - - -20200526 20200526 20200526 yes yes yes not processed not processed not processed - - -20200601 20200601 20200601 yes yes yes not processed not processed not processed - - -20200607 20200607 20200607 yes yes yes not processed not processed not processed - - -20200613 20200613 20200613 yes yes yes not processed not processed not processed - - -20200619 20200619 20200619 yes yes yes not processed not processed not processed - - -20200625 20200625 20200625 yes yes yes not processed not processed not processed - - -20200701 20200701 20200701 yes yes yes not processed not processed not processed - - -20200707 20200707 20200707 yes yes yes not processed not processed not processed - - -20200713 20200713 20200713 yes yes yes not processed not processed not processed - - -20200719 20200719 20200719 yes yes yes not processed not processed not processed - - -20200725 20200725 20200725 yes yes yes not processed not processed not processed - - -20200731 20200731 20200731 yes yes yes not processed not processed not processed - - -20200806 20200806 20200806 yes yes yes not processed not processed not processed - - -20200812 20200812 20200812 yes yes yes not processed not processed not processed - - -20200818 20200818 20200818 yes yes yes not processed not processed not processed - - -20200824 20200824 20200824 yes yes yes not processed not processed not processed - - -20200830 20200830 20200830 yes yes yes not processed not processed not processed - - -20200905 20200905 20200905 yes yes yes not processed not processed not processed - - -20200911 20200911 20200911 yes yes yes not processed not processed not processed - - -20200917 20200917 20200917 yes yes yes not processed not processed not processed - - -20200923 20200923 20200923 yes yes yes not processed not processed not processed - - -20200929 20200929 20200929 yes yes yes not processed not processed not processed - - -20201005 20201005 20201005 yes yes yes not processed not processed not processed - - -20201011 20201011 20201011 yes yes yes not processed not processed not processed - - -20201017 20201017 20201017 yes yes yes not processed not processed not processed - - -20201023 20201023 20201023 yes yes yes not processed not processed not processed - - -20201029 20201029 20201029 yes yes yes not processed not processed not processed - - -20201104 20201104 20201104 yes yes yes not processed not processed not processed - - -20201110 20201110 20201110 yes yes yes not processed not processed not processed - - -20201116 20201116 20201116 yes yes yes not processed not processed not processed - - -20201122 20201122 20201122 yes yes yes not processed not processed not processed - - -20201128 20201128 20201128 yes yes yes not processed not processed not processed - - -20201204 20201204 20201204 yes yes yes not processed not processed not processed - - -20201210 20201210 20201210 yes yes yes not processed not processed not processed - - -20201216 20201216 20201216 yes yes yes not processed not processed not processed - - -20201222 20201222 20201222 yes yes yes not processed not processed not processed - - -20201228 20201228 20201228 yes yes yes not processed not processed not processed - - -20210103 20210103 20210103 yes yes yes not processed not processed not processed - - -20210109 20210109 20210109 yes yes yes not processed not processed not processed - - -20210115 20210115 20210115 yes yes yes not processed not processed not processed - - -20210121 20210121 20210121 yes yes yes not processed not processed not processed - - -20210127 20210127 20210127 yes yes yes not processed not processed not processed - - -20210202 20210202 20210202 yes yes yes not processed not processed not processed - - -20210208 20210208 20210208 yes yes yes not processed not processed not processed - - -20210214 20210214 20210214 yes yes yes not processed not processed not processed - - -20210220 20210220 20210220 yes yes yes not processed not processed not processed - - -20210226 20210226 20210226 yes yes yes not processed not processed not processed - - -20210304 20210304 20210304 yes yes yes not processed not processed not processed - - -20210310 20210310 20210310 yes yes yes not processed not processed not processed - - -20210316 20210316 20210316 yes yes yes not processed not processed not processed - - -20210322 20210322 20210322 yes yes yes not processed not processed not processed - - -20210328 20210328 20210328 yes yes yes not processed not processed not processed - - -20210403 20210403 20210403 yes yes yes not processed not processed not processed - - -20210409 20210409 20210409 yes yes yes not processed not processed not processed - - -20210415 20210415 20210415 yes yes yes not processed not processed not processed - - -20210421 20210421 20210421 yes yes yes not processed not processed not processed - - -20210427 20210427 20210427 yes yes yes not processed not processed not processed - - -20210503 20210503 20210503 yes yes yes not processed not processed not processed - - -20210509 20210509 20210509 yes yes yes not processed not processed not processed - - -20210515 20210515 20210515 yes yes yes not processed not processed not processed - - -20210521 20210521 20210521 yes yes yes not processed not processed not processed - - -20210527 20210527 20210527 yes yes yes not processed not processed not processed - - -20210602 20210602 20210602 yes yes yes not processed not processed not processed - - -20210608 20210608 20210608 yes yes yes not processed not processed not processed - - -20210614 20210614 20210614 yes yes yes not processed not processed not processed - - -20210620 20210620 20210620 yes yes yes not processed not processed not processed - - -20210626 20210626 20210626 yes yes yes not processed not processed not processed - - -20210702 20210702 20210702 yes yes yes not processed not processed not processed - - -20210708 20210708 20210708 yes yes yes not processed not processed not processed - - -20210714 20210714 20210714 yes yes yes not processed not processed not processed - - -20210720 20210720 20210720 yes yes yes not processed not processed not processed - - -20210726 20210726 20210726 yes yes yes not processed not processed not processed - - -20210801 20210801 20210801 yes yes yes not processed not processed not processed - - -20210807 20210807 20210807 yes yes yes not processed not processed not processed - - -20210813 20210813 20210813 yes yes yes not processed not processed not processed - - -20210819 20210819 20210819 yes yes yes not processed not processed not processed - - -20210825 20210825 20210825 yes yes yes not processed not processed not processed - - -20210831 20210831 20210831 yes yes yes not processed not processed not processed - - -20210906 20210906 20210906 yes yes yes not processed not processed not processed - - -20210912 20210912 20210912 yes yes yes processed with errors processed with errors processed with errors to processto processto process - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - -************************************************************************************************************************ - - -Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging... - - -************************************************************************************************************************ - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(50)LiCSAlert_aux_figures() - 48  plt.switch_backend('Qt5Agg') # and switch to interactive if it wasn't already. - 49  ----> 50  pdb.set_trace() - 51  - 52  # 1: do the plots -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(50)LiCSAlert_aux_figures() - 48  plt.switch_backend('Qt5Agg') # and switch to interactive if it wasn't already. - 49  ----> 50  pdb.set_trace() - 51  - 52  # 1: do the plots -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(50)LiCSAlert_aux_figures() - 48  plt.switch_backend('Qt5Agg') # and switch to interactive if it wasn't already. - 49  ----> 50  pdb.set_trace() - 51  - 52  # 1: do the plots - - - - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - - - - /tmp/ipykernel_4942/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_4942/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_4942/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - - - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(171)LiCSAlert_monitoring_mode() - 169  from licsalert.plotting import LiCSAlert_aux_figures - 170  ---> 171  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 172  figure_type = figure_type, figure_out_dir = volcano_dir / processing_date) - 173  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(171)LiCSAlert_monitoring_mode() - 169  from licsalert.plotting import LiCSAlert_aux_figures - 170  ---> 171  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 172  figure_type = figure_type, figure_out_dir = volcano_dir / processing_date) - 173  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(171)LiCSAlert_monitoring_mode() - 169  from licsalert.plotting import LiCSAlert_aux_figures - 170  ---> 171  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 172  figure_type = figure_type, figure_out_dir = volcano_dir / processing_date) - 173  - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(50)LiCSAlert_aux_figures() - 48  plt.switch_backend('Qt5Agg') # and switch to interactive if it wasn't already. - 49  ----> 50  pdb.set_trace() - 51  - 52  # 1: do the plots -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(50)LiCSAlert_aux_figures() - 48  plt.switch_backend('Qt5Agg') # and switch to interactive if it wasn't already. - 49  ----> 50  pdb.set_trace() - 51  - 52  # 1: do the plots -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(50)LiCSAlert_aux_figures() - 48  plt.switch_backend('Qt5Agg') # and switch to interactive if it wasn't already. - 49  ----> 50  pdb.set_trace() - 51  - 52  # 1: do the plots - - - -Reloaded modules: licsalert, licsalert.monitoring_functions, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plottingReloaded modules: licsalert, licsalert.monitoring_functions, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plottingReloaded modules: licsalert, licsalert.monitoring_functions, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plotting - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:03:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:03:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:03:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:03:10 - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - -20141031 20141031 20141031 20141031 no no no no - - - -20141218 20141218 20141218 20141218 no no no no - - - -20150111 20150111 20150111 20150111 no no no no - - - -20150123 20150123 20150123 20150123 no no no no - - - -20150216 20150216 20150216 20150216 no no no no - - - -20150228 20150228 20150228 20150228 no no no no - - - -20150312 20150312 20150312 20150312 no no no no - - - -20150324 20150324 20150324 20150324 no no no no - - - -20150405 20150405 20150405 20150405 no no no no - - - -20150429 20150429 20150429 20150429 no no no no - - - -20150511 20150511 20150511 20150511 no no no no - - - -20150523 20150523 20150523 20150523 no no no no - - - -20150604 20150604 20150604 20150604 no no no no - - - -20150710 20150710 20150710 20150710 no no no no - - - -20150722 20150722 20150722 20150722 no no no no - - - -20150815 20150815 20150815 20150815 no no no no - - - -20150920 20150920 20150920 20150920 no no no no - - - -20151002 20151002 20151002 20151002 no no no no - - - -20151014 20151014 20151014 20151014 no no no no - - - -20151107 20151107 20151107 20151107 no no no no - - - -20151119 20151119 20151119 20151119 no no no no - - - -20151201 20151201 20151201 20151201 no no no no - - - -20151213 20151213 20151213 20151213 no no no no - - - -20151225 20151225 20151225 20151225 no no no no - - - -20160106 20160106 20160106 20160106 no no no no - - - -20160118 20160118 20160118 20160118 no no no no - - - -20160211 20160211 20160211 20160211 no no no no - - - -20160223 20160223 20160223 20160223 no no no no - - - -20160306 20160306 20160306 20160306 no no no no - - - -20160318 20160318 20160318 20160318 no no no no - - - -20160330 20160330 20160330 20160330 no no no no - - - -20160411 20160411 20160411 20160411 no no no no - - - -20160505 20160505 20160505 20160505 no no no no - - - -20160517 20160517 20160517 20160517 no no no no - - - -20160529 20160529 20160529 20160529 no no no no - - - -20160610 20160610 20160610 20160610 no no no no - - - -20160704 20160704 20160704 20160704 no no no no - - - -20160716 20160716 20160716 20160716 no no no no - - - -20160728 20160728 20160728 20160728 no no no no - - - -20160809 20160809 20160809 20160809 no no no no - - - -20160821 20160821 20160821 20160821 no no no no - - - -20160902 20160902 20160902 20160902 no no no no - - - -20160914 20160914 20160914 20160914 no no no no - - - -20160926 20160926 20160926 20160926 no no no no - - - -20161002 20161002 20161002 20161002 no no no no - - - -20161008 20161008 20161008 20161008 no no no no - - - -20161014 20161014 20161014 20161014 no no no no - - - -20161020 20161020 20161020 20161020 no no no no - - - -20161026 20161026 20161026 20161026 no no no no - - - -20161101 20161101 20161101 20161101 no no no no - - - -20161107 20161107 20161107 20161107 no no no no - - - -20161113 20161113 20161113 20161113 no no no no - - - -20161119 20161119 20161119 20161119 no no no no - - - -20161201 20161201 20161201 20161201 no no no no - - - -20161207 20161207 20161207 20161207 no no no no - - - -20161213 20161213 20161213 20161213 no no no no - - - -20161219 20161219 20161219 20161219 no no no no - - - -20161225 20161225 20161225 20161225 no no no no - - - -20161231 20161231 20161231 20161231 no no no no - - - -20170112 20170112 20170112 20170112 yes yes yes yes not processed not processed not processed not processed - - - -20170118 20170118 20170118 20170118 yes yes yes yes not processed not processed not processed not processed - - - -20170124 20170124 20170124 20170124 yes yes yes yes not processed not processed not processed not processed - - - -20170130 20170130 20170130 20170130 yes yes yes yes not processed not processed not processed not processed - - - -20170205 20170205 20170205 20170205 yes yes yes yes not processed not processed not processed not processed - - - -20170211 20170211 20170211 20170211 yes yes yes yes not processed not processed not processed not processed - - - -20170223 20170223 20170223 20170223 yes yes yes yes not processed not processed not processed not processed - - - -20170301 20170301 20170301 20170301 yes yes yes yes not processed not processed not processed not processed - - - -20170307 20170307 20170307 20170307 yes yes yes yes not processed not processed not processed not processed - - - -20170313 20170313 20170313 20170313 yes yes yes yes not processed not processed not processed not processed - - - -20170319 20170319 20170319 20170319 yes yes yes yes not processed not processed not processed not processed - - - -20170325 20170325 20170325 20170325 yes yes yes yes not processed not processed not processed not processed - - - -20170331 20170331 20170331 20170331 yes yes yes yes not processed not processed not processed not processed - - - -20170406 20170406 20170406 20170406 yes yes yes yes not processed not processed not processed not processed - - - -20170412 20170412 20170412 20170412 yes yes yes yes not processed not processed not processed not processed - - - -20170418 20170418 20170418 20170418 yes yes yes yes not processed not processed not processed not processed - - - -20170424 20170424 20170424 20170424 yes yes yes yes not processed not processed not processed not processed - - - -20170430 20170430 20170430 20170430 yes yes yes yes not processed not processed not processed not processed - - - -20170506 20170506 20170506 20170506 yes yes yes yes not processed not processed not processed not processed - - - -20170512 20170512 20170512 20170512 yes yes yes yes not processed not processed not processed not processed - - - -20170518 20170518 20170518 20170518 yes yes yes yes not processed not processed not processed not processed - - - -20170524 20170524 20170524 20170524 yes yes yes yes not processed not processed not processed not processed - - - -20170530 20170530 20170530 20170530 yes yes yes yes not processed not processed not processed not processed - - - -20170605 20170605 20170605 20170605 yes yes yes yes not processed not processed not processed not processed - - - -20170611 20170611 20170611 20170611 yes yes yes yes not processed not processed not processed not processed - - - -20170617 20170617 20170617 20170617 yes yes yes yes not processed not processed not processed not processed - - - -20170623 20170623 20170623 20170623 yes yes yes yes not processed not processed not processed not processed - - - -20170629 20170629 20170629 20170629 yes yes yes yes not processed not processed not processed not processed - - - -20170705 20170705 20170705 20170705 yes yes yes yes not processed not processed not processed not processed - - - -20170711 20170711 20170711 20170711 yes yes yes yes not processed not processed not processed not processed - - - -20170717 20170717 20170717 20170717 yes yes yes yes not processed not processed not processed not processed - - - -20170723 20170723 20170723 20170723 yes yes yes yes not processed not processed not processed not processed - - - -20170729 20170729 20170729 20170729 yes yes yes yes not processed not processed not processed not processed - - - -20170804 20170804 20170804 20170804 yes yes yes yes not processed not processed not processed not processed - - - -20170816 20170816 20170816 20170816 yes yes yes yes not processed not processed not processed not processed - - - -20170822 20170822 20170822 20170822 yes yes yes yes not processed not processed not processed not processed - - - -20170828 20170828 20170828 20170828 yes yes yes yes not processed not processed not processed not processed - - - -20170903 20170903 20170903 20170903 yes yes yes yes not processed not processed not processed not processed - - - -20170909 20170909 20170909 20170909 yes yes yes yes not processed not processed not processed not processed - - - -20170915 20170915 20170915 20170915 yes yes yes yes not processed not processed not processed not processed - - - -20170921 20170921 20170921 20170921 yes yes yes yes not processed not processed not processed not processed - - - -20170927 20170927 20170927 20170927 yes yes yes yes not processed not processed not processed not processed - - - -20171009 20171009 20171009 20171009 yes yes yes yes not processed not processed not processed not processed - - - -20171015 20171015 20171015 20171015 yes yes yes yes not processed not processed not processed not processed - - - -20171021 20171021 20171021 20171021 yes yes yes yes not processed not processed not processed not processed - - - -20171027 20171027 20171027 20171027 yes yes yes yes not processed not processed not processed not processed - - - -20171102 20171102 20171102 20171102 yes yes yes yes not processed not processed not processed not processed - - - -20171108 20171108 20171108 20171108 yes yes yes yes not processed not processed not processed not processed - - - -20171114 20171114 20171114 20171114 yes yes yes yes not processed not processed not processed not processed - - - -20171120 20171120 20171120 20171120 yes yes yes yes not processed not processed not processed not processed - - - -20171202 20171202 20171202 20171202 yes yes yes yes not processed not processed not processed not processed - - - -20171208 20171208 20171208 20171208 yes yes yes yes not processed not processed not processed not processed - - - -20171214 20171214 20171214 20171214 yes yes yes yes not processed not processed not processed not processed - - - -20171226 20171226 20171226 20171226 yes yes yes yes not processed not processed not processed not processed - - - -20180101 20180101 20180101 20180101 yes yes yes yes not processed not processed not processed not processed - - - -20180107 20180107 20180107 20180107 yes yes yes yes not processed not processed not processed not processed - - - -20180113 20180113 20180113 20180113 yes yes yes yes not processed not processed not processed not processed - - - -20180119 20180119 20180119 20180119 yes yes yes yes not processed not processed not processed not processed - - - -20180125 20180125 20180125 20180125 yes yes yes yes not processed not processed not processed not processed - - - -20180131 20180131 20180131 20180131 yes yes yes yes not processed not processed not processed not processed - - - -20180206 20180206 20180206 20180206 yes yes yes yes not processed not processed not processed not processed - - - -20180218 20180218 20180218 20180218 yes yes yes yes not processed not processed not processed not processed - - - -20180224 20180224 20180224 20180224 yes yes yes yes not processed not processed not processed not processed - - - -20180302 20180302 20180302 20180302 yes yes yes yes not processed not processed not processed not processed - - - -20180308 20180308 20180308 20180308 yes yes yes yes not processed not processed not processed not processed - - - -20180314 20180314 20180314 20180314 yes yes yes yes not processed not processed not processed not processed - - - -20180320 20180320 20180320 20180320 yes yes yes yes not processed not processed not processed not processed - - - -20180326 20180326 20180326 20180326 yes yes yes yes not processed not processed not processed not processed - - - -20180401 20180401 20180401 20180401 yes yes yes yes not processed not processed not processed not processed - - - -20180407 20180407 20180407 20180407 yes yes yes yes not processed not processed not processed not processed - - - -20180413 20180413 20180413 20180413 yes yes yes yes not processed not processed not processed not processed - - - -20180419 20180419 20180419 20180419 yes yes yes yes not processed not processed not processed not processed - - - -20180425 20180425 20180425 20180425 yes yes yes yes not processed not processed not processed not processed - - - -20180501 20180501 20180501 20180501 yes yes yes yes not processed not processed not processed not processed - - - -20180507 20180507 20180507 20180507 yes yes yes yes not processed not processed not processed not processed - - - -20180513 20180513 20180513 20180513 yes yes yes yes not processed not processed not processed not processed - - - -20180519 20180519 20180519 20180519 yes yes yes yes not processed not processed not processed not processed - - - -20180525 20180525 20180525 20180525 yes yes yes yes not processed not processed not processed not processed - - - -20180531 20180531 20180531 20180531 yes yes yes yes not processed not processed not processed not processed - - - -20180606 20180606 20180606 20180606 yes yes yes yes not processed not processed not processed not processed - - - -20180612 20180612 20180612 20180612 yes yes yes yes not processed not processed not processed not processed - - - -20180618 20180618 20180618 20180618 yes yes yes yes not processed not processed not processed not processed - - - -20180630 20180630 20180630 20180630 yes yes yes yes not processed not processed not processed not processed - - - -20180712 20180712 20180712 20180712 yes yes yes yes not processed not processed not processed not processed - - - -20180718 20180718 20180718 20180718 yes yes yes yes not processed not processed not processed not processed - - - -20180724 20180724 20180724 20180724 yes yes yes yes not processed not processed not processed not processed - - - -20180730 20180730 20180730 20180730 yes yes yes yes not processed not processed not processed not processed - - - -20180805 20180805 20180805 20180805 yes yes yes yes not processed not processed not processed not processed - - - -20180811 20180811 20180811 20180811 yes yes yes yes not processed not processed not processed not processed - - - -20180817 20180817 20180817 20180817 yes yes yes yes not processed not processed not processed not processed - - - -20180823 20180823 20180823 20180823 yes yes yes yes not processed not processed not processed not processed - - - -20180829 20180829 20180829 20180829 yes yes yes yes not processed not processed not processed not processed - - - -20180904 20180904 20180904 20180904 yes yes yes yes not processed not processed not processed not processed - - - -20180910 20180910 20180910 20180910 yes yes yes yes not processed not processed not processed not processed - - - -20180916 20180916 20180916 20180916 yes yes yes yes not processed not processed not processed not processed - - - -20180922 20180922 20180922 20180922 yes yes yes yes not processed not processed not processed not processed - - - -20180928 20180928 20180928 20180928 yes yes yes yes not processed not processed not processed not processed - - - -20181004 20181004 20181004 20181004 yes yes yes yes not processed not processed not processed not processed - - - -20181010 20181010 20181010 20181010 yes yes yes yes not processed not processed not processed not processed - - - -20181016 20181016 20181016 20181016 yes yes yes yes not processed not processed not processed not processed - - - -20181022 20181022 20181022 20181022 yes yes yes yes not processed not processed not processed not processed - - - -20181028 20181028 20181028 20181028 yes yes yes yes not processed not processed not processed not processed - - - -20181109 20181109 20181109 20181109 yes yes yes yes not processed not processed not processed not processed - - - -20181115 20181115 20181115 20181115 yes yes yes yes not processed not processed not processed not processed - - - -20181121 20181121 20181121 20181121 yes yes yes yes not processed not processed not processed not processed - - - -20181127 20181127 20181127 20181127 yes yes yes yes not processed not processed not processed not processed - - - -20181203 20181203 20181203 20181203 yes yes yes yes not processed not processed not processed not processed - - - -20181209 20181209 20181209 20181209 yes yes yes yes not processed not processed not processed not processed - - - -20181215 20181215 20181215 20181215 yes yes yes yes not processed not processed not processed not processed - - - -20181221 20181221 20181221 20181221 yes yes yes yes not processed not processed not processed not processed - - - -20181227 20181227 20181227 20181227 yes yes yes yes not processed not processed not processed not processed - - - -20190102 20190102 20190102 20190102 yes yes yes yes not processed not processed not processed not processed - - - -20190108 20190108 20190108 20190108 yes yes yes yes not processed not processed not processed not processed - - - -20190114 20190114 20190114 20190114 yes yes yes yes not processed not processed not processed not processed - - - -20190120 20190120 20190120 20190120 yes yes yes yes not processed not processed not processed not processed - - - -20190126 20190126 20190126 20190126 yes yes yes yes not processed not processed not processed not processed - - - -20190201 20190201 20190201 20190201 yes yes yes yes not processed not processed not processed not processed - - - -20190207 20190207 20190207 20190207 yes yes yes yes not processed not processed not processed not processed - - - -20190213 20190213 20190213 20190213 yes yes yes yes not processed not processed not processed not processed - - - -20190225 20190225 20190225 20190225 yes yes yes yes not processed not processed not processed not processed - - - -20190303 20190303 20190303 20190303 yes yes yes yes not processed not processed not processed not processed - - - -20190309 20190309 20190309 20190309 yes yes yes yes not processed not processed not processed not processed - - - -20190321 20190321 20190321 20190321 yes yes yes yes not processed not processed not processed not processed - - - -20190402 20190402 20190402 20190402 yes yes yes yes not processed not processed not processed not processed - - - -20190408 20190408 20190408 20190408 yes yes yes yes not processed not processed not processed not processed - - - -20190414 20190414 20190414 20190414 yes yes yes yes not processed not processed not processed not processed - - - -20190420 20190420 20190420 20190420 yes yes yes yes not processed not processed not processed not processed - - - -20190426 20190426 20190426 20190426 yes yes yes yes not processed not processed not processed not processed - - - -20190502 20190502 20190502 20190502 yes yes yes yes not processed not processed not processed not processed - - - -20190508 20190508 20190508 20190508 yes yes yes yes not processed not processed not processed not processed - - - -20190520 20190520 20190520 20190520 yes yes yes yes not processed not processed not processed not processed - - - -20190526 20190526 20190526 20190526 yes yes yes yes not processed not processed not processed not processed - - - -20190601 20190601 20190601 20190601 yes yes yes yes not processed not processed not processed not processed - - - -20190607 20190607 20190607 20190607 yes yes yes yes not processed not processed not processed not processed - - - -20190613 20190613 20190613 20190613 yes yes yes yes not processed not processed not processed not processed - - - -20190625 20190625 20190625 20190625 yes yes yes yes not processed not processed not processed not processed - - - -20190701 20190701 20190701 20190701 yes yes yes yes not processed not processed not processed not processed - - - -20190707 20190707 20190707 20190707 yes yes yes yes not processed not processed not processed not processed - - - -20190713 20190713 20190713 20190713 yes yes yes yes not processed not processed not processed not processed - - - -20190719 20190719 20190719 20190719 yes yes yes yes not processed not processed not processed not processed - - - -20190725 20190725 20190725 20190725 yes yes yes yes not processed not processed not processed not processed - - - -20190731 20190731 20190731 20190731 yes yes yes yes not processed not processed not processed not processed - - - -20190806 20190806 20190806 20190806 yes yes yes yes not processed not processed not processed not processed - - - -20190812 20190812 20190812 20190812 yes yes yes yes not processed not processed not processed not processed - - - -20190818 20190818 20190818 20190818 yes yes yes yes not processed not processed not processed not processed - - - -20190824 20190824 20190824 20190824 yes yes yes yes not processed not processed not processed not processed - - - -20190830 20190830 20190830 20190830 yes yes yes yes not processed not processed not processed not processed - - - -20190905 20190905 20190905 20190905 yes yes yes yes not processed not processed not processed not processed - - - -20190911 20190911 20190911 20190911 yes yes yes yes not processed not processed not processed not processed - - - -20190917 20190917 20190917 20190917 yes yes yes yes not processed not processed not processed not processed - - - -20190923 20190923 20190923 20190923 yes yes yes yes not processed not processed not processed not processed - - - -20191005 20191005 20191005 20191005 yes yes yes yes not processed not processed not processed not processed - - - -20191011 20191011 20191011 20191011 yes yes yes yes not processed not processed not processed not processed - - - -20191017 20191017 20191017 20191017 yes yes yes yes not processed not processed not processed not processed - - - -20191023 20191023 20191023 20191023 yes yes yes yes not processed not processed not processed not processed - - - -20191029 20191029 20191029 20191029 yes yes yes yes not processed not processed not processed not processed - - - -20191104 20191104 20191104 20191104 yes yes yes yes not processed not processed not processed not processed - - - -20191116 20191116 20191116 20191116 yes yes yes yes not processed not processed not processed not processed - - - -20191122 20191122 20191122 20191122 yes yes yes yes not processed not processed not processed not processed - - - -20191128 20191128 20191128 20191128 yes yes yes yes not processed not processed not processed not processed - - - -20191204 20191204 20191204 20191204 yes yes yes yes not processed not processed not processed not processed - - - -20191210 20191210 20191210 20191210 yes yes yes yes not processed not processed not processed not processed - - - -20191216 20191216 20191216 20191216 yes yes yes yes not processed not processed not processed not processed - - - -20191222 20191222 20191222 20191222 yes yes yes yes not processed not processed not processed not processed - - - -20191228 20191228 20191228 20191228 yes yes yes yes not processed not processed not processed not processed - - - -20200103 20200103 20200103 20200103 yes yes yes yes not processed not processed not processed not processed - - - -20200109 20200109 20200109 20200109 yes yes yes yes not processed not processed not processed not processed - - - -20200115 20200115 20200115 20200115 yes yes yes yes not processed not processed not processed not processed - - - -20200121 20200121 20200121 20200121 yes yes yes yes not processed not processed not processed not processed - - - -20200127 20200127 20200127 20200127 yes yes yes yes not processed not processed not processed not processed - - - -20200202 20200202 20200202 20200202 yes yes yes yes not processed not processed not processed not processed - - - -20200208 20200208 20200208 20200208 yes yes yes yes not processed not processed not processed not processed - - - -20200214 20200214 20200214 20200214 yes yes yes yes not processed not processed not processed not processed - - - -20200220 20200220 20200220 20200220 yes yes yes yes not processed not processed not processed not processed - - - -20200226 20200226 20200226 20200226 yes yes yes yes not processed not processed not processed not processed - - - -20200303 20200303 20200303 20200303 yes yes yes yes not processed not processed not processed not processed - - - -20200309 20200309 20200309 20200309 yes yes yes yes not processed not processed not processed not processed - - - -20200315 20200315 20200315 20200315 yes yes yes yes not processed not processed not processed not processed - - - -20200321 20200321 20200321 20200321 yes yes yes yes not processed not processed not processed not processed - - - -20200402 20200402 20200402 20200402 yes yes yes yes not processed not processed not processed not processed - - - -20200408 20200408 20200408 20200408 yes yes yes yes not processed not processed not processed not processed - - - -20200414 20200414 20200414 20200414 yes yes yes yes not processed not processed not processed not processed - - - -20200420 20200420 20200420 20200420 yes yes yes yes not processed not processed not processed not processed - - - -20200426 20200426 20200426 20200426 yes yes yes yes not processed not processed not processed not processed - - - -20200502 20200502 20200502 20200502 yes yes yes yes not processed not processed not processed not processed - - - -20200508 20200508 20200508 20200508 yes yes yes yes not processed not processed not processed not processed - - - -20200514 20200514 20200514 20200514 yes yes yes yes not processed not processed not processed not processed - - - -20200520 20200520 20200520 20200520 yes yes yes yes not processed not processed not processed not processed - - - -20200526 20200526 20200526 20200526 yes yes yes yes not processed not processed not processed not processed - - - -20200601 20200601 20200601 20200601 yes yes yes yes not processed not processed not processed not processed - - - -20200607 20200607 20200607 20200607 yes yes yes yes not processed not processed not processed not processed - - - -20200613 20200613 20200613 20200613 yes yes yes yes not processed not processed not processed not processed - - - -20200619 20200619 20200619 20200619 yes yes yes yes not processed not processed not processed not processed - - - -20200625 20200625 20200625 20200625 yes yes yes yes not processed not processed not processed not processed - - - -20200701 20200701 20200701 20200701 yes yes yes yes not processed not processed not processed not processed - - - -20200707 20200707 20200707 20200707 yes yes yes yes not processed not processed not processed not processed - - - -20200713 20200713 20200713 20200713 yes yes yes yes not processed not processed not processed not processed - - - -20200719 20200719 20200719 20200719 yes yes yes yes not processed not processed not processed not processed - - - -20200725 20200725 20200725 20200725 yes yes yes yes not processed not processed not processed not processed - - - -20200731 20200731 20200731 20200731 yes yes yes yes not processed not processed not processed not processed - - - -20200806 20200806 20200806 20200806 yes yes yes yes not processed not processed not processed not processed - - - -20200812 20200812 20200812 20200812 yes yes yes yes not processed not processed not processed not processed - - - -20200818 20200818 20200818 20200818 yes yes yes yes not processed not processed not processed not processed - - - -20200824 20200824 20200824 20200824 yes yes yes yes not processed not processed not processed not processed - - - -20200830 20200830 20200830 20200830 yes yes yes yes not processed not processed not processed not processed - - - -20200905 20200905 20200905 20200905 yes yes yes yes not processed not processed not processed not processed - - - -20200911 20200911 20200911 20200911 yes yes yes yes not processed not processed not processed not processed - - - -20200917 20200917 20200917 20200917 yes yes yes yes not processed not processed not processed not processed - - - -20200923 20200923 20200923 20200923 yes yes yes yes not processed not processed not processed not processed - - - -20200929 20200929 20200929 20200929 yes yes yes yes not processed not processed not processed not processed - - - -20201005 20201005 20201005 20201005 yes yes yes yes not processed not processed not processed not processed - - - -20201011 20201011 20201011 20201011 yes yes yes yes not processed not processed not processed not processed - - - -20201017 20201017 20201017 20201017 yes yes yes yes not processed not processed not processed not processed - - - -20201023 20201023 20201023 20201023 yes yes yes yes not processed not processed not processed not processed - - - -20201029 20201029 20201029 20201029 yes yes yes yes not processed not processed not processed not processed - - - -20201104 20201104 20201104 20201104 yes yes yes yes not processed not processed not processed not processed - - - -20201110 20201110 20201110 20201110 yes yes yes yes not processed not processed not processed not processed - - - -20201116 20201116 20201116 20201116 yes yes yes yes not processed not processed not processed not processed - - - -20201122 20201122 20201122 20201122 yes yes yes yes not processed not processed not processed not processed - - - -20201128 20201128 20201128 20201128 yes yes yes yes not processed not processed not processed not processed - - - -20201204 20201204 20201204 20201204 yes yes yes yes not processed not processed not processed not processed - - - -20201210 20201210 20201210 20201210 yes yes yes yes not processed not processed not processed not processed - - - -20201216 20201216 20201216 20201216 yes yes yes yes not processed not processed not processed not processed - - - -20201222 20201222 20201222 20201222 yes yes yes yes not processed not processed not processed not processed - - - -20201228 20201228 20201228 20201228 yes yes yes yes not processed not processed not processed not processed - - - -20210103 20210103 20210103 20210103 yes yes yes yes not processed not processed not processed not processed - - - -20210109 20210109 20210109 20210109 yes yes yes yes not processed not processed not processed not processed - - - -20210115 20210115 20210115 20210115 yes yes yes yes not processed not processed not processed not processed - - - -20210121 20210121 20210121 20210121 yes yes yes yes not processed not processed not processed not processed - - - -20210127 20210127 20210127 20210127 yes yes yes yes not processed not processed not processed not processed - - - -20210202 20210202 20210202 20210202 yes yes yes yes not processed not processed not processed not processed - - - -20210208 20210208 20210208 20210208 yes yes yes yes not processed not processed not processed not processed - - - -20210214 20210214 20210214 20210214 yes yes yes yes not processed not processed not processed not processed - - - -20210220 20210220 20210220 20210220 yes yes yes yes not processed not processed not processed not processed - - - -20210226 20210226 20210226 20210226 yes yes yes yes not processed not processed not processed not processed - - - -20210304 20210304 20210304 20210304 yes yes yes yes not processed not processed not processed not processed - - - -20210310 20210310 20210310 20210310 yes yes yes yes not processed not processed not processed not processed - - - -20210316 20210316 20210316 20210316 yes yes yes yes not processed not processed not processed not processed - - - -20210322 20210322 20210322 20210322 yes yes yes yes not processed not processed not processed not processed - - - -20210328 20210328 20210328 20210328 yes yes yes yes not processed not processed not processed not processed - - - -20210403 20210403 20210403 20210403 yes yes yes yes not processed not processed not processed not processed - - - -20210409 20210409 20210409 20210409 yes yes yes yes not processed not processed not processed not processed - - - -20210415 20210415 20210415 20210415 yes yes yes yes not processed not processed not processed not processed - - - -20210421 20210421 20210421 20210421 yes yes yes yes not processed not processed not processed not processed - - - -20210427 20210427 20210427 20210427 yes yes yes yes not processed not processed not processed not processed - - - -20210503 20210503 20210503 20210503 yes yes yes yes not processed not processed not processed not processed - - - -20210509 20210509 20210509 20210509 yes yes yes yes not processed not processed not processed not processed - - - -20210515 20210515 20210515 20210515 yes yes yes yes not processed not processed not processed not processed - - - -20210521 20210521 20210521 20210521 yes yes yes yes not processed not processed not processed not processed - - - -20210527 20210527 20210527 20210527 yes yes yes yes not processed not processed not processed not processed - - - -20210602 20210602 20210602 20210602 yes yes yes yes not processed not processed not processed not processed - - - -20210608 20210608 20210608 20210608 yes yes yes yes not processed not processed not processed not processed - - - -20210614 20210614 20210614 20210614 yes yes yes yes not processed not processed not processed not processed - - - -20210620 20210620 20210620 20210620 yes yes yes yes not processed not processed not processed not processed - - - -20210626 20210626 20210626 20210626 yes yes yes yes not processed not processed not processed not processed - - - -20210702 20210702 20210702 20210702 yes yes yes yes not processed not processed not processed not processed - - - -20210708 20210708 20210708 20210708 yes yes yes yes not processed not processed not processed not processed - - - -20210714 20210714 20210714 20210714 yes yes yes yes not processed not processed not processed not processed - - - -20210720 20210720 20210720 20210720 yes yes yes yes not processed not processed not processed not processed - - - -20210726 20210726 20210726 20210726 yes yes yes yes not processed not processed not processed not processed - - - -20210801 20210801 20210801 20210801 yes yes yes yes not processed not processed not processed not processed - - - -20210807 20210807 20210807 20210807 yes yes yes yes not processed not processed not processed not processed - - - -20210813 20210813 20210813 20210813 yes yes yes yes not processed not processed not processed not processed - - - -20210819 20210819 20210819 20210819 yes yes yes yes not processed not processed not processed not processed - - - -20210825 20210825 20210825 20210825 yes yes yes yes not processed not processed not processed not processed - - - -20210831 20210831 20210831 20210831 yes yes yes yes not processed not processed not processed not processed - - - -20210906 20210906 20210906 20210906 yes yes yes yes not processed not processed not processed not processed - - - -20210912 20210912 20210912 20210912 yes yes yes yes processed with errors processed with errors processed with errors processed with errors to processto processto processto process - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(57)LiCSAlert_aux_figures() - 55  - 56  # 1: do the plots ----> 57  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 58  figure_type, figure_out_dir) - 59  plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental", -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(57)LiCSAlert_aux_figures() - 55  - 56  # 1: do the plots ----> 57  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 58  figure_type, figure_out_dir) - 59  plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental", -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(57)LiCSAlert_aux_figures() - 55  - 56  # 1: do the plots ----> 57  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 58  figure_type, figure_out_dir) - 59  plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental", -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(57)LiCSAlert_aux_figures() - 55  - 56  # 1: do the plots ----> 57  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 58  figure_type, figure_out_dir) - 59  plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental", - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(171)LiCSAlert_monitoring_mode() - 169  from licsalert.plotting import LiCSAlert_aux_figures - 170  ---> 171  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 172  figure_type = figure_type, figure_out_dir = volcano_dir / processing_date) - 173  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(171)LiCSAlert_monitoring_mode() - 169  from licsalert.plotting import LiCSAlert_aux_figures - 170  ---> 171  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 172  figure_type = figure_type, figure_out_dir = volcano_dir / processing_date) - 173  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(171)LiCSAlert_monitoring_mode() - 169  from licsalert.plotting import LiCSAlert_aux_figures - 170  ---> 171  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 172  figure_type = figure_type, figure_out_dir = volcano_dir / processing_date) - 173  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(171)LiCSAlert_monitoring_mode() - 169  from licsalert.plotting import LiCSAlert_aux_figures - 170  ---> 171  LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - 172  figure_type = figure_type, figure_out_dir = volcano_dir / processing_date) - 173  - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(57)LiCSAlert_aux_figures() - 55  - 56  # 1: do the plots ----> 57  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 58  figure_type, figure_out_dir) - 59  plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental", -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(57)LiCSAlert_aux_figures() - 55  - 56  # 1: do the plots ----> 57  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 58  figure_type, figure_out_dir) - 59  plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental", -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(57)LiCSAlert_aux_figures() - 55  - 56  # 1: do the plots ----> 57  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 58  figure_type, figure_out_dir) - 59  plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental", -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(57)LiCSAlert_aux_figures() - 55  - 56  # 1: do the plots ----> 57  plot_1_image(np.sum(displacement_r2_current['incremental'], axis = 0), displacement_r2_current['mask'], "01_cumulative", - 58  figure_type, figure_out_dir) - 59  plot_1_image(displacement_r2_current['incremental'][-1, :], displacement_r2_current['mask'], "02_incremental", - - - - -************ KeyError: 'ifg_date'KeyError: 'ifg_date'KeyError: 'ifg_date'KeyError: 'ifg_date' - - - -************ IndexError: list index out of rangeIndexError: list index out of rangeIndexError: list index out of rangeIndexError: list index out of range - - - -Reloaded modules: licsalert, licsalert.monitoring_functions, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plottingReloaded modules: licsalert, licsalert.monitoring_functions, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plottingReloaded modules: licsalert, licsalert.monitoring_functions, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plottingReloaded modules: licsalert, licsalert.monitoring_functions, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plotting - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:08:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:08:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:08:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:08:10 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:08:10 - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - -20141031 20141031 20141031 20141031 20141031 no no no no no - - - - -20141218 20141218 20141218 20141218 20141218 no no no no no - - - - -20150111 20150111 20150111 20150111 20150111 no no no no no - - - - -20150123 20150123 20150123 20150123 20150123 no no no no no - - - - -20150216 20150216 20150216 20150216 20150216 no no no no no - - - - -20150228 20150228 20150228 20150228 20150228 no no no no no - - - - -20150312 20150312 20150312 20150312 20150312 no no no no no - - - - -20150324 20150324 20150324 20150324 20150324 no no no no no - - - - -20150405 20150405 20150405 20150405 20150405 no no no no no - - - - -20150429 20150429 20150429 20150429 20150429 no no no no no - - - - -20150511 20150511 20150511 20150511 20150511 no no no no no - - - - -20150523 20150523 20150523 20150523 20150523 no no no no no - - - - -20150604 20150604 20150604 20150604 20150604 no no no no no - - - - -20150710 20150710 20150710 20150710 20150710 no no no no no - - - - -20150722 20150722 20150722 20150722 20150722 no no no no no - - - - -20150815 20150815 20150815 20150815 20150815 no no no no no - - - - -20150920 20150920 20150920 20150920 20150920 no no no no no - - - - -20151002 20151002 20151002 20151002 20151002 no no no no no - - - - -20151014 20151014 20151014 20151014 20151014 no no no no no - - - - -20151107 20151107 20151107 20151107 20151107 no no no no no - - - - -20151119 20151119 20151119 20151119 20151119 no no no no no - - - - -20151201 20151201 20151201 20151201 20151201 no no no no no - - - - -20151213 20151213 20151213 20151213 20151213 no no no no no - - - - -20151225 20151225 20151225 20151225 20151225 no no no no no - - - - -20160106 20160106 20160106 20160106 20160106 no no no no no - - - - -20160118 20160118 20160118 20160118 20160118 no no no no no - - - - -20160211 20160211 20160211 20160211 20160211 no no no no no - - - - -20160223 20160223 20160223 20160223 20160223 no no no no no - - - - -20160306 20160306 20160306 20160306 20160306 no no no no no - - - - -20160318 20160318 20160318 20160318 20160318 no no no no no - - - - -20160330 20160330 20160330 20160330 20160330 no no no no no - - - - -20160411 20160411 20160411 20160411 20160411 no no no no no - - - - -20160505 20160505 20160505 20160505 20160505 no no no no no - - - - -20160517 20160517 20160517 20160517 20160517 no no no no no - - - - -20160529 20160529 20160529 20160529 20160529 no no no no no - - - - -20160610 20160610 20160610 20160610 20160610 no no no no no - - - - -20160704 20160704 20160704 20160704 20160704 no no no no no - - - - -20160716 20160716 20160716 20160716 20160716 no no no no no - - - - -20160728 20160728 20160728 20160728 20160728 no no no no no - - - - -20160809 20160809 20160809 20160809 20160809 no no no no no - - - - -20160821 20160821 20160821 20160821 20160821 no no no no no - - - - -20160902 20160902 20160902 20160902 20160902 no no no no no - - - - -20160914 20160914 20160914 20160914 20160914 no no no no no - - - - -20160926 20160926 20160926 20160926 20160926 no no no no no - - - - -20161002 20161002 20161002 20161002 20161002 no no no no no - - - - -20161008 20161008 20161008 20161008 20161008 no no no no no - - - - -20161014 20161014 20161014 20161014 20161014 no no no no no - - - - -20161020 20161020 20161020 20161020 20161020 no no no no no - - - - -20161026 20161026 20161026 20161026 20161026 no no no no no - - - - -20161101 20161101 20161101 20161101 20161101 no no no no no - - - - -20161107 20161107 20161107 20161107 20161107 no no no no no - - - - -20161113 20161113 20161113 20161113 20161113 no no no no no - - - - -20161119 20161119 20161119 20161119 20161119 no no no no no - - - - -20161201 20161201 20161201 20161201 20161201 no no no no no - - - - -20161207 20161207 20161207 20161207 20161207 no no no no no - - - - -20161213 20161213 20161213 20161213 20161213 no no no no no - - - - -20161219 20161219 20161219 20161219 20161219 no no no no no - - - - -20161225 20161225 20161225 20161225 20161225 no no no no no - - - - -20161231 20161231 20161231 20161231 20161231 no no no no no - - - - -20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes processed with errors processed with errors processed with errors processed with errors processed with errors to processto processto processto processto process - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plotting, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plotting, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plotting, licsalert.monitoring_functionsReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.plotting, licsalert.monitoring_functions - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:10:26 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:10:26 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:10:26 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:10:26 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:10:26 - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - -20141031 20141031 20141031 20141031 20141031 no no no no no - - - - -20141218 20141218 20141218 20141218 20141218 no no no no no - - - - -20150111 20150111 20150111 20150111 20150111 no no no no no - - - - -20150123 20150123 20150123 20150123 20150123 no no no no no - - - - -20150216 20150216 20150216 20150216 20150216 no no no no no - - - - -20150228 20150228 20150228 20150228 20150228 no no no no no - - - - -20150312 20150312 20150312 20150312 20150312 no no no no no - - - - -20150324 20150324 20150324 20150324 20150324 no no no no no - - - - -20150405 20150405 20150405 20150405 20150405 no no no no no - - - - -20150429 20150429 20150429 20150429 20150429 no no no no no - - - - -20150511 20150511 20150511 20150511 20150511 no no no no no - - - - -20150523 20150523 20150523 20150523 20150523 no no no no no - - - - -20150604 20150604 20150604 20150604 20150604 no no no no no - - - - -20150710 20150710 20150710 20150710 20150710 no no no no no - - - - -20150722 20150722 20150722 20150722 20150722 no no no no no - - - - -20150815 20150815 20150815 20150815 20150815 no no no no no - - - - -20150920 20150920 20150920 20150920 20150920 no no no no no - - - - -20151002 20151002 20151002 20151002 20151002 no no no no no - - - - -20151014 20151014 20151014 20151014 20151014 no no no no no - - - - -20151107 20151107 20151107 20151107 20151107 no no no no no - - - - -20151119 20151119 20151119 20151119 20151119 no no no no no - - - - -20151201 20151201 20151201 20151201 20151201 no no no no no - - - - -20151213 20151213 20151213 20151213 20151213 no no no no no - - - - -20151225 20151225 20151225 20151225 20151225 no no no no no - - - - -20160106 20160106 20160106 20160106 20160106 no no no no no - - - - -20160118 20160118 20160118 20160118 20160118 no no no no no - - - - -20160211 20160211 20160211 20160211 20160211 no no no no no - - - - -20160223 20160223 20160223 20160223 20160223 no no no no no - - - - -20160306 20160306 20160306 20160306 20160306 no no no no no - - - - -20160318 20160318 20160318 20160318 20160318 no no no no no - - - - -20160330 20160330 20160330 20160330 20160330 no no no no no - - - - -20160411 20160411 20160411 20160411 20160411 no no no no no - - - - -20160505 20160505 20160505 20160505 20160505 no no no no no - - - - -20160517 20160517 20160517 20160517 20160517 no no no no no - - - - -20160529 20160529 20160529 20160529 20160529 no no no no no - - - - -20160610 20160610 20160610 20160610 20160610 no no no no no - - - - -20160704 20160704 20160704 20160704 20160704 no no no no no - - - - -20160716 20160716 20160716 20160716 20160716 no no no no no - - - - -20160728 20160728 20160728 20160728 20160728 no no no no no - - - - -20160809 20160809 20160809 20160809 20160809 no no no no no - - - - -20160821 20160821 20160821 20160821 20160821 no no no no no - - - - -20160902 20160902 20160902 20160902 20160902 no no no no no - - - - -20160914 20160914 20160914 20160914 20160914 no no no no no - - - - -20160926 20160926 20160926 20160926 20160926 no no no no no - - - - -20161002 20161002 20161002 20161002 20161002 no no no no no - - - - -20161008 20161008 20161008 20161008 20161008 no no no no no - - - - -20161014 20161014 20161014 20161014 20161014 no no no no no - - - - -20161020 20161020 20161020 20161020 20161020 no no no no no - - - - -20161026 20161026 20161026 20161026 20161026 no no no no no - - - - -20161101 20161101 20161101 20161101 20161101 no no no no no - - - - -20161107 20161107 20161107 20161107 20161107 no no no no no - - - - -20161113 20161113 20161113 20161113 20161113 no no no no no - - - - -20161119 20161119 20161119 20161119 20161119 no no no no no - - - - -20161201 20161201 20161201 20161201 20161201 no no no no no - - - - -20161207 20161207 20161207 20161207 20161207 no no no no no - - - - -20161213 20161213 20161213 20161213 20161213 no no no no no - - - - -20161219 20161219 20161219 20161219 20161219 no no no no no - - - - -20161225 20161225 20161225 20161225 20161225 no no no no no - - - - -20161231 20161231 20161231 20161231 20161231 no no no no no - - - - -20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes not processed not processed not processed not processed not processed - - - - -20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes processed with errors processed with errors processed with errors processed with errors processed with errors to processto processto processto processto process - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(149)LiCSAlert_monitoring_mode() - 147  - 148  # 4c: Main loop to run LiCSAlert for each date that is required ---> 149  for processing_date in LiCSAlert_status['to_process']: # - 150  print(f"Running LiCSAlert for {processing_date}") - 151  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(149)LiCSAlert_monitoring_mode() - 147  - 148  # 4c: Main loop to run LiCSAlert for each date that is required ---> 149  for processing_date in LiCSAlert_status['to_process']: # - 150  print(f"Running LiCSAlert for {processing_date}") - 151  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(149)LiCSAlert_monitoring_mode() - 147  - 148  # 4c: Main loop to run LiCSAlert for each date that is required ---> 149  for processing_date in LiCSAlert_status['to_process']: # - 150  print(f"Running LiCSAlert for {processing_date}") - 151  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(149)LiCSAlert_monitoring_mode() - 147  - 148  # 4c: Main loop to run LiCSAlert for each date that is required ---> 149  for processing_date in LiCSAlert_status['to_process']: # - 150  print(f"Running LiCSAlert for {processing_date}") - 151  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(149)LiCSAlert_monitoring_mode() - 147  - 148  # 4c: Main loop to run LiCSAlert for each date that is required ---> 149  for processing_date in LiCSAlert_status['to_process']: # - 150  print(f"Running LiCSAlert for {processing_date}") - 151  ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. - - - - - -*************** NameError: name 'LiCS' is not definedNameError: name 'LiCS' is not definedNameError: name 'LiCS' is not definedNameError: name 'LiCS' is not definedNameError: name 'LiCS' is not defined - - - - -*************** NameError: name 'LiCSAlert_to_process' is not definedNameError: name 'LiCSAlert_to_process' is not definedNameError: name 'LiCSAlert_to_process' is not definedNameError: name 'LiCSAlert_to_process' is not definedNameError: name 'LiCSAlert_to_process' is not defined - - - - -*************** ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py)ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py)ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py)ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py)ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py) - - - - -*************** ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py)ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py)ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py)ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py)ImportError: cannot import name 'plot_1_image' from 'licsalert.plotting' (/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py) - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plottingReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plottingReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plottingReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plottingReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plotting - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:17:00 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:17:00 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:17:00 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:17:00 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:17:00 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:17:00 - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - - -20141031 20141031 20141031 20141031 20141031 20141031 no no no no no no - - - - - -20141218 20141218 20141218 20141218 20141218 20141218 no no no no no no - - - - - -20150111 20150111 20150111 20150111 20150111 20150111 no no no no no no - - - - - -20150123 20150123 20150123 20150123 20150123 20150123 no no no no no no - - - - - -20150216 20150216 20150216 20150216 20150216 20150216 no no no no no no - - - - - -20150228 20150228 20150228 20150228 20150228 20150228 no no no no no no - - - - - -20150312 20150312 20150312 20150312 20150312 20150312 no no no no no no - - - - - -20150324 20150324 20150324 20150324 20150324 20150324 no no no no no no - - - - - -20150405 20150405 20150405 20150405 20150405 20150405 no no no no no no - - - - - -20150429 20150429 20150429 20150429 20150429 20150429 no no no no no no - - - - - -20150511 20150511 20150511 20150511 20150511 20150511 no no no no no no - - - - - -20150523 20150523 20150523 20150523 20150523 20150523 no no no no no no - - - - - -20150604 20150604 20150604 20150604 20150604 20150604 no no no no no no - - - - - -20150710 20150710 20150710 20150710 20150710 20150710 no no no no no no - - - - - -20150722 20150722 20150722 20150722 20150722 20150722 no no no no no no - - - - - -20150815 20150815 20150815 20150815 20150815 20150815 no no no no no no - - - - - -20150920 20150920 20150920 20150920 20150920 20150920 no no no no no no - - - - - -20151002 20151002 20151002 20151002 20151002 20151002 no no no no no no - - - - - -20151014 20151014 20151014 20151014 20151014 20151014 no no no no no no - - - - - -20151107 20151107 20151107 20151107 20151107 20151107 no no no no no no - - - - - -20151119 20151119 20151119 20151119 20151119 20151119 no no no no no no - - - - - -20151201 20151201 20151201 20151201 20151201 20151201 no no no no no no - - - - - -20151213 20151213 20151213 20151213 20151213 20151213 no no no no no no - - - - - -20151225 20151225 20151225 20151225 20151225 20151225 no no no no no no - - - - - -20160106 20160106 20160106 20160106 20160106 20160106 no no no no no no - - - - - -20160118 20160118 20160118 20160118 20160118 20160118 no no no no no no - - - - - -20160211 20160211 20160211 20160211 20160211 20160211 no no no no no no - - - - - -20160223 20160223 20160223 20160223 20160223 20160223 no no no no no no - - - - - -20160306 20160306 20160306 20160306 20160306 20160306 no no no no no no - - - - - -20160318 20160318 20160318 20160318 20160318 20160318 no no no no no no - - - - - -20160330 20160330 20160330 20160330 20160330 20160330 no no no no no no - - - - - -20160411 20160411 20160411 20160411 20160411 20160411 no no no no no no - - - - - -20160505 20160505 20160505 20160505 20160505 20160505 no no no no no no - - - - - -20160517 20160517 20160517 20160517 20160517 20160517 no no no no no no - - - - - -20160529 20160529 20160529 20160529 20160529 20160529 no no no no no no - - - - - -20160610 20160610 20160610 20160610 20160610 20160610 no no no no no no - - - - - -20160704 20160704 20160704 20160704 20160704 20160704 no no no no no no - - - - - -20160716 20160716 20160716 20160716 20160716 20160716 no no no no no no - - - - - -20160728 20160728 20160728 20160728 20160728 20160728 no no no no no no - - - - - -20160809 20160809 20160809 20160809 20160809 20160809 no no no no no no - - - - - -20160821 20160821 20160821 20160821 20160821 20160821 no no no no no no - - - - - -20160902 20160902 20160902 20160902 20160902 20160902 no no no no no no - - - - - -20160914 20160914 20160914 20160914 20160914 20160914 no no no no no no - - - - - -20160926 20160926 20160926 20160926 20160926 20160926 no no no no no no - - - - - -20161002 20161002 20161002 20161002 20161002 20161002 no no no no no no - - - - - -20161008 20161008 20161008 20161008 20161008 20161008 no no no no no no - - - - - -20161014 20161014 20161014 20161014 20161014 20161014 no no no no no no - - - - - -20161020 20161020 20161020 20161020 20161020 20161020 no no no no no no - - - - - -20161026 20161026 20161026 20161026 20161026 20161026 no no no no no no - - - - - -20161101 20161101 20161101 20161101 20161101 20161101 no no no no no no - - - - - -20161107 20161107 20161107 20161107 20161107 20161107 no no no no no no - - - - - -20161113 20161113 20161113 20161113 20161113 20161113 no no no no no no - - - - - -20161119 20161119 20161119 20161119 20161119 20161119 no no no no no no - - - - - -20161201 20161201 20161201 20161201 20161201 20161201 no no no no no no - - - - - -20161207 20161207 20161207 20161207 20161207 20161207 no no no no no no - - - - - -20161213 20161213 20161213 20161213 20161213 20161213 no no no no no no - - - - - -20161219 20161219 20161219 20161219 20161219 20161219 no no no no no no - - - - - -20161225 20161225 20161225 20161225 20161225 20161225 no no no no no no - - - - - -20161231 20161231 20161231 20161231 20161231 20161231 no no no no no no - - - - - -20170112 20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170118 20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170124 20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170130 20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170205 20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170211 20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170223 20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170301 20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170307 20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170313 20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170319 20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170325 20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170331 20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170406 20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170412 20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170418 20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170424 20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170430 20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170506 20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170512 20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170518 20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170524 20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170530 20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170605 20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170611 20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170617 20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170623 20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170629 20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170705 20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170711 20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170717 20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170723 20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170729 20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170804 20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170816 20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170822 20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170828 20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170903 20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170909 20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170915 20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170921 20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20170927 20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171009 20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171015 20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171021 20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171027 20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171102 20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171108 20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171114 20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171120 20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171202 20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171208 20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171214 20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20171226 20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180101 20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180107 20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180113 20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180119 20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180125 20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180131 20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180206 20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180218 20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180224 20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180302 20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180308 20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180314 20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180320 20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180326 20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180401 20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180407 20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180413 20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180419 20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180425 20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180501 20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180507 20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180513 20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180519 20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180525 20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180531 20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180606 20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180612 20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180618 20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180630 20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180712 20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180718 20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180724 20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180730 20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180805 20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180811 20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180817 20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180823 20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180829 20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180904 20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180910 20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180916 20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180922 20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20180928 20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181004 20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181010 20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181016 20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181022 20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181028 20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181109 20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181115 20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181121 20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181127 20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181203 20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181209 20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181215 20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181221 20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20181227 20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190102 20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190108 20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190114 20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190120 20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190126 20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190201 20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190207 20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190213 20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190225 20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190303 20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190309 20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190321 20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190402 20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190408 20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190414 20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190420 20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190426 20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190502 20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190508 20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190520 20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190526 20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190601 20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190607 20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190613 20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190625 20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190701 20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190707 20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190713 20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190719 20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190725 20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190731 20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190806 20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190812 20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190818 20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190824 20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190830 20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190905 20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190911 20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190917 20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20190923 20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191005 20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191011 20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191017 20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191023 20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191029 20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191104 20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191116 20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191122 20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191128 20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191204 20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191210 20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191216 20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191222 20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20191228 20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200103 20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200109 20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200115 20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200121 20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200127 20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200202 20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200208 20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200214 20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200220 20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200226 20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200303 20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200309 20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200315 20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200321 20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200402 20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200408 20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200414 20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200420 20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200426 20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200502 20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200508 20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200514 20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200520 20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200526 20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200601 20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200607 20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200613 20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200619 20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200625 20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200701 20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200707 20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200713 20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200719 20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200725 20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200731 20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200806 20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200812 20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200818 20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200824 20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200830 20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200905 20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200911 20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200917 20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200923 20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20200929 20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201005 20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201011 20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201017 20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201023 20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201029 20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201104 20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201110 20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201116 20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201122 20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201128 20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201204 20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201210 20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201216 20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201222 20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20201228 20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210103 20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210109 20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210115 20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210121 20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210127 20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210202 20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210208 20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210214 20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210220 20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210226 20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210304 20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210310 20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210316 20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210322 20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210328 20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210403 20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210409 20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210415 20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210421 20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210427 20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210503 20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210509 20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210515 20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210521 20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210527 20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210602 20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210608 20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210614 20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210620 20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210626 20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210702 20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210708 20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210714 20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210720 20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210726 20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210801 20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210807 20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210813 20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210819 20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210825 20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210831 20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210906 20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed - - - - - -20210912 20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes yes processed with errors processed with errors processed with errors processed with errors processed with errors processed with errors to processto processto processto processto processto process - - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - - -The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. The folder 20210912 appears to exists already. This is usually due to the date not having all the required LiCSAlert products, and LiCSAlert is now trying to fill this date again. - - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - - -************************************************************************************************************************************************************************************************************************************************ - - - - - -Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging...Entering post mortem debugging... - - - - - -************************************************************************************************************************************************************************************************************************************************ - - - - - -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): - - - - - - - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - [... skipping 21 hidden frame(s)] - - - - - - - /tmp/ipykernel_4942/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_4942/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_4942/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_4942/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_4942/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - /tmp/ipykernel_4942/4077632556.py(1)() -----> 1 runfile('/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py', wdir='/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub', post_mortem=True) - - - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/customize/spydercustomize.py(524)runfile() - 522  current_namespace: if true, run the file in the current namespace - 523  """ ---> 524  return _exec_file( - 525  filename, args, wdir, namespace, - 526  post_mortem, current_namespace, stack_depth=1) - - - - - - - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - [... skipping 2 hidden frame(s)] - - - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - - - - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - [... skipping 1 hidden frame(s)] - - - - - - - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/spyder_kernels/py3compat.py(356)compat_exec() - 354 def compat_exec(code, globals, locals): - 355  # Wrap exec in a function ---> 356  exec(code, globals, locals) - 357  - 358  - - - - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/LiCSAlert_batch_mode_examples.py(57)() - 55 licsalert_dir = Path("/home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/") - 56  ----> 57 LiCSAlert_monitoring_mode(region = region, volcano = volcano, LiCSAlert_pkg_dir = LiCSAlert_pkg_dir, ICASAR_pkg_dir = ICASAR_pkg_dir, - 58  licsbas_dir = licsbas_dir, licsalert_dir = licsalert_dir, - 59  licsalert_settings = licsalert_settings, icasar_settings = icasar_settings) - - - - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  - - - - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) - - - - - - - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  - /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  - - - - - - -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): -> /home/matthew/anaconda3/envs/licsalert/lib/python3.9/site-packages/numpy/ma/core.py(3387)__setitem__() - 3385  _data[indx.data] = dval - 3386  else: --> 3387  _data[indx] = dval - 3388  _mask[indx] = mval - 3389  elif hasattr(indx, 'dtype') and (indx.dtype == MaskType): - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/aux.py(197)col_to_ma() - 195  source = ma.array(np.zeros(pixel_mask.shape), mask = pixel_mask ) - 196  source.unshare_mask() ---> 197  source[~source.mask] = col.ravel() - 198  return source - 199  - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/plotting.py(72)plot_1_image() - 70  - 71  f, ax = plt.subplots(1,1, figsize = figsize) ----> 72  im = ax.matshow(col_to_ma(im_r1, mask)) - 73  f.colorbar(im, label = 'Displacement (m)') - 74  f.suptitle(title) - - - - - - -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  -> /home/matthew/university_work/crucial_1000gb/03_automatic_detection_algorithm/06_LiCSAlert/00_LiCSAlert_GitHub/licsalert/monitoring_functions.py(179)LiCSAlert_monitoring_mode() - 177  aux_fig_dir = volcano_dir / "aux_figures" - 178  aux_fig_dir.mkdir(parents=True, exist_ok=True) ---> 179  plot_1_image(ma.compressed(displacement_r2['dem']), displacement_r2['mask'], - 180  f"DEM", figure_type = 'png', figure_out_dir = aux_fig_dir, figsize = (18,9)) - 181  - - - - - - -****************** ValueError: NumPy boolean array indexing assignment cannot assign 12600 input values to the 8533 output values where the mask is trueValueError: NumPy boolean array indexing assignment cannot assign 12600 input values to the 8533 output values where the mask is trueValueError: NumPy boolean array indexing assignment cannot assign 12600 input values to the 8533 output values where the mask is trueValueError: NumPy boolean array indexing assignment cannot assign 12600 input values to the 8533 output values where the mask is trueValueError: NumPy boolean array indexing assignment cannot assign 12600 input values to the 8533 output values where the mask is trueValueError: NumPy boolean array indexing assignment cannot assign 12600 input values to the 8533 output values where the mask is true - - - - - -****************** NameError: name 'sources' is not definedNameError: name 'sources' is not definedNameError: name 'sources' is not definedNameError: name 'sources' is not definedNameError: name 'sources' is not definedNameError: name 'sources' is not defined - - - - - -****************** SyntaxError: invalid syntaxSyntaxError: invalid syntaxSyntaxError: invalid syntaxSyntaxError: invalid syntaxSyntaxError: invalid syntaxSyntaxError: invalid syntax - - - - - -****************** SyntaxError: invalid syntaxSyntaxError: invalid syntaxSyntaxError: invalid syntaxSyntaxError: invalid syntaxSyntaxError: invalid syntaxSyntaxError: invalid syntax - - - - - -****************** NameError: name 'plt' is not definedNameError: name 'plt' is not definedNameError: name 'plt' is not definedNameError: name 'plt' is not definedNameError: name 'plt' is not definedNameError: name 'plt' is not defined - - - - - -Reloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plottingReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plottingReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plottingReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plottingReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plottingReloaded modules: licsalert, licsalert.licsalert, licsalert.aux, licsalert.downsample_ifgs, icasar, icasar.icasar_funcs, icasar.aux2, icasar.aux, licsalert.monitoring_functions, licsalert.plotting - - - - - - - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:26:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:26:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:26:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:26:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:26:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:26:14 - - - - -LiCSAlert is being run for campi_flegrei_example at 03/04/2023 16:26:14 - - - - - - -Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments - - - - - - -Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. - - - - - - -LiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsamplingLiCSAlert_preprocessing: mean centering the interferograms before downsampling - - - - - - -Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. - - - - - - -Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary.Only the last LiCSAlert figure has been requested, so removing any previous figures from the LiCSAlert status dictionary. - - - - - - -LiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To processLiCSBAS date Past baseline LiCSAlert To process - - - - - - -20141031 20141031 20141031 20141031 20141031 20141031 20141031 no no no no no no no - - - - - - -20141218 20141218 20141218 20141218 20141218 20141218 20141218 no no no no no no no - - - - - - -20150111 20150111 20150111 20150111 20150111 20150111 20150111 no no no no no no no - - - - - - -20150123 20150123 20150123 20150123 20150123 20150123 20150123 no no no no no no no - - - - - - -20150216 20150216 20150216 20150216 20150216 20150216 20150216 no no no no no no no - - - - - - -20150228 20150228 20150228 20150228 20150228 20150228 20150228 no no no no no no no - - - - - - -20150312 20150312 20150312 20150312 20150312 20150312 20150312 no no no no no no no - - - - - - -20150324 20150324 20150324 20150324 20150324 20150324 20150324 no no no no no no no - - - - - - -20150405 20150405 20150405 20150405 20150405 20150405 20150405 no no no no no no no - - - - - - -20150429 20150429 20150429 20150429 20150429 20150429 20150429 no no no no no no no - - - - - - -20150511 20150511 20150511 20150511 20150511 20150511 20150511 no no no no no no no - - - - - - -20150523 20150523 20150523 20150523 20150523 20150523 20150523 no no no no no no no - - - - - - -20150604 20150604 20150604 20150604 20150604 20150604 20150604 no no no no no no no - - - - - - -20150710 20150710 20150710 20150710 20150710 20150710 20150710 no no no no no no no - - - - - - -20150722 20150722 20150722 20150722 20150722 20150722 20150722 no no no no no no no - - - - - - -20150815 20150815 20150815 20150815 20150815 20150815 20150815 no no no no no no no - - - - - - -20150920 20150920 20150920 20150920 20150920 20150920 20150920 no no no no no no no - - - - - - -20151002 20151002 20151002 20151002 20151002 20151002 20151002 no no no no no no no - - - - - - -20151014 20151014 20151014 20151014 20151014 20151014 20151014 no no no no no no no - - - - - - -20151107 20151107 20151107 20151107 20151107 20151107 20151107 no no no no no no no - - - - - - -20151119 20151119 20151119 20151119 20151119 20151119 20151119 no no no no no no no - - - - - - -20151201 20151201 20151201 20151201 20151201 20151201 20151201 no no no no no no no - - - - - - -20151213 20151213 20151213 20151213 20151213 20151213 20151213 no no no no no no no - - - - - - -20151225 20151225 20151225 20151225 20151225 20151225 20151225 no no no no no no no - - - - - - -20160106 20160106 20160106 20160106 20160106 20160106 20160106 no no no no no no no - - - - - - -20160118 20160118 20160118 20160118 20160118 20160118 20160118 no no no no no no no - - - - - - -20160211 20160211 20160211 20160211 20160211 20160211 20160211 no no no no no no no - - - - - - -20160223 20160223 20160223 20160223 20160223 20160223 20160223 no no no no no no no - - - - - - -20160306 20160306 20160306 20160306 20160306 20160306 20160306 no no no no no no no - - - - - - -20160318 20160318 20160318 20160318 20160318 20160318 20160318 no no no no no no no - - - - - - -20160330 20160330 20160330 20160330 20160330 20160330 20160330 no no no no no no no - - - - - - -20160411 20160411 20160411 20160411 20160411 20160411 20160411 no no no no no no no - - - - - - -20160505 20160505 20160505 20160505 20160505 20160505 20160505 no no no no no no no - - - - - - -20160517 20160517 20160517 20160517 20160517 20160517 20160517 no no no no no no no - - - - - - -20160529 20160529 20160529 20160529 20160529 20160529 20160529 no no no no no no no - - - - - - -20160610 20160610 20160610 20160610 20160610 20160610 20160610 no no no no no no no - - - - - - -20160704 20160704 20160704 20160704 20160704 20160704 20160704 no no no no no no no - - - - - - -20160716 20160716 20160716 20160716 20160716 20160716 20160716 no no no no no no no - - - - - - -20160728 20160728 20160728 20160728 20160728 20160728 20160728 no no no no no no no - - - - - - -20160809 20160809 20160809 20160809 20160809 20160809 20160809 no no no no no no no - - - - - - -20160821 20160821 20160821 20160821 20160821 20160821 20160821 no no no no no no no - - - - - - -20160902 20160902 20160902 20160902 20160902 20160902 20160902 no no no no no no no - - - - - - -20160914 20160914 20160914 20160914 20160914 20160914 20160914 no no no no no no no - - - - - - -20160926 20160926 20160926 20160926 20160926 20160926 20160926 no no no no no no no - - - - - - -20161002 20161002 20161002 20161002 20161002 20161002 20161002 no no no no no no no - - - - - - -20161008 20161008 20161008 20161008 20161008 20161008 20161008 no no no no no no no - - - - - - -20161014 20161014 20161014 20161014 20161014 20161014 20161014 no no no no no no no - - - - - - -20161020 20161020 20161020 20161020 20161020 20161020 20161020 no no no no no no no - - - - - - -20161026 20161026 20161026 20161026 20161026 20161026 20161026 no no no no no no no - - - - - - -20161101 20161101 20161101 20161101 20161101 20161101 20161101 no no no no no no no - - - - - - -20161107 20161107 20161107 20161107 20161107 20161107 20161107 no no no no no no no - - - - - - -20161113 20161113 20161113 20161113 20161113 20161113 20161113 no no no no no no no - - - - - - -20161119 20161119 20161119 20161119 20161119 20161119 20161119 no no no no no no no - - - - - - -20161201 20161201 20161201 20161201 20161201 20161201 20161201 no no no no no no no - - - - - - -20161207 20161207 20161207 20161207 20161207 20161207 20161207 no no no no no no no - - - - - - -20161213 20161213 20161213 20161213 20161213 20161213 20161213 no no no no no no no - - - - - - -20161219 20161219 20161219 20161219 20161219 20161219 20161219 no no no no no no no - - - - - - -20161225 20161225 20161225 20161225 20161225 20161225 20161225 no no no no no no no - - - - - - -20161231 20161231 20161231 20161231 20161231 20161231 20161231 no no no no no no no - - - - - - -20170112 20170112 20170112 20170112 20170112 20170112 20170112 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170118 20170118 20170118 20170118 20170118 20170118 20170118 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170124 20170124 20170124 20170124 20170124 20170124 20170124 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170130 20170130 20170130 20170130 20170130 20170130 20170130 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170205 20170205 20170205 20170205 20170205 20170205 20170205 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170211 20170211 20170211 20170211 20170211 20170211 20170211 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170223 20170223 20170223 20170223 20170223 20170223 20170223 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170301 20170301 20170301 20170301 20170301 20170301 20170301 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170307 20170307 20170307 20170307 20170307 20170307 20170307 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170313 20170313 20170313 20170313 20170313 20170313 20170313 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170319 20170319 20170319 20170319 20170319 20170319 20170319 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170325 20170325 20170325 20170325 20170325 20170325 20170325 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170331 20170331 20170331 20170331 20170331 20170331 20170331 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170406 20170406 20170406 20170406 20170406 20170406 20170406 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170412 20170412 20170412 20170412 20170412 20170412 20170412 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170418 20170418 20170418 20170418 20170418 20170418 20170418 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170424 20170424 20170424 20170424 20170424 20170424 20170424 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170430 20170430 20170430 20170430 20170430 20170430 20170430 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170506 20170506 20170506 20170506 20170506 20170506 20170506 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170512 20170512 20170512 20170512 20170512 20170512 20170512 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170518 20170518 20170518 20170518 20170518 20170518 20170518 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170524 20170524 20170524 20170524 20170524 20170524 20170524 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170530 20170530 20170530 20170530 20170530 20170530 20170530 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170605 20170605 20170605 20170605 20170605 20170605 20170605 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170611 20170611 20170611 20170611 20170611 20170611 20170611 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170617 20170617 20170617 20170617 20170617 20170617 20170617 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170623 20170623 20170623 20170623 20170623 20170623 20170623 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170629 20170629 20170629 20170629 20170629 20170629 20170629 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170705 20170705 20170705 20170705 20170705 20170705 20170705 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170711 20170711 20170711 20170711 20170711 20170711 20170711 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170717 20170717 20170717 20170717 20170717 20170717 20170717 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170723 20170723 20170723 20170723 20170723 20170723 20170723 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170729 20170729 20170729 20170729 20170729 20170729 20170729 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170804 20170804 20170804 20170804 20170804 20170804 20170804 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170816 20170816 20170816 20170816 20170816 20170816 20170816 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170822 20170822 20170822 20170822 20170822 20170822 20170822 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170828 20170828 20170828 20170828 20170828 20170828 20170828 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170903 20170903 20170903 20170903 20170903 20170903 20170903 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170909 20170909 20170909 20170909 20170909 20170909 20170909 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170915 20170915 20170915 20170915 20170915 20170915 20170915 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170921 20170921 20170921 20170921 20170921 20170921 20170921 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20170927 20170927 20170927 20170927 20170927 20170927 20170927 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171009 20171009 20171009 20171009 20171009 20171009 20171009 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171015 20171015 20171015 20171015 20171015 20171015 20171015 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171021 20171021 20171021 20171021 20171021 20171021 20171021 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171027 20171027 20171027 20171027 20171027 20171027 20171027 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171102 20171102 20171102 20171102 20171102 20171102 20171102 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171108 20171108 20171108 20171108 20171108 20171108 20171108 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171114 20171114 20171114 20171114 20171114 20171114 20171114 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171120 20171120 20171120 20171120 20171120 20171120 20171120 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171202 20171202 20171202 20171202 20171202 20171202 20171202 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171208 20171208 20171208 20171208 20171208 20171208 20171208 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171214 20171214 20171214 20171214 20171214 20171214 20171214 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20171226 20171226 20171226 20171226 20171226 20171226 20171226 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180101 20180101 20180101 20180101 20180101 20180101 20180101 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180107 20180107 20180107 20180107 20180107 20180107 20180107 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180113 20180113 20180113 20180113 20180113 20180113 20180113 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180119 20180119 20180119 20180119 20180119 20180119 20180119 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180125 20180125 20180125 20180125 20180125 20180125 20180125 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180131 20180131 20180131 20180131 20180131 20180131 20180131 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180206 20180206 20180206 20180206 20180206 20180206 20180206 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180218 20180218 20180218 20180218 20180218 20180218 20180218 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180224 20180224 20180224 20180224 20180224 20180224 20180224 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180302 20180302 20180302 20180302 20180302 20180302 20180302 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180308 20180308 20180308 20180308 20180308 20180308 20180308 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180314 20180314 20180314 20180314 20180314 20180314 20180314 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180320 20180320 20180320 20180320 20180320 20180320 20180320 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180326 20180326 20180326 20180326 20180326 20180326 20180326 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180401 20180401 20180401 20180401 20180401 20180401 20180401 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180407 20180407 20180407 20180407 20180407 20180407 20180407 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180413 20180413 20180413 20180413 20180413 20180413 20180413 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180419 20180419 20180419 20180419 20180419 20180419 20180419 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180425 20180425 20180425 20180425 20180425 20180425 20180425 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180501 20180501 20180501 20180501 20180501 20180501 20180501 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180507 20180507 20180507 20180507 20180507 20180507 20180507 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180513 20180513 20180513 20180513 20180513 20180513 20180513 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180519 20180519 20180519 20180519 20180519 20180519 20180519 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180525 20180525 20180525 20180525 20180525 20180525 20180525 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180531 20180531 20180531 20180531 20180531 20180531 20180531 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180606 20180606 20180606 20180606 20180606 20180606 20180606 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180612 20180612 20180612 20180612 20180612 20180612 20180612 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180618 20180618 20180618 20180618 20180618 20180618 20180618 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180630 20180630 20180630 20180630 20180630 20180630 20180630 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180712 20180712 20180712 20180712 20180712 20180712 20180712 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180718 20180718 20180718 20180718 20180718 20180718 20180718 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180724 20180724 20180724 20180724 20180724 20180724 20180724 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180730 20180730 20180730 20180730 20180730 20180730 20180730 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180805 20180805 20180805 20180805 20180805 20180805 20180805 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180811 20180811 20180811 20180811 20180811 20180811 20180811 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180817 20180817 20180817 20180817 20180817 20180817 20180817 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180823 20180823 20180823 20180823 20180823 20180823 20180823 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180829 20180829 20180829 20180829 20180829 20180829 20180829 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180904 20180904 20180904 20180904 20180904 20180904 20180904 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180910 20180910 20180910 20180910 20180910 20180910 20180910 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180916 20180916 20180916 20180916 20180916 20180916 20180916 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180922 20180922 20180922 20180922 20180922 20180922 20180922 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20180928 20180928 20180928 20180928 20180928 20180928 20180928 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181004 20181004 20181004 20181004 20181004 20181004 20181004 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181010 20181010 20181010 20181010 20181010 20181010 20181010 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181016 20181016 20181016 20181016 20181016 20181016 20181016 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181022 20181022 20181022 20181022 20181022 20181022 20181022 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181028 20181028 20181028 20181028 20181028 20181028 20181028 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181109 20181109 20181109 20181109 20181109 20181109 20181109 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181115 20181115 20181115 20181115 20181115 20181115 20181115 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181121 20181121 20181121 20181121 20181121 20181121 20181121 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181127 20181127 20181127 20181127 20181127 20181127 20181127 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181203 20181203 20181203 20181203 20181203 20181203 20181203 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181209 20181209 20181209 20181209 20181209 20181209 20181209 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181215 20181215 20181215 20181215 20181215 20181215 20181215 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181221 20181221 20181221 20181221 20181221 20181221 20181221 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20181227 20181227 20181227 20181227 20181227 20181227 20181227 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190102 20190102 20190102 20190102 20190102 20190102 20190102 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190108 20190108 20190108 20190108 20190108 20190108 20190108 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190114 20190114 20190114 20190114 20190114 20190114 20190114 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190120 20190120 20190120 20190120 20190120 20190120 20190120 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190126 20190126 20190126 20190126 20190126 20190126 20190126 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190201 20190201 20190201 20190201 20190201 20190201 20190201 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190207 20190207 20190207 20190207 20190207 20190207 20190207 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190213 20190213 20190213 20190213 20190213 20190213 20190213 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190225 20190225 20190225 20190225 20190225 20190225 20190225 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190303 20190303 20190303 20190303 20190303 20190303 20190303 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190309 20190309 20190309 20190309 20190309 20190309 20190309 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190321 20190321 20190321 20190321 20190321 20190321 20190321 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190402 20190402 20190402 20190402 20190402 20190402 20190402 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190408 20190408 20190408 20190408 20190408 20190408 20190408 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190414 20190414 20190414 20190414 20190414 20190414 20190414 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190420 20190420 20190420 20190420 20190420 20190420 20190420 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190426 20190426 20190426 20190426 20190426 20190426 20190426 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190502 20190502 20190502 20190502 20190502 20190502 20190502 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190508 20190508 20190508 20190508 20190508 20190508 20190508 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190520 20190520 20190520 20190520 20190520 20190520 20190520 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190526 20190526 20190526 20190526 20190526 20190526 20190526 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190601 20190601 20190601 20190601 20190601 20190601 20190601 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190607 20190607 20190607 20190607 20190607 20190607 20190607 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190613 20190613 20190613 20190613 20190613 20190613 20190613 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190625 20190625 20190625 20190625 20190625 20190625 20190625 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190701 20190701 20190701 20190701 20190701 20190701 20190701 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190707 20190707 20190707 20190707 20190707 20190707 20190707 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190713 20190713 20190713 20190713 20190713 20190713 20190713 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190719 20190719 20190719 20190719 20190719 20190719 20190719 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190725 20190725 20190725 20190725 20190725 20190725 20190725 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190731 20190731 20190731 20190731 20190731 20190731 20190731 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190806 20190806 20190806 20190806 20190806 20190806 20190806 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190812 20190812 20190812 20190812 20190812 20190812 20190812 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190818 20190818 20190818 20190818 20190818 20190818 20190818 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190824 20190824 20190824 20190824 20190824 20190824 20190824 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190830 20190830 20190830 20190830 20190830 20190830 20190830 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190905 20190905 20190905 20190905 20190905 20190905 20190905 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190911 20190911 20190911 20190911 20190911 20190911 20190911 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190917 20190917 20190917 20190917 20190917 20190917 20190917 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20190923 20190923 20190923 20190923 20190923 20190923 20190923 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191005 20191005 20191005 20191005 20191005 20191005 20191005 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191011 20191011 20191011 20191011 20191011 20191011 20191011 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191017 20191017 20191017 20191017 20191017 20191017 20191017 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191023 20191023 20191023 20191023 20191023 20191023 20191023 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191029 20191029 20191029 20191029 20191029 20191029 20191029 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191104 20191104 20191104 20191104 20191104 20191104 20191104 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191116 20191116 20191116 20191116 20191116 20191116 20191116 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191122 20191122 20191122 20191122 20191122 20191122 20191122 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191128 20191128 20191128 20191128 20191128 20191128 20191128 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191204 20191204 20191204 20191204 20191204 20191204 20191204 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191210 20191210 20191210 20191210 20191210 20191210 20191210 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191216 20191216 20191216 20191216 20191216 20191216 20191216 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191222 20191222 20191222 20191222 20191222 20191222 20191222 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20191228 20191228 20191228 20191228 20191228 20191228 20191228 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200103 20200103 20200103 20200103 20200103 20200103 20200103 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200109 20200109 20200109 20200109 20200109 20200109 20200109 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200115 20200115 20200115 20200115 20200115 20200115 20200115 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200121 20200121 20200121 20200121 20200121 20200121 20200121 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200127 20200127 20200127 20200127 20200127 20200127 20200127 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200202 20200202 20200202 20200202 20200202 20200202 20200202 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200208 20200208 20200208 20200208 20200208 20200208 20200208 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200214 20200214 20200214 20200214 20200214 20200214 20200214 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200220 20200220 20200220 20200220 20200220 20200220 20200220 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200226 20200226 20200226 20200226 20200226 20200226 20200226 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200303 20200303 20200303 20200303 20200303 20200303 20200303 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200309 20200309 20200309 20200309 20200309 20200309 20200309 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200315 20200315 20200315 20200315 20200315 20200315 20200315 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200321 20200321 20200321 20200321 20200321 20200321 20200321 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200402 20200402 20200402 20200402 20200402 20200402 20200402 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200408 20200408 20200408 20200408 20200408 20200408 20200408 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200414 20200414 20200414 20200414 20200414 20200414 20200414 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200420 20200420 20200420 20200420 20200420 20200420 20200420 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200426 20200426 20200426 20200426 20200426 20200426 20200426 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200502 20200502 20200502 20200502 20200502 20200502 20200502 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200508 20200508 20200508 20200508 20200508 20200508 20200508 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200514 20200514 20200514 20200514 20200514 20200514 20200514 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200520 20200520 20200520 20200520 20200520 20200520 20200520 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200526 20200526 20200526 20200526 20200526 20200526 20200526 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200601 20200601 20200601 20200601 20200601 20200601 20200601 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200607 20200607 20200607 20200607 20200607 20200607 20200607 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200613 20200613 20200613 20200613 20200613 20200613 20200613 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200619 20200619 20200619 20200619 20200619 20200619 20200619 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200625 20200625 20200625 20200625 20200625 20200625 20200625 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200701 20200701 20200701 20200701 20200701 20200701 20200701 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200707 20200707 20200707 20200707 20200707 20200707 20200707 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200713 20200713 20200713 20200713 20200713 20200713 20200713 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200719 20200719 20200719 20200719 20200719 20200719 20200719 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200725 20200725 20200725 20200725 20200725 20200725 20200725 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200731 20200731 20200731 20200731 20200731 20200731 20200731 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200806 20200806 20200806 20200806 20200806 20200806 20200806 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200812 20200812 20200812 20200812 20200812 20200812 20200812 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200818 20200818 20200818 20200818 20200818 20200818 20200818 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200824 20200824 20200824 20200824 20200824 20200824 20200824 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200830 20200830 20200830 20200830 20200830 20200830 20200830 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200905 20200905 20200905 20200905 20200905 20200905 20200905 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200911 20200911 20200911 20200911 20200911 20200911 20200911 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200917 20200917 20200917 20200917 20200917 20200917 20200917 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200923 20200923 20200923 20200923 20200923 20200923 20200923 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20200929 20200929 20200929 20200929 20200929 20200929 20200929 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201005 20201005 20201005 20201005 20201005 20201005 20201005 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201011 20201011 20201011 20201011 20201011 20201011 20201011 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201017 20201017 20201017 20201017 20201017 20201017 20201017 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201023 20201023 20201023 20201023 20201023 20201023 20201023 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201029 20201029 20201029 20201029 20201029 20201029 20201029 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201104 20201104 20201104 20201104 20201104 20201104 20201104 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201110 20201110 20201110 20201110 20201110 20201110 20201110 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201116 20201116 20201116 20201116 20201116 20201116 20201116 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201122 20201122 20201122 20201122 20201122 20201122 20201122 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201128 20201128 20201128 20201128 20201128 20201128 20201128 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201204 20201204 20201204 20201204 20201204 20201204 20201204 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201210 20201210 20201210 20201210 20201210 20201210 20201210 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201216 20201216 20201216 20201216 20201216 20201216 20201216 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201222 20201222 20201222 20201222 20201222 20201222 20201222 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20201228 20201228 20201228 20201228 20201228 20201228 20201228 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210103 20210103 20210103 20210103 20210103 20210103 20210103 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210109 20210109 20210109 20210109 20210109 20210109 20210109 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210115 20210115 20210115 20210115 20210115 20210115 20210115 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210121 20210121 20210121 20210121 20210121 20210121 20210121 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210127 20210127 20210127 20210127 20210127 20210127 20210127 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210202 20210202 20210202 20210202 20210202 20210202 20210202 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210208 20210208 20210208 20210208 20210208 20210208 20210208 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210214 20210214 20210214 20210214 20210214 20210214 20210214 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210220 20210220 20210220 20210220 20210220 20210220 20210220 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210226 20210226 20210226 20210226 20210226 20210226 20210226 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210304 20210304 20210304 20210304 20210304 20210304 20210304 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210310 20210310 20210310 20210310 20210310 20210310 20210310 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210316 20210316 20210316 20210316 20210316 20210316 20210316 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210322 20210322 20210322 20210322 20210322 20210322 20210322 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210328 20210328 20210328 20210328 20210328 20210328 20210328 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210403 20210403 20210403 20210403 20210403 20210403 20210403 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210409 20210409 20210409 20210409 20210409 20210409 20210409 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210415 20210415 20210415 20210415 20210415 20210415 20210415 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210421 20210421 20210421 20210421 20210421 20210421 20210421 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210427 20210427 20210427 20210427 20210427 20210427 20210427 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210503 20210503 20210503 20210503 20210503 20210503 20210503 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210509 20210509 20210509 20210509 20210509 20210509 20210509 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210515 20210515 20210515 20210515 20210515 20210515 20210515 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210521 20210521 20210521 20210521 20210521 20210521 20210521 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210527 20210527 20210527 20210527 20210527 20210527 20210527 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210602 20210602 20210602 20210602 20210602 20210602 20210602 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210608 20210608 20210608 20210608 20210608 20210608 20210608 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210614 20210614 20210614 20210614 20210614 20210614 20210614 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210620 20210620 20210620 20210620 20210620 20210620 20210620 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210626 20210626 20210626 20210626 20210626 20210626 20210626 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210702 20210702 20210702 20210702 20210702 20210702 20210702 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210708 20210708 20210708 20210708 20210708 20210708 20210708 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210714 20210714 20210714 20210714 20210714 20210714 20210714 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210720 20210720 20210720 20210720 20210720 20210720 20210720 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210726 20210726 20210726 20210726 20210726 20210726 20210726 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210801 20210801 20210801 20210801 20210801 20210801 20210801 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210807 20210807 20210807 20210807 20210807 20210807 20210807 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210813 20210813 20210813 20210813 20210813 20210813 20210813 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210819 20210819 20210819 20210819 20210819 20210819 20210819 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210825 20210825 20210825 20210825 20210825 20210825 20210825 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210831 20210831 20210831 20210831 20210831 20210831 20210831 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210906 20210906 20210906 20210906 20210906 20210906 20210906 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed - - - - - - -20210912 20210912 20210912 20210912 20210912 20210912 20210912 yes yes yes yes yes yes yes not processed not processed not processed not processed not processed not processed not processed to processto processto processto processto processto processto process - - - - - - -LiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: TrueLiCSAlert status: 1) Run ICASAR: False 2) Run LiCSAlert: True - - - - - - -Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. - - - - - - -Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912Running LiCSAlert for 20210912 - - - - - - -There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. There are 326 times (set by time_values), which agrees with the 59 interferograms in ifgs_baseline and 267 in ifgs_monitoring. - - - - - +20170112 yes not processed +20170118 yes not processed +20170124 yes not processed +20170130 yes not processed +20170205 yes not processed +20170211 yes not processed +20170223 yes not processed +20170301 yes not processed +20170307 yes not processed +20170313 yes not processed +20170319 yes not processed +20170325 yes not processed +20170331 yes not processed +20170406 yes not processed +20170412 yes not processed +20170418 yes not processed +20170424 yes not processed +20170430 yes not processed +20170506 yes not processed +20170512 yes not processed +20170518 yes not processed +20170524 yes not processed +20170530 yes not processed +20170605 yes not processed +20170611 yes not processed +20170617 yes not processed +20170623 yes not processed +20170629 yes not processed +20170705 yes not processed +20170711 yes not processed +20170717 yes not processed +20170723 yes not processed +20170729 yes not processed +20170804 yes not processed +20170816 yes not processed +20170822 yes not processed +20170828 yes not processed +20170903 yes not processed +20170909 yes not processed +20170915 yes not processed +20170921 yes not processed +20170927 yes not processed +20171009 yes not processed +20171015 yes not processed +20171021 yes not processed +20171027 yes not processed +20171102 yes not processed +20171108 yes not processed +20171114 yes not processed +20171120 yes not processed +20171202 yes not processed +20171208 yes not processed +20171214 yes not processed +20171226 yes not processed +20180101 yes not processed +20180107 yes not processed +20180113 yes not processed +20180119 yes not processed +20180125 yes not processed +20180131 yes not processed +20180206 yes not processed +20180218 yes not processed +20180224 yes not processed +20180302 yes not processed +20180308 yes not processed +20180314 yes not processed +20180320 yes not processed +20180326 yes not processed +20180401 yes not processed +20180407 yes not processed +20180413 yes not processed +20180419 yes not processed +20180425 yes not processed +20180501 yes not processed +20180507 yes not processed +20180513 yes not processed +20180519 yes not processed +20180525 yes not processed +20180531 yes not processed +20180606 yes not processed +20180612 yes not processed +20180618 yes not processed +20180630 yes not processed +20180712 yes not processed +20180718 yes not processed +20180724 yes not processed +20180730 yes not processed +20180805 yes not processed +20180811 yes not processed +20180817 yes not processed +20180823 yes not processed +20180829 yes not processed +20180904 yes not processed +20180910 yes not processed +20180916 yes not processed +20180922 yes not processed +20180928 yes not processed +20181004 yes not processed +20181010 yes not processed +20181016 yes not processed +20181022 yes not processed +20181028 yes not processed +20181109 yes not processed +20181115 yes not processed +20181121 yes not processed +20181127 yes not processed +20181203 yes not processed +20181209 yes not processed +20181215 yes not processed +20181221 yes not processed +20181227 yes not processed +20190102 yes not processed +20190108 yes not processed +20190114 yes not processed +20190120 yes not processed +20190126 yes not processed +20190201 yes not processed +20190207 yes not processed +20190213 yes not processed +20190225 yes not processed +20190303 yes not processed +20190309 yes not processed +20190321 yes not processed +20190402 yes not processed +20190408 yes not processed +20190414 yes not processed +20190420 yes not processed +20190426 yes not processed +20190502 yes not processed +20190508 yes not processed +20190520 yes not processed +20190526 yes not processed +20190601 yes not processed +20190607 yes not processed +20190613 yes not processed +20190625 yes not processed +20190701 yes not processed +20190707 yes not processed +20190713 yes not processed +20190719 yes not processed +20190725 yes not processed +20190731 yes not processed +20190806 yes not processed +20190812 yes not processed +20190818 yes not processed +20190824 yes not processed +20190830 yes not processed +20190905 yes not processed +20190911 yes not processed +20190917 yes not processed +20190923 yes not processed +20191005 yes not processed +20191011 yes not processed +20191017 yes not processed +20191023 yes not processed +20191029 yes not processed +20191104 yes not processed +20191116 yes not processed +20191122 yes not processed +20191128 yes not processed +20191204 yes not processed +20191210 yes not processed +20191216 yes not processed +20191222 yes not processed +20191228 yes not processed +20200103 yes not processed +20200109 yes not processed +20200115 yes not processed +20200121 yes not processed +20200127 yes not processed +20200202 yes not processed +20200208 yes not processed +20200214 yes not processed +20200220 yes not processed +20200226 yes not processed +20200303 yes not processed +20200309 yes not processed +20200315 yes not processed +20200321 yes not processed +20200402 yes not processed +20200408 yes not processed +20200414 yes not processed +20200420 yes not processed +20200426 yes not processed +20200502 yes not processed +20200508 yes not processed +20200514 yes not processed +20200520 yes not processed +20200526 yes not processed +20200601 yes not processed +20200607 yes not processed +20200613 yes not processed +20200619 yes not processed +20200625 yes not processed +20200701 yes not processed +20200707 yes not processed +20200713 yes not processed +20200719 yes not processed +20200725 yes not processed +20200731 yes not processed +20200806 yes not processed +20200812 yes not processed +20200818 yes not processed +20200824 yes not processed +20200830 yes not processed +20200905 yes not processed +20200911 yes not processed +20200917 yes not processed +20200923 yes not processed +20200929 yes not processed +20201005 yes not processed +20201011 yes not processed +20201017 yes not processed +20201023 yes not processed +20201029 yes not processed +20201104 yes not processed +20201110 yes not processed +20201116 yes not processed +20201122 yes not processed +20201128 yes not processed +20201204 yes not processed +20201210 yes not processed +20201216 yes not processed +20201222 yes not processed +20201228 yes not processed +20210103 yes not processed +20210109 yes not processed +20210115 yes not processed +20210121 yes not processed +20210127 yes not processed +20210202 yes not processed +20210208 yes not processed +20210214 yes not processed +20210220 yes not processed +20210226 yes not processed +20210304 yes not processed +20210310 yes not processed +20210316 yes not processed +20210322 yes not processed +20210328 yes not processed +20210403 yes not processed +20210409 yes not processed +20210415 yes not processed +20210421 yes not processed +20210427 yes not processed +20210503 yes not processed +20210509 yes not processed +20210515 yes not processed +20210521 yes not processed +20210527 yes not processed +20210602 yes not processed +20210608 yes not processed +20210614 yes not processed +20210620 yes not processed +20210626 yes not processed +20210702 yes not processed +20210708 yes not processed +20210714 yes not processed +20210720 yes not processed +20210726 yes not processed +20210801 yes not processed +20210807 yes not processed +20210813 yes not processed +20210819 yes not processed +20210825 yes not processed +20210831 yes not processed +20210906 yes not processed +20210912 yes not processed to process +LiCSAlert status: 1) Run ICASAR: True 2) Run LiCSAlert: True +Running ICASAR. +From the data passed to ICASAR, I understand it to be spatial data (e.g. time series of images) +As 'lons' and 'lats' have been provided, the ICs will be geocoded. +Spatial patterns will be statitically independent and The cumulative (single master) interferograms will be used. +Creating all possible variations of the time series (incremental/daisy chain, cumulative, and all possible). +When creating all interferograms, 59 were passed to the function, and these were found to make 1 connected networks. From these, 1000 interferograms were created. +This interferogram timeseries has 59 times and 8533 pixels. +This interferogram timeseries has 1000 times and 8533 pixels. +This interferogram timeseries has 59 times and 8533 pixels. +Performing PCA to whiten the data....Starting to create the 02_PCA_sources_correlations figure: +Updating masks and ICA sources. Of the 8533 in the 1st set of sources and 8278 in the 2nd set of sources, 8270 are in both and can be used in the following step. + Starting to calculate the 2D kernel density estimates for the signals. Completed 0 1 2 3 4 + + Starting to calculate the 2D kernel density estimates for the signals. Completed 0 1 2 3 4 + +Done. +No results were found for the multiple ICA runs, so these will now be performed. +FastICA progress with bootstrapping: FastICA algorithm converged in 10 iterations. +0% FastICA algorithm converged in 8 iterations. +1% FastICA algorithm converged in 7 iterations. +1% FastICA algorithm converged in 11 iterations. +2% FastICA algorithm didn't converge in 149 iterations. +2% FastICA algorithm converged in 5 iterations. +2% FastICA algorithm converged in 9 iterations. +3% FastICA algorithm converged in 21 iterations. +3% FastICA algorithm converged in 35 iterations. +4% FastICA algorithm converged in 4 iterations. +4% FastICA algorithm converged in 139 iterations. +5% FastICA algorithm converged in 7 iterations. +5% FastICA algorithm converged in 7 iterations. +6% FastICA algorithm didn't converge in 149 iterations. +6% FastICA algorithm converged in 14 iterations. +6% FastICA algorithm converged in 3 iterations. +7% FastICA algorithm converged in 4 iterations. +7% FastICA algorithm converged in 11 iterations. +8% FastICA algorithm converged in 10 iterations. +8% FastICA algorithm converged in 8 iterations. +9% FastICA algorithm converged in 9 iterations. +9% FastICA algorithm converged in 141 iterations. +10% FastICA algorithm converged in 4 iterations. +10% FastICA algorithm converged in 8 iterations. +11% FastICA algorithm converged in 8 iterations. +11% FastICA algorithm converged in 4 iterations. +12% FastICA algorithm didn't converge in 149 iterations. +12% FastICA algorithm converged in 18 iterations. +12% FastICA algorithm converged in 4 iterations. +13% FastICA algorithm converged in 4 iterations. +13% FastICA algorithm converged in 12 iterations. +14% FastICA algorithm converged in 5 iterations. +14% FastICA algorithm didn't converge in 149 iterations. +14% FastICA algorithm converged in 50 iterations. +15% FastICA algorithm converged in 6 iterations. +15% FastICA algorithm converged in 8 iterations. +16% FastICA algorithm didn't converge in 149 iterations. +16% FastICA algorithm converged in 6 iterations. +16% FastICA algorithm converged in 4 iterations. +17% FastICA algorithm didn't converge in 149 iterations. +17% FastICA algorithm converged in 59 iterations. +17% FastICA algorithm didn't converge in 149 iterations. +17% FastICA algorithm converged in 10 iterations. +18% FastICA algorithm converged in 7 iterations. +18% FastICA algorithm converged in 7 iterations. +19% FastICA algorithm converged in 8 iterations. +19% FastICA algorithm converged in 17 iterations. +20% FastICA algorithm converged in 11 iterations. +20% FastICA algorithm converged in 5 iterations. +21% FastICA algorithm converged in 6 iterations. +21% FastICA algorithm didn't converge in 149 iterations. +21% FastICA algorithm converged in 13 iterations. +22% FastICA algorithm converged in 7 iterations. +22% FastICA algorithm converged in 4 iterations. +23% FastICA algorithm converged in 16 iterations. +23% FastICA algorithm converged in 16 iterations. +24% FastICA algorithm converged in 114 iterations. +24% FastICA algorithm converged in 12 iterations. +25% FastICA algorithm converged in 10 iterations. +25% FastICA algorithm converged in 5 iterations. +26% FastICA algorithm converged in 47 iterations. +26% FastICA algorithm converged in 6 iterations. +27% FastICA algorithm converged in 7 iterations. +27% FastICA algorithm converged in 11 iterations. +28% FastICA algorithm converged in 4 iterations. +28% FastICA algorithm didn't converge in 149 iterations. +28% FastICA algorithm converged in 8 iterations. +28% FastICA algorithm converged in 6 iterations. +29% FastICA algorithm converged in 130 iterations. +30% FastICA algorithm converged in 51 iterations. +30% FastICA algorithm converged in 5 iterations. +31% FastICA algorithm converged in 6 iterations. +31% FastICA algorithm converged in 4 iterations. +32% FastICA algorithm converged in 4 iterations. +32% FastICA algorithm converged in 7 iterations. +33% FastICA algorithm converged in 14 iterations. +33% FastICA algorithm converged in 8 iterations. +34% FastICA algorithm converged in 6 iterations. +34% FastICA algorithm converged in 5 iterations. +35% FastICA algorithm converged in 4 iterations. +35% FastICA algorithm converged in 6 iterations. +36% FastICA algorithm didn't converge in 149 iterations. +36% FastICA algorithm converged in 7 iterations. +36% FastICA algorithm converged in 4 iterations. +37% FastICA algorithm converged in 14 iterations. +37% FastICA algorithm converged in 6 iterations. +38% FastICA algorithm converged in 16 iterations. +38% FastICA algorithm converged in 11 iterations. +39% FastICA algorithm converged in 3 iterations. +39% FastICA algorithm converged in 28 iterations. +40% FastICA algorithm converged in 10 iterations. +40% FastICA algorithm converged in 15 iterations. +41% FastICA algorithm converged in 35 iterations. +41% FastICA algorithm converged in 4 iterations. +42% FastICA algorithm converged in 37 iterations. +42% FastICA algorithm converged in 15 iterations. +43% FastICA algorithm converged in 4 iterations. +43% FastICA algorithm converged in 7 iterations. +44% FastICA algorithm converged in 80 iterations. +44% FastICA algorithm converged in 5 iterations. +45% FastICA algorithm didn't converge in 149 iterations. +45% FastICA algorithm converged in 13 iterations. +45% FastICA algorithm didn't converge in 149 iterations. +45% FastICA algorithm converged in 4 iterations. +46% FastICA algorithm didn't converge in 149 iterations. +46% FastICA algorithm converged in 21 iterations. +46% FastICA algorithm converged in 55 iterations. +47% FastICA algorithm converged in 7 iterations. +47% FastICA algorithm converged in 3 iterations. +48% FastICA algorithm converged in 5 iterations. +48% FastICA algorithm didn't converge in 149 iterations. +48% FastICA algorithm converged in 4 iterations. +49% FastICA algorithm converged in 5 iterations. +49% FastICA algorithm converged in 6 iterations. +50% FastICA algorithm converged in 23 iterations. +50% FastICA algorithm converged in 4 iterations. +51% FastICA algorithm converged in 24 iterations. +51% FastICA algorithm converged in 4 iterations. +52% FastICA algorithm converged in 9 iterations. +52% FastICA algorithm converged in 5 iterations. +53% FastICA algorithm converged in 4 iterations. +53% FastICA algorithm converged in 6 iterations. +54% FastICA algorithm converged in 5 iterations. +54% FastICA algorithm converged in 4 iterations. +55% FastICA algorithm converged in 5 iterations. +55% FastICA algorithm converged in 36 iterations. +56% FastICA algorithm converged in 21 iterations. +56% FastICA algorithm converged in 97 iterations. +56% FastICA algorithm converged in 8 iterations. +57% FastICA algorithm converged in 7 iterations. +57% FastICA algorithm converged in 5 iterations. +58% FastICA algorithm converged in 9 iterations. +59% FastICA algorithm converged in 5 iterations. +59% FastICA algorithm converged in 47 iterations. +60% FastICA algorithm didn't converge in 149 iterations. +60% FastICA algorithm converged in 5 iterations. +60% FastICA algorithm converged in 21 iterations. +61% FastICA algorithm didn't converge in 149 iterations. +61% FastICA algorithm converged in 22 iterations. +61% FastICA algorithm converged in 8 iterations. +62% FastICA algorithm converged in 21 iterations. +62% FastICA algorithm converged in 9 iterations. +63% FastICA algorithm converged in 22 iterations. +63% FastICA algorithm converged in 2 iterations. +64% FastICA algorithm converged in 8 iterations. +64% FastICA algorithm converged in 4 iterations. +65% FastICA algorithm converged in 13 iterations. +65% FastICA algorithm converged in 9 iterations. +66% FastICA algorithm converged in 113 iterations. +66% FastICA algorithm converged in 6 iterations. +67% FastICA algorithm converged in 6 iterations. +67% FastICA algorithm converged in 5 iterations. +68% FastICA algorithm converged in 4 iterations. +68% FastICA algorithm converged in 4 iterations. +69% FastICA algorithm converged in 6 iterations. +69% FastICA algorithm converged in 4 iterations. +70% FastICA algorithm didn't converge in 149 iterations. +70% FastICA algorithm converged in 3 iterations. +70% FastICA algorithm converged in 5 iterations. +71% FastICA algorithm converged in 8 iterations. +71% FastICA algorithm converged in 4 iterations. +72% FastICA algorithm converged in 10 iterations. +72% FastICA algorithm converged in 72 iterations. +73% FastICA algorithm converged in 5 iterations. +73% FastICA algorithm converged in 5 iterations. +74% FastICA algorithm converged in 19 iterations. +74% FastICA algorithm converged in 20 iterations. +75% FastICA algorithm converged in 41 iterations. +75% FastICA algorithm converged in 7 iterations. +76% FastICA algorithm converged in 28 iterations. +76% FastICA algorithm converged in 12 iterations. +77% FastICA algorithm converged in 7 iterations. +77% FastICA algorithm converged in 6 iterations. +78% FastICA algorithm converged in 7 iterations. +78% FastICA algorithm didn't converge in 149 iterations. +78% FastICA algorithm converged in 3 iterations. +79% FastICA algorithm converged in 4 iterations. +79% FastICA algorithm converged in 4 iterations. +80% FastICA algorithm converged in 28 iterations. +80% FastICA algorithm converged in 3 iterations. +81% FastICA algorithm converged in 47 iterations. +81% FastICA algorithm didn't converge in 149 iterations. +81% FastICA algorithm converged in 4 iterations. +82% FastICA algorithm converged in 7 iterations. +82% FastICA algorithm converged in 8 iterations. +83% FastICA algorithm converged in 135 iterations. +83% FastICA algorithm converged in 5 iterations. +84% FastICA algorithm didn't converge in 149 iterations. +84% FastICA algorithm converged in 11 iterations. +84% FastICA algorithm converged in 18 iterations. +85% FastICA algorithm converged in 24 iterations. +85% FastICA algorithm converged in 5 iterations. +86% FastICA algorithm didn't converge in 149 iterations. +86% FastICA algorithm converged in 64 iterations. +86% FastICA algorithm converged in 20 iterations. +87% FastICA algorithm converged in 7 iterations. +87% FastICA algorithm converged in 35 iterations. +88% FastICA algorithm converged in 16 iterations. +88% FastICA algorithm converged in 36 iterations. +89% FastICA algorithm converged in 5 iterations. +89% FastICA algorithm converged in 9 iterations. +90% FastICA algorithm converged in 8 iterations. +90% FastICA algorithm converged in 4 iterations. +91% FastICA algorithm converged in 9 iterations. +91% FastICA algorithm didn't converge in 149 iterations. +91% FastICA algorithm converged in 7 iterations. +92% FastICA algorithm didn't converge in 149 iterations. +92% FastICA algorithm didn't converge in 149 iterations. +92% FastICA algorithm converged in 13 iterations. +92% FastICA algorithm converged in 4 iterations. +93% FastICA algorithm converged in 4 iterations. +93% FastICA algorithm converged in 5 iterations. +94% FastICA algorithm converged in 4 iterations. +94% FastICA algorithm converged in 6 iterations. +95% FastICA algorithm converged in 5 iterations. +95% FastICA algorithm converged in 16 iterations. +96% FastICA algorithm converged in 8 iterations. +96% FastICA algorithm converged in 15 iterations. +97% FastICA algorithm converged in 8 iterations. +97% FastICA algorithm converged in 4 iterations. +98% FastICA algorithm didn't converge in 149 iterations. +98% FastICA algorithm converged in 14 iterations. +98% FastICA algorithm converged in 8 iterations. +99% FastICA algorithm converged in 5 iterations. +99% FastICA algorithm converged in 5 iterations. +100% +Starting to compute the pairwise distance matrices....Done! +Starting to cluster the sources using HDBSCAN....Done! +Starting to calculate the 2D manifold representation....Done! +Calculating the centrotypes and associated time courses...Done! +Starting to create the 03_ICA_sources_correlations figure: +Updating masks and ICA sources. Of the 8533 in the 1st set of sources and 8278 in the 2nd set of sources, 8270 are in both and can be used in the following step. + Starting to calculate the 2D kernel density estimates for the signals. Completed 0 1 2 3 + + Starting to calculate the 2D kernel density estimates for the signals. Completed 0 1 2 3 + +Done. +Creating a Google Earth .kmz of the geocoded independent components... Done! + + +Source 0: deformation +Source 1: turbulent_APS +Source 2: topo_cor_APS +Source 3: turbulent_APS + + +Saving the key results as a .pkl file... Done! +Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. +Running LiCSAlert for 20210912 +There are 326 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 268 in ifgs_monitoring. diff --git a/campi_flegrei_example/aux_figures/IC_0.png b/campi_flegrei_example/aux_figures/IC_0.png index 9869f075..7a78abdd 100644 Binary files a/campi_flegrei_example/aux_figures/IC_0.png and b/campi_flegrei_example/aux_figures/IC_0.png differ diff --git a/campi_flegrei_example/aux_figures/IC_1.png b/campi_flegrei_example/aux_figures/IC_1.png index 28cafbc2..7e568113 100644 Binary files a/campi_flegrei_example/aux_figures/IC_1.png and b/campi_flegrei_example/aux_figures/IC_1.png differ diff --git a/campi_flegrei_example/aux_figures/IC_2.png b/campi_flegrei_example/aux_figures/IC_2.png index f3a466e9..042813ba 100644 Binary files a/campi_flegrei_example/aux_figures/IC_2.png and b/campi_flegrei_example/aux_figures/IC_2.png differ diff --git a/campi_flegrei_example/aux_figures/IC_3.png b/campi_flegrei_example/aux_figures/IC_3.png index 1341e062..c4a2b7f7 100644 Binary files a/campi_flegrei_example/aux_figures/IC_3.png and b/campi_flegrei_example/aux_figures/IC_3.png differ diff --git a/campi_flegrei_example/aux_figures/IC_4.png b/campi_flegrei_example/aux_figures/IC_4.png deleted file mode 100644 index 5144d116..00000000 Binary files a/campi_flegrei_example/aux_figures/IC_4.png and /dev/null differ diff --git a/campi_flegrei_example_all_times/20170112/01_cumulative_20141031_20170112.png b/campi_flegrei_example_all_times/20170112/01_cumulative_20141031_20170112.png new file mode 100644 index 00000000..736d1d54 Binary files /dev/null and b/campi_flegrei_example_all_times/20170112/01_cumulative_20141031_20170112.png differ diff --git a/campi_flegrei_example_all_times/20170112/02_incremental_20161231_20170112.png b/campi_flegrei_example_all_times/20170112/02_incremental_20161231_20170112.png new file mode 100644 index 00000000..d76070e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170112/02_incremental_20161231_20170112.png differ diff --git a/campi_flegrei_example_all_times/20170112/03_reconstruction_20161231_20170112.png b/campi_flegrei_example_all_times/20170112/03_reconstruction_20161231_20170112.png new file mode 100644 index 00000000..f27121bc Binary files /dev/null and b/campi_flegrei_example_all_times/20170112/03_reconstruction_20161231_20170112.png differ diff --git a/campi_flegrei_example_all_times/20170112/04_residual_20161231_20170112.png b/campi_flegrei_example_all_times/20170112/04_residual_20161231_20170112.png new file mode 100644 index 00000000..a13bbcde Binary files /dev/null and b/campi_flegrei_example_all_times/20170112/04_residual_20161231_20170112.png differ diff --git a/campi_flegrei_example_all_times/20170112/LiCSAlert_figure_with_001_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170112/LiCSAlert_figure_with_001_monitoring_interferograms.png new file mode 100644 index 00000000..33a778f5 Binary files /dev/null and b/campi_flegrei_example_all_times/20170112/LiCSAlert_figure_with_001_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170112/mask_status.png b/campi_flegrei_example_all_times/20170112/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170112/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170112/volcano_status.txt b/campi_flegrei_example_all_times/20170112/volcano_status.txt new file mode 100644 index 00000000..7dbf7dd2 --- /dev/null +++ b/campi_flegrei_example_all_times/20170112/volcano_status.txt @@ -0,0 +1,2 @@ +1.2103423967328666 +0.8887424663646187 diff --git a/campi_flegrei_example_all_times/20170118/01_cumulative_20141031_20170118.png b/campi_flegrei_example_all_times/20170118/01_cumulative_20141031_20170118.png new file mode 100644 index 00000000..7906ec42 Binary files /dev/null and b/campi_flegrei_example_all_times/20170118/01_cumulative_20141031_20170118.png differ diff --git a/campi_flegrei_example_all_times/20170118/02_incremental_20170112_20170118.png b/campi_flegrei_example_all_times/20170118/02_incremental_20170112_20170118.png new file mode 100644 index 00000000..af29cc9f Binary files /dev/null and b/campi_flegrei_example_all_times/20170118/02_incremental_20170112_20170118.png differ diff --git a/campi_flegrei_example_all_times/20170118/03_reconstruction_20170112_20170118.png b/campi_flegrei_example_all_times/20170118/03_reconstruction_20170112_20170118.png new file mode 100644 index 00000000..97212102 Binary files /dev/null and b/campi_flegrei_example_all_times/20170118/03_reconstruction_20170112_20170118.png differ diff --git a/campi_flegrei_example_all_times/20170118/04_residual_20170112_20170118.png b/campi_flegrei_example_all_times/20170118/04_residual_20170112_20170118.png new file mode 100644 index 00000000..0a06d297 Binary files /dev/null and b/campi_flegrei_example_all_times/20170118/04_residual_20170112_20170118.png differ diff --git a/campi_flegrei_example_all_times/20170118/LiCSAlert_figure_with_002_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170118/LiCSAlert_figure_with_002_monitoring_interferograms.png new file mode 100644 index 00000000..faf3a0e4 Binary files /dev/null and b/campi_flegrei_example_all_times/20170118/LiCSAlert_figure_with_002_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170118/mask_status.png b/campi_flegrei_example_all_times/20170118/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170118/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170118/volcano_status.txt b/campi_flegrei_example_all_times/20170118/volcano_status.txt new file mode 100644 index 00000000..cf174cc5 --- /dev/null +++ b/campi_flegrei_example_all_times/20170118/volcano_status.txt @@ -0,0 +1,2 @@ +0.20310910419677142 +0.05672608683328195 diff --git a/campi_flegrei_example_all_times/20170124/01_cumulative_20141031_20170124.png b/campi_flegrei_example_all_times/20170124/01_cumulative_20141031_20170124.png new file mode 100644 index 00000000..620ef066 Binary files /dev/null and b/campi_flegrei_example_all_times/20170124/01_cumulative_20141031_20170124.png differ diff --git a/campi_flegrei_example_all_times/20170124/02_incremental_20170118_20170124.png b/campi_flegrei_example_all_times/20170124/02_incremental_20170118_20170124.png new file mode 100644 index 00000000..f3a8a1cf Binary files /dev/null and b/campi_flegrei_example_all_times/20170124/02_incremental_20170118_20170124.png differ diff --git a/campi_flegrei_example_all_times/20170124/03_reconstruction_20170118_20170124.png b/campi_flegrei_example_all_times/20170124/03_reconstruction_20170118_20170124.png new file mode 100644 index 00000000..e026239d Binary files /dev/null and b/campi_flegrei_example_all_times/20170124/03_reconstruction_20170118_20170124.png differ diff --git a/campi_flegrei_example_all_times/20170124/04_residual_20170118_20170124.png b/campi_flegrei_example_all_times/20170124/04_residual_20170118_20170124.png new file mode 100644 index 00000000..6feb9bba Binary files /dev/null and b/campi_flegrei_example_all_times/20170124/04_residual_20170118_20170124.png differ diff --git a/campi_flegrei_example_all_times/20170124/LiCSAlert_figure_with_003_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170124/LiCSAlert_figure_with_003_monitoring_interferograms.png new file mode 100644 index 00000000..f3b9e299 Binary files /dev/null and b/campi_flegrei_example_all_times/20170124/LiCSAlert_figure_with_003_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170124/mask_status.png b/campi_flegrei_example_all_times/20170124/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170124/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170124/volcano_status.txt b/campi_flegrei_example_all_times/20170124/volcano_status.txt new file mode 100644 index 00000000..9425445f --- /dev/null +++ b/campi_flegrei_example_all_times/20170124/volcano_status.txt @@ -0,0 +1,2 @@ +1.3731314484646282 +0.49979255163699055 diff --git a/campi_flegrei_example_all_times/20170130/01_cumulative_20141031_20170130.png b/campi_flegrei_example_all_times/20170130/01_cumulative_20141031_20170130.png new file mode 100644 index 00000000..1a30a0fc Binary files /dev/null and b/campi_flegrei_example_all_times/20170130/01_cumulative_20141031_20170130.png differ diff --git a/campi_flegrei_example_all_times/20170130/02_incremental_20170124_20170130.png b/campi_flegrei_example_all_times/20170130/02_incremental_20170124_20170130.png new file mode 100644 index 00000000..b6ff740b Binary files /dev/null and b/campi_flegrei_example_all_times/20170130/02_incremental_20170124_20170130.png differ diff --git a/campi_flegrei_example_all_times/20170130/03_reconstruction_20170124_20170130.png b/campi_flegrei_example_all_times/20170130/03_reconstruction_20170124_20170130.png new file mode 100644 index 00000000..efe847c4 Binary files /dev/null and b/campi_flegrei_example_all_times/20170130/03_reconstruction_20170124_20170130.png differ diff --git a/campi_flegrei_example_all_times/20170130/04_residual_20170124_20170130.png b/campi_flegrei_example_all_times/20170130/04_residual_20170124_20170130.png new file mode 100644 index 00000000..d7c61b71 Binary files /dev/null and b/campi_flegrei_example_all_times/20170130/04_residual_20170124_20170130.png differ diff --git a/campi_flegrei_example_all_times/20170130/LiCSAlert_figure_with_004_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170130/LiCSAlert_figure_with_004_monitoring_interferograms.png new file mode 100644 index 00000000..a0d9e524 Binary files /dev/null and b/campi_flegrei_example_all_times/20170130/LiCSAlert_figure_with_004_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170130/mask_status.png b/campi_flegrei_example_all_times/20170130/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170130/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170130/volcano_status.txt b/campi_flegrei_example_all_times/20170130/volcano_status.txt new file mode 100644 index 00000000..72fdf7ae --- /dev/null +++ b/campi_flegrei_example_all_times/20170130/volcano_status.txt @@ -0,0 +1,2 @@ +1.2714800783087903 +0.9912936122807036 diff --git a/campi_flegrei_example_all_times/20170205/01_cumulative_20141031_20170205.png b/campi_flegrei_example_all_times/20170205/01_cumulative_20141031_20170205.png new file mode 100644 index 00000000..bc687719 Binary files /dev/null and b/campi_flegrei_example_all_times/20170205/01_cumulative_20141031_20170205.png differ diff --git a/campi_flegrei_example_all_times/20170205/02_incremental_20170130_20170205.png b/campi_flegrei_example_all_times/20170205/02_incremental_20170130_20170205.png new file mode 100644 index 00000000..60f6e40e Binary files /dev/null and b/campi_flegrei_example_all_times/20170205/02_incremental_20170130_20170205.png differ diff --git a/campi_flegrei_example_all_times/20170205/03_reconstruction_20170130_20170205.png b/campi_flegrei_example_all_times/20170205/03_reconstruction_20170130_20170205.png new file mode 100644 index 00000000..6f9f4260 Binary files /dev/null and b/campi_flegrei_example_all_times/20170205/03_reconstruction_20170130_20170205.png differ diff --git a/campi_flegrei_example_all_times/20170205/04_residual_20170130_20170205.png b/campi_flegrei_example_all_times/20170205/04_residual_20170130_20170205.png new file mode 100644 index 00000000..6c4ec6ca Binary files /dev/null and b/campi_flegrei_example_all_times/20170205/04_residual_20170130_20170205.png differ diff --git a/campi_flegrei_example_all_times/20170205/LiCSAlert_figure_with_005_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170205/LiCSAlert_figure_with_005_monitoring_interferograms.png new file mode 100644 index 00000000..ef7ad1da Binary files /dev/null and b/campi_flegrei_example_all_times/20170205/LiCSAlert_figure_with_005_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170205/mask_status.png b/campi_flegrei_example_all_times/20170205/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170205/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170205/volcano_status.txt b/campi_flegrei_example_all_times/20170205/volcano_status.txt new file mode 100644 index 00000000..bf5b9448 --- /dev/null +++ b/campi_flegrei_example_all_times/20170205/volcano_status.txt @@ -0,0 +1,2 @@ +1.073472483914942 +0.9991240795348163 diff --git a/campi_flegrei_example_all_times/20170211/01_cumulative_20141031_20170211.png b/campi_flegrei_example_all_times/20170211/01_cumulative_20141031_20170211.png new file mode 100644 index 00000000..55931682 Binary files /dev/null and b/campi_flegrei_example_all_times/20170211/01_cumulative_20141031_20170211.png differ diff --git a/campi_flegrei_example_all_times/20170211/02_incremental_20170205_20170211.png b/campi_flegrei_example_all_times/20170211/02_incremental_20170205_20170211.png new file mode 100644 index 00000000..a0bddae4 Binary files /dev/null and b/campi_flegrei_example_all_times/20170211/02_incremental_20170205_20170211.png differ diff --git a/campi_flegrei_example_all_times/20170211/03_reconstruction_20170205_20170211.png b/campi_flegrei_example_all_times/20170211/03_reconstruction_20170205_20170211.png new file mode 100644 index 00000000..db25a1e6 Binary files /dev/null and b/campi_flegrei_example_all_times/20170211/03_reconstruction_20170205_20170211.png differ diff --git a/campi_flegrei_example_all_times/20170211/04_residual_20170205_20170211.png b/campi_flegrei_example_all_times/20170211/04_residual_20170205_20170211.png new file mode 100644 index 00000000..1e6c7d74 Binary files /dev/null and b/campi_flegrei_example_all_times/20170211/04_residual_20170205_20170211.png differ diff --git a/campi_flegrei_example_all_times/20170211/LiCSAlert_figure_with_006_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170211/LiCSAlert_figure_with_006_monitoring_interferograms.png new file mode 100644 index 00000000..705bd3ab Binary files /dev/null and b/campi_flegrei_example_all_times/20170211/LiCSAlert_figure_with_006_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170211/mask_status.png b/campi_flegrei_example_all_times/20170211/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170211/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170211/volcano_status.txt b/campi_flegrei_example_all_times/20170211/volcano_status.txt new file mode 100644 index 00000000..7b98de4c --- /dev/null +++ b/campi_flegrei_example_all_times/20170211/volcano_status.txt @@ -0,0 +1,2 @@ +0.42177980841064555 +0.7176998700527429 diff --git a/campi_flegrei_example_all_times/20170223/01_cumulative_20141031_20170223.png b/campi_flegrei_example_all_times/20170223/01_cumulative_20141031_20170223.png new file mode 100644 index 00000000..45c99059 Binary files /dev/null and b/campi_flegrei_example_all_times/20170223/01_cumulative_20141031_20170223.png differ diff --git a/campi_flegrei_example_all_times/20170223/02_incremental_20170211_20170223.png b/campi_flegrei_example_all_times/20170223/02_incremental_20170211_20170223.png new file mode 100644 index 00000000..cb84c9d2 Binary files /dev/null and b/campi_flegrei_example_all_times/20170223/02_incremental_20170211_20170223.png differ diff --git a/campi_flegrei_example_all_times/20170223/03_reconstruction_20170211_20170223.png b/campi_flegrei_example_all_times/20170223/03_reconstruction_20170211_20170223.png new file mode 100644 index 00000000..29463eb8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170223/03_reconstruction_20170211_20170223.png differ diff --git a/campi_flegrei_example_all_times/20170223/04_residual_20170211_20170223.png b/campi_flegrei_example_all_times/20170223/04_residual_20170211_20170223.png new file mode 100644 index 00000000..8b11a67b Binary files /dev/null and b/campi_flegrei_example_all_times/20170223/04_residual_20170211_20170223.png differ diff --git a/campi_flegrei_example_all_times/20170223/LiCSAlert_figure_with_007_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170223/LiCSAlert_figure_with_007_monitoring_interferograms.png new file mode 100644 index 00000000..7c4f9a33 Binary files /dev/null and b/campi_flegrei_example_all_times/20170223/LiCSAlert_figure_with_007_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170223/mask_status.png b/campi_flegrei_example_all_times/20170223/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170223/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170223/volcano_status.txt b/campi_flegrei_example_all_times/20170223/volcano_status.txt new file mode 100644 index 00000000..d1fc3502 --- /dev/null +++ b/campi_flegrei_example_all_times/20170223/volcano_status.txt @@ -0,0 +1,2 @@ +0.7637407870594852 +0.3527078340773445 diff --git a/campi_flegrei_example_all_times/20170301/01_cumulative_20141031_20170301.png b/campi_flegrei_example_all_times/20170301/01_cumulative_20141031_20170301.png new file mode 100644 index 00000000..7fc90589 Binary files /dev/null and b/campi_flegrei_example_all_times/20170301/01_cumulative_20141031_20170301.png differ diff --git a/campi_flegrei_example_all_times/20170301/02_incremental_20170223_20170301.png b/campi_flegrei_example_all_times/20170301/02_incremental_20170223_20170301.png new file mode 100644 index 00000000..6f776761 Binary files /dev/null and b/campi_flegrei_example_all_times/20170301/02_incremental_20170223_20170301.png differ diff --git a/campi_flegrei_example_all_times/20170301/03_reconstruction_20170223_20170301.png b/campi_flegrei_example_all_times/20170301/03_reconstruction_20170223_20170301.png new file mode 100644 index 00000000..882d0ad7 Binary files /dev/null and b/campi_flegrei_example_all_times/20170301/03_reconstruction_20170223_20170301.png differ diff --git a/campi_flegrei_example_all_times/20170301/04_residual_20170223_20170301.png b/campi_flegrei_example_all_times/20170301/04_residual_20170223_20170301.png new file mode 100644 index 00000000..89f2aefe Binary files /dev/null and b/campi_flegrei_example_all_times/20170301/04_residual_20170223_20170301.png differ diff --git a/campi_flegrei_example_all_times/20170301/LiCSAlert_figure_with_008_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170301/LiCSAlert_figure_with_008_monitoring_interferograms.png new file mode 100644 index 00000000..82a8754b Binary files /dev/null and b/campi_flegrei_example_all_times/20170301/LiCSAlert_figure_with_008_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170301/mask_status.png b/campi_flegrei_example_all_times/20170301/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170301/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170301/volcano_status.txt b/campi_flegrei_example_all_times/20170301/volcano_status.txt new file mode 100644 index 00000000..847c33e1 --- /dev/null +++ b/campi_flegrei_example_all_times/20170301/volcano_status.txt @@ -0,0 +1,2 @@ +1.0446216566265982 +0.7288465023985973 diff --git a/campi_flegrei_example_all_times/20170307/01_cumulative_20141031_20170307.png b/campi_flegrei_example_all_times/20170307/01_cumulative_20141031_20170307.png new file mode 100644 index 00000000..8c7d4e81 Binary files /dev/null and b/campi_flegrei_example_all_times/20170307/01_cumulative_20141031_20170307.png differ diff --git a/campi_flegrei_example_all_times/20170307/02_incremental_20170301_20170307.png b/campi_flegrei_example_all_times/20170307/02_incremental_20170301_20170307.png new file mode 100644 index 00000000..4d645761 Binary files /dev/null and b/campi_flegrei_example_all_times/20170307/02_incremental_20170301_20170307.png differ diff --git a/campi_flegrei_example_all_times/20170307/03_reconstruction_20170301_20170307.png b/campi_flegrei_example_all_times/20170307/03_reconstruction_20170301_20170307.png new file mode 100644 index 00000000..c7648941 Binary files /dev/null and b/campi_flegrei_example_all_times/20170307/03_reconstruction_20170301_20170307.png differ diff --git a/campi_flegrei_example_all_times/20170307/04_residual_20170301_20170307.png b/campi_flegrei_example_all_times/20170307/04_residual_20170301_20170307.png new file mode 100644 index 00000000..8cbfae96 Binary files /dev/null and b/campi_flegrei_example_all_times/20170307/04_residual_20170301_20170307.png differ diff --git a/campi_flegrei_example_all_times/20170307/LiCSAlert_figure_with_009_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170307/LiCSAlert_figure_with_009_monitoring_interferograms.png new file mode 100644 index 00000000..ebbbf201 Binary files /dev/null and b/campi_flegrei_example_all_times/20170307/LiCSAlert_figure_with_009_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170307/mask_status.png b/campi_flegrei_example_all_times/20170307/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170307/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170307/volcano_status.txt b/campi_flegrei_example_all_times/20170307/volcano_status.txt new file mode 100644 index 00000000..65710471 --- /dev/null +++ b/campi_flegrei_example_all_times/20170307/volcano_status.txt @@ -0,0 +1,2 @@ +1.128657864638193 +3.397054685024103 diff --git a/campi_flegrei_example_all_times/20170313/01_cumulative_20141031_20170313.png b/campi_flegrei_example_all_times/20170313/01_cumulative_20141031_20170313.png new file mode 100644 index 00000000..bb70fe1c Binary files /dev/null and b/campi_flegrei_example_all_times/20170313/01_cumulative_20141031_20170313.png differ diff --git a/campi_flegrei_example_all_times/20170313/02_incremental_20170307_20170313.png b/campi_flegrei_example_all_times/20170313/02_incremental_20170307_20170313.png new file mode 100644 index 00000000..7460a977 Binary files /dev/null and b/campi_flegrei_example_all_times/20170313/02_incremental_20170307_20170313.png differ diff --git a/campi_flegrei_example_all_times/20170313/03_reconstruction_20170307_20170313.png b/campi_flegrei_example_all_times/20170313/03_reconstruction_20170307_20170313.png new file mode 100644 index 00000000..8fb39e82 Binary files /dev/null and b/campi_flegrei_example_all_times/20170313/03_reconstruction_20170307_20170313.png differ diff --git a/campi_flegrei_example_all_times/20170313/04_residual_20170307_20170313.png b/campi_flegrei_example_all_times/20170313/04_residual_20170307_20170313.png new file mode 100644 index 00000000..2d8184b1 Binary files /dev/null and b/campi_flegrei_example_all_times/20170313/04_residual_20170307_20170313.png differ diff --git a/campi_flegrei_example_all_times/20170313/LiCSAlert_figure_with_010_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170313/LiCSAlert_figure_with_010_monitoring_interferograms.png new file mode 100644 index 00000000..65be796c Binary files /dev/null and b/campi_flegrei_example_all_times/20170313/LiCSAlert_figure_with_010_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170313/mask_status.png b/campi_flegrei_example_all_times/20170313/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170313/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170313/volcano_status.txt b/campi_flegrei_example_all_times/20170313/volcano_status.txt new file mode 100644 index 00000000..d8e3e559 --- /dev/null +++ b/campi_flegrei_example_all_times/20170313/volcano_status.txt @@ -0,0 +1,2 @@ +0.5561564545492393 +1.360636855558745 diff --git a/campi_flegrei_example_all_times/20170319/01_cumulative_20141031_20170319.png b/campi_flegrei_example_all_times/20170319/01_cumulative_20141031_20170319.png new file mode 100644 index 00000000..b2880102 Binary files /dev/null and b/campi_flegrei_example_all_times/20170319/01_cumulative_20141031_20170319.png differ diff --git a/campi_flegrei_example_all_times/20170319/02_incremental_20170313_20170319.png b/campi_flegrei_example_all_times/20170319/02_incremental_20170313_20170319.png new file mode 100644 index 00000000..1138f4d5 Binary files /dev/null and b/campi_flegrei_example_all_times/20170319/02_incremental_20170313_20170319.png differ diff --git a/campi_flegrei_example_all_times/20170319/03_reconstruction_20170313_20170319.png b/campi_flegrei_example_all_times/20170319/03_reconstruction_20170313_20170319.png new file mode 100644 index 00000000..4419a845 Binary files /dev/null and b/campi_flegrei_example_all_times/20170319/03_reconstruction_20170313_20170319.png differ diff --git a/campi_flegrei_example_all_times/20170319/04_residual_20170313_20170319.png b/campi_flegrei_example_all_times/20170319/04_residual_20170313_20170319.png new file mode 100644 index 00000000..37be37d7 Binary files /dev/null and b/campi_flegrei_example_all_times/20170319/04_residual_20170313_20170319.png differ diff --git a/campi_flegrei_example_all_times/20170319/LiCSAlert_figure_with_011_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170319/LiCSAlert_figure_with_011_monitoring_interferograms.png new file mode 100644 index 00000000..42cfdece Binary files /dev/null and b/campi_flegrei_example_all_times/20170319/LiCSAlert_figure_with_011_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170319/mask_status.png b/campi_flegrei_example_all_times/20170319/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170319/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170319/volcano_status.txt b/campi_flegrei_example_all_times/20170319/volcano_status.txt new file mode 100644 index 00000000..11147d5f --- /dev/null +++ b/campi_flegrei_example_all_times/20170319/volcano_status.txt @@ -0,0 +1,2 @@ +1.5157422863597767 +0.49763833074939484 diff --git a/campi_flegrei_example_all_times/20170325/01_cumulative_20141031_20170325.png b/campi_flegrei_example_all_times/20170325/01_cumulative_20141031_20170325.png new file mode 100644 index 00000000..4a7dcbd8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170325/01_cumulative_20141031_20170325.png differ diff --git a/campi_flegrei_example_all_times/20170325/02_incremental_20170319_20170325.png b/campi_flegrei_example_all_times/20170325/02_incremental_20170319_20170325.png new file mode 100644 index 00000000..7f0048e9 Binary files /dev/null and b/campi_flegrei_example_all_times/20170325/02_incremental_20170319_20170325.png differ diff --git a/campi_flegrei_example_all_times/20170325/03_reconstruction_20170319_20170325.png b/campi_flegrei_example_all_times/20170325/03_reconstruction_20170319_20170325.png new file mode 100644 index 00000000..ff28431f Binary files /dev/null and b/campi_flegrei_example_all_times/20170325/03_reconstruction_20170319_20170325.png differ diff --git a/campi_flegrei_example_all_times/20170325/04_residual_20170319_20170325.png b/campi_flegrei_example_all_times/20170325/04_residual_20170319_20170325.png new file mode 100644 index 00000000..ae47091a Binary files /dev/null and b/campi_flegrei_example_all_times/20170325/04_residual_20170319_20170325.png differ diff --git a/campi_flegrei_example_all_times/20170325/LiCSAlert_figure_with_012_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170325/LiCSAlert_figure_with_012_monitoring_interferograms.png new file mode 100644 index 00000000..5fb7c0a8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170325/LiCSAlert_figure_with_012_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170325/mask_status.png b/campi_flegrei_example_all_times/20170325/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170325/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170325/volcano_status.txt b/campi_flegrei_example_all_times/20170325/volcano_status.txt new file mode 100644 index 00000000..f78f2546 --- /dev/null +++ b/campi_flegrei_example_all_times/20170325/volcano_status.txt @@ -0,0 +1,2 @@ +0.2410726460717588 +0.5242857122810197 diff --git a/campi_flegrei_example_all_times/20170331/01_cumulative_20141031_20170331.png b/campi_flegrei_example_all_times/20170331/01_cumulative_20141031_20170331.png new file mode 100644 index 00000000..47dc74ba Binary files /dev/null and b/campi_flegrei_example_all_times/20170331/01_cumulative_20141031_20170331.png differ diff --git a/campi_flegrei_example_all_times/20170331/02_incremental_20170325_20170331.png b/campi_flegrei_example_all_times/20170331/02_incremental_20170325_20170331.png new file mode 100644 index 00000000..ab6cfc7f Binary files /dev/null and b/campi_flegrei_example_all_times/20170331/02_incremental_20170325_20170331.png differ diff --git a/campi_flegrei_example_all_times/20170331/03_reconstruction_20170325_20170331.png b/campi_flegrei_example_all_times/20170331/03_reconstruction_20170325_20170331.png new file mode 100644 index 00000000..b4f944cc Binary files /dev/null and b/campi_flegrei_example_all_times/20170331/03_reconstruction_20170325_20170331.png differ diff --git a/campi_flegrei_example_all_times/20170331/04_residual_20170325_20170331.png b/campi_flegrei_example_all_times/20170331/04_residual_20170325_20170331.png new file mode 100644 index 00000000..405bc6e2 Binary files /dev/null and b/campi_flegrei_example_all_times/20170331/04_residual_20170325_20170331.png differ diff --git a/campi_flegrei_example_all_times/20170331/LiCSAlert_figure_with_013_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170331/LiCSAlert_figure_with_013_monitoring_interferograms.png new file mode 100644 index 00000000..725bfee4 Binary files /dev/null and b/campi_flegrei_example_all_times/20170331/LiCSAlert_figure_with_013_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170331/mask_status.png b/campi_flegrei_example_all_times/20170331/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170331/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170331/volcano_status.txt b/campi_flegrei_example_all_times/20170331/volcano_status.txt new file mode 100644 index 00000000..24bf79b4 --- /dev/null +++ b/campi_flegrei_example_all_times/20170331/volcano_status.txt @@ -0,0 +1,2 @@ +1.0382816311098428 +0.5510324685938147 diff --git a/campi_flegrei_example_all_times/20170406/01_cumulative_20141031_20170406.png b/campi_flegrei_example_all_times/20170406/01_cumulative_20141031_20170406.png new file mode 100644 index 00000000..d55b92c0 Binary files /dev/null and b/campi_flegrei_example_all_times/20170406/01_cumulative_20141031_20170406.png differ diff --git a/campi_flegrei_example_all_times/20170406/02_incremental_20170331_20170406.png b/campi_flegrei_example_all_times/20170406/02_incremental_20170331_20170406.png new file mode 100644 index 00000000..c600ff88 Binary files /dev/null and b/campi_flegrei_example_all_times/20170406/02_incremental_20170331_20170406.png differ diff --git a/campi_flegrei_example_all_times/20170406/03_reconstruction_20170331_20170406.png b/campi_flegrei_example_all_times/20170406/03_reconstruction_20170331_20170406.png new file mode 100644 index 00000000..8a723727 Binary files /dev/null and b/campi_flegrei_example_all_times/20170406/03_reconstruction_20170331_20170406.png differ diff --git a/campi_flegrei_example_all_times/20170406/04_residual_20170331_20170406.png b/campi_flegrei_example_all_times/20170406/04_residual_20170331_20170406.png new file mode 100644 index 00000000..97474da4 Binary files /dev/null and b/campi_flegrei_example_all_times/20170406/04_residual_20170331_20170406.png differ diff --git a/campi_flegrei_example_all_times/20170406/LiCSAlert_figure_with_014_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170406/LiCSAlert_figure_with_014_monitoring_interferograms.png new file mode 100644 index 00000000..34cf48bb Binary files /dev/null and b/campi_flegrei_example_all_times/20170406/LiCSAlert_figure_with_014_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170406/mask_status.png b/campi_flegrei_example_all_times/20170406/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170406/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170406/volcano_status.txt b/campi_flegrei_example_all_times/20170406/volcano_status.txt new file mode 100644 index 00000000..2470cc0e --- /dev/null +++ b/campi_flegrei_example_all_times/20170406/volcano_status.txt @@ -0,0 +1,2 @@ +0.8048075315825998 +0.43266859749444997 diff --git a/campi_flegrei_example_all_times/20170412/01_cumulative_20141031_20170412.png b/campi_flegrei_example_all_times/20170412/01_cumulative_20141031_20170412.png new file mode 100644 index 00000000..e0553c74 Binary files /dev/null and b/campi_flegrei_example_all_times/20170412/01_cumulative_20141031_20170412.png differ diff --git a/campi_flegrei_example_all_times/20170412/02_incremental_20170406_20170412.png b/campi_flegrei_example_all_times/20170412/02_incremental_20170406_20170412.png new file mode 100644 index 00000000..9e9cb4ab Binary files /dev/null and b/campi_flegrei_example_all_times/20170412/02_incremental_20170406_20170412.png differ diff --git a/campi_flegrei_example_all_times/20170412/03_reconstruction_20170406_20170412.png b/campi_flegrei_example_all_times/20170412/03_reconstruction_20170406_20170412.png new file mode 100644 index 00000000..c2d02548 Binary files /dev/null and b/campi_flegrei_example_all_times/20170412/03_reconstruction_20170406_20170412.png differ diff --git a/campi_flegrei_example_all_times/20170412/04_residual_20170406_20170412.png b/campi_flegrei_example_all_times/20170412/04_residual_20170406_20170412.png new file mode 100644 index 00000000..b68f5ab2 Binary files /dev/null and b/campi_flegrei_example_all_times/20170412/04_residual_20170406_20170412.png differ diff --git a/campi_flegrei_example_all_times/20170412/LiCSAlert_figure_with_015_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170412/LiCSAlert_figure_with_015_monitoring_interferograms.png new file mode 100644 index 00000000..8ac337f1 Binary files /dev/null and b/campi_flegrei_example_all_times/20170412/LiCSAlert_figure_with_015_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170412/mask_status.png b/campi_flegrei_example_all_times/20170412/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170412/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170412/volcano_status.txt b/campi_flegrei_example_all_times/20170412/volcano_status.txt new file mode 100644 index 00000000..20ba391f --- /dev/null +++ b/campi_flegrei_example_all_times/20170412/volcano_status.txt @@ -0,0 +1,2 @@ +0.3638772891171994 +0.12040725231915068 diff --git a/campi_flegrei_example_all_times/20170418/01_cumulative_20141031_20170418.png b/campi_flegrei_example_all_times/20170418/01_cumulative_20141031_20170418.png new file mode 100644 index 00000000..178d4f0e Binary files /dev/null and b/campi_flegrei_example_all_times/20170418/01_cumulative_20141031_20170418.png differ diff --git a/campi_flegrei_example_all_times/20170418/02_incremental_20170412_20170418.png b/campi_flegrei_example_all_times/20170418/02_incremental_20170412_20170418.png new file mode 100644 index 00000000..84a184c9 Binary files /dev/null and b/campi_flegrei_example_all_times/20170418/02_incremental_20170412_20170418.png differ diff --git a/campi_flegrei_example_all_times/20170418/03_reconstruction_20170412_20170418.png b/campi_flegrei_example_all_times/20170418/03_reconstruction_20170412_20170418.png new file mode 100644 index 00000000..154f2819 Binary files /dev/null and b/campi_flegrei_example_all_times/20170418/03_reconstruction_20170412_20170418.png differ diff --git a/campi_flegrei_example_all_times/20170418/04_residual_20170412_20170418.png b/campi_flegrei_example_all_times/20170418/04_residual_20170412_20170418.png new file mode 100644 index 00000000..bcbdc04e Binary files /dev/null and b/campi_flegrei_example_all_times/20170418/04_residual_20170412_20170418.png differ diff --git a/campi_flegrei_example_all_times/20170418/LiCSAlert_figure_with_016_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170418/LiCSAlert_figure_with_016_monitoring_interferograms.png new file mode 100644 index 00000000..dda98ac3 Binary files /dev/null and b/campi_flegrei_example_all_times/20170418/LiCSAlert_figure_with_016_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170418/mask_status.png b/campi_flegrei_example_all_times/20170418/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170418/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170418/volcano_status.txt b/campi_flegrei_example_all_times/20170418/volcano_status.txt new file mode 100644 index 00000000..e1413311 --- /dev/null +++ b/campi_flegrei_example_all_times/20170418/volcano_status.txt @@ -0,0 +1,2 @@ +0.8468903233983728 +1.5403264493974962 diff --git a/campi_flegrei_example_all_times/20170424/01_cumulative_20141031_20170424.png b/campi_flegrei_example_all_times/20170424/01_cumulative_20141031_20170424.png new file mode 100644 index 00000000..59eae03a Binary files /dev/null and b/campi_flegrei_example_all_times/20170424/01_cumulative_20141031_20170424.png differ diff --git a/campi_flegrei_example_all_times/20170424/02_incremental_20170418_20170424.png b/campi_flegrei_example_all_times/20170424/02_incremental_20170418_20170424.png new file mode 100644 index 00000000..6ae4e96a Binary files /dev/null and b/campi_flegrei_example_all_times/20170424/02_incremental_20170418_20170424.png differ diff --git a/campi_flegrei_example_all_times/20170424/03_reconstruction_20170418_20170424.png b/campi_flegrei_example_all_times/20170424/03_reconstruction_20170418_20170424.png new file mode 100644 index 00000000..c5e8b5b1 Binary files /dev/null and b/campi_flegrei_example_all_times/20170424/03_reconstruction_20170418_20170424.png differ diff --git a/campi_flegrei_example_all_times/20170424/04_residual_20170418_20170424.png b/campi_flegrei_example_all_times/20170424/04_residual_20170418_20170424.png new file mode 100644 index 00000000..20174425 Binary files /dev/null and b/campi_flegrei_example_all_times/20170424/04_residual_20170418_20170424.png differ diff --git a/campi_flegrei_example_all_times/20170424/LiCSAlert_figure_with_017_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170424/LiCSAlert_figure_with_017_monitoring_interferograms.png new file mode 100644 index 00000000..54edc4dd Binary files /dev/null and b/campi_flegrei_example_all_times/20170424/LiCSAlert_figure_with_017_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170424/mask_status.png b/campi_flegrei_example_all_times/20170424/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170424/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170424/volcano_status.txt b/campi_flegrei_example_all_times/20170424/volcano_status.txt new file mode 100644 index 00000000..57f6c009 --- /dev/null +++ b/campi_flegrei_example_all_times/20170424/volcano_status.txt @@ -0,0 +1,2 @@ +0.6046321547683943 +0.21996520164868646 diff --git a/campi_flegrei_example_all_times/20170430/01_cumulative_20141031_20170430.png b/campi_flegrei_example_all_times/20170430/01_cumulative_20141031_20170430.png new file mode 100644 index 00000000..f610e629 Binary files /dev/null and b/campi_flegrei_example_all_times/20170430/01_cumulative_20141031_20170430.png differ diff --git a/campi_flegrei_example_all_times/20170430/02_incremental_20170424_20170430.png b/campi_flegrei_example_all_times/20170430/02_incremental_20170424_20170430.png new file mode 100644 index 00000000..2ef1a160 Binary files /dev/null and b/campi_flegrei_example_all_times/20170430/02_incremental_20170424_20170430.png differ diff --git a/campi_flegrei_example_all_times/20170430/03_reconstruction_20170424_20170430.png b/campi_flegrei_example_all_times/20170430/03_reconstruction_20170424_20170430.png new file mode 100644 index 00000000..915a5f93 Binary files /dev/null and b/campi_flegrei_example_all_times/20170430/03_reconstruction_20170424_20170430.png differ diff --git a/campi_flegrei_example_all_times/20170430/04_residual_20170424_20170430.png b/campi_flegrei_example_all_times/20170430/04_residual_20170424_20170430.png new file mode 100644 index 00000000..cbe2e221 Binary files /dev/null and b/campi_flegrei_example_all_times/20170430/04_residual_20170424_20170430.png differ diff --git a/campi_flegrei_example_all_times/20170430/LiCSAlert_figure_with_018_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170430/LiCSAlert_figure_with_018_monitoring_interferograms.png new file mode 100644 index 00000000..d678b37b Binary files /dev/null and b/campi_flegrei_example_all_times/20170430/LiCSAlert_figure_with_018_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170430/mask_status.png b/campi_flegrei_example_all_times/20170430/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170430/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170430/volcano_status.txt b/campi_flegrei_example_all_times/20170430/volcano_status.txt new file mode 100644 index 00000000..da90dec4 --- /dev/null +++ b/campi_flegrei_example_all_times/20170430/volcano_status.txt @@ -0,0 +1,2 @@ +0.05249293670159848 +1.111330855090938 diff --git a/campi_flegrei_example_all_times/20170506/01_cumulative_20141031_20170506.png b/campi_flegrei_example_all_times/20170506/01_cumulative_20141031_20170506.png new file mode 100644 index 00000000..444858ee Binary files /dev/null and b/campi_flegrei_example_all_times/20170506/01_cumulative_20141031_20170506.png differ diff --git a/campi_flegrei_example_all_times/20170506/02_incremental_20170430_20170506.png b/campi_flegrei_example_all_times/20170506/02_incremental_20170430_20170506.png new file mode 100644 index 00000000..77452f97 Binary files /dev/null and b/campi_flegrei_example_all_times/20170506/02_incremental_20170430_20170506.png differ diff --git a/campi_flegrei_example_all_times/20170506/03_reconstruction_20170430_20170506.png b/campi_flegrei_example_all_times/20170506/03_reconstruction_20170430_20170506.png new file mode 100644 index 00000000..f9c57284 Binary files /dev/null and b/campi_flegrei_example_all_times/20170506/03_reconstruction_20170430_20170506.png differ diff --git a/campi_flegrei_example_all_times/20170506/04_residual_20170430_20170506.png b/campi_flegrei_example_all_times/20170506/04_residual_20170430_20170506.png new file mode 100644 index 00000000..e5e54883 Binary files /dev/null and b/campi_flegrei_example_all_times/20170506/04_residual_20170430_20170506.png differ diff --git a/campi_flegrei_example_all_times/20170506/LiCSAlert_figure_with_019_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170506/LiCSAlert_figure_with_019_monitoring_interferograms.png new file mode 100644 index 00000000..f7aca0d0 Binary files /dev/null and b/campi_flegrei_example_all_times/20170506/LiCSAlert_figure_with_019_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170506/mask_status.png b/campi_flegrei_example_all_times/20170506/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170506/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170506/volcano_status.txt b/campi_flegrei_example_all_times/20170506/volcano_status.txt new file mode 100644 index 00000000..8adc8566 --- /dev/null +++ b/campi_flegrei_example_all_times/20170506/volcano_status.txt @@ -0,0 +1,2 @@ +0.5578960082224255 +0.31309642284175226 diff --git a/campi_flegrei_example_all_times/20170512/01_cumulative_20141031_20170512.png b/campi_flegrei_example_all_times/20170512/01_cumulative_20141031_20170512.png new file mode 100644 index 00000000..539b7b70 Binary files /dev/null and b/campi_flegrei_example_all_times/20170512/01_cumulative_20141031_20170512.png differ diff --git a/campi_flegrei_example_all_times/20170512/02_incremental_20170506_20170512.png b/campi_flegrei_example_all_times/20170512/02_incremental_20170506_20170512.png new file mode 100644 index 00000000..9d27a8c4 Binary files /dev/null and b/campi_flegrei_example_all_times/20170512/02_incremental_20170506_20170512.png differ diff --git a/campi_flegrei_example_all_times/20170512/03_reconstruction_20170506_20170512.png b/campi_flegrei_example_all_times/20170512/03_reconstruction_20170506_20170512.png new file mode 100644 index 00000000..2c3d2b3d Binary files /dev/null and b/campi_flegrei_example_all_times/20170512/03_reconstruction_20170506_20170512.png differ diff --git a/campi_flegrei_example_all_times/20170512/04_residual_20170506_20170512.png b/campi_flegrei_example_all_times/20170512/04_residual_20170506_20170512.png new file mode 100644 index 00000000..3ce7b59e Binary files /dev/null and b/campi_flegrei_example_all_times/20170512/04_residual_20170506_20170512.png differ diff --git a/campi_flegrei_example_all_times/20170512/LiCSAlert_figure_with_020_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170512/LiCSAlert_figure_with_020_monitoring_interferograms.png new file mode 100644 index 00000000..7fc1a7a5 Binary files /dev/null and b/campi_flegrei_example_all_times/20170512/LiCSAlert_figure_with_020_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170512/mask_status.png b/campi_flegrei_example_all_times/20170512/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170512/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170512/volcano_status.txt b/campi_flegrei_example_all_times/20170512/volcano_status.txt new file mode 100644 index 00000000..0ac4587d --- /dev/null +++ b/campi_flegrei_example_all_times/20170512/volcano_status.txt @@ -0,0 +1,2 @@ +0.011040909232342008 +0.5313329474749817 diff --git a/campi_flegrei_example_all_times/20170518/01_cumulative_20141031_20170518.png b/campi_flegrei_example_all_times/20170518/01_cumulative_20141031_20170518.png new file mode 100644 index 00000000..c6319bb1 Binary files /dev/null and b/campi_flegrei_example_all_times/20170518/01_cumulative_20141031_20170518.png differ diff --git a/campi_flegrei_example_all_times/20170518/02_incremental_20170512_20170518.png b/campi_flegrei_example_all_times/20170518/02_incremental_20170512_20170518.png new file mode 100644 index 00000000..e50163ff Binary files /dev/null and b/campi_flegrei_example_all_times/20170518/02_incremental_20170512_20170518.png differ diff --git a/campi_flegrei_example_all_times/20170518/03_reconstruction_20170512_20170518.png b/campi_flegrei_example_all_times/20170518/03_reconstruction_20170512_20170518.png new file mode 100644 index 00000000..e7b01ea6 Binary files /dev/null and b/campi_flegrei_example_all_times/20170518/03_reconstruction_20170512_20170518.png differ diff --git a/campi_flegrei_example_all_times/20170518/04_residual_20170512_20170518.png b/campi_flegrei_example_all_times/20170518/04_residual_20170512_20170518.png new file mode 100644 index 00000000..9e266506 Binary files /dev/null and b/campi_flegrei_example_all_times/20170518/04_residual_20170512_20170518.png differ diff --git a/campi_flegrei_example_all_times/20170518/LiCSAlert_figure_with_021_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170518/LiCSAlert_figure_with_021_monitoring_interferograms.png new file mode 100644 index 00000000..86893b8f Binary files /dev/null and b/campi_flegrei_example_all_times/20170518/LiCSAlert_figure_with_021_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170518/mask_status.png b/campi_flegrei_example_all_times/20170518/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170518/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170518/volcano_status.txt b/campi_flegrei_example_all_times/20170518/volcano_status.txt new file mode 100644 index 00000000..1515d489 --- /dev/null +++ b/campi_flegrei_example_all_times/20170518/volcano_status.txt @@ -0,0 +1,2 @@ +0.17753385962291712 +0.07287456297857303 diff --git a/campi_flegrei_example_all_times/20170524/01_cumulative_20141031_20170524.png b/campi_flegrei_example_all_times/20170524/01_cumulative_20141031_20170524.png new file mode 100644 index 00000000..f68bcd2c Binary files /dev/null and b/campi_flegrei_example_all_times/20170524/01_cumulative_20141031_20170524.png differ diff --git a/campi_flegrei_example_all_times/20170524/02_incremental_20170518_20170524.png b/campi_flegrei_example_all_times/20170524/02_incremental_20170518_20170524.png new file mode 100644 index 00000000..494373b3 Binary files /dev/null and b/campi_flegrei_example_all_times/20170524/02_incremental_20170518_20170524.png differ diff --git a/campi_flegrei_example_all_times/20170524/03_reconstruction_20170518_20170524.png b/campi_flegrei_example_all_times/20170524/03_reconstruction_20170518_20170524.png new file mode 100644 index 00000000..b1de28e1 Binary files /dev/null and b/campi_flegrei_example_all_times/20170524/03_reconstruction_20170518_20170524.png differ diff --git a/campi_flegrei_example_all_times/20170524/04_residual_20170518_20170524.png b/campi_flegrei_example_all_times/20170524/04_residual_20170518_20170524.png new file mode 100644 index 00000000..1e169e4e Binary files /dev/null and b/campi_flegrei_example_all_times/20170524/04_residual_20170518_20170524.png differ diff --git a/campi_flegrei_example_all_times/20170524/LiCSAlert_figure_with_022_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170524/LiCSAlert_figure_with_022_monitoring_interferograms.png new file mode 100644 index 00000000..d75ee10d Binary files /dev/null and b/campi_flegrei_example_all_times/20170524/LiCSAlert_figure_with_022_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170524/mask_status.png b/campi_flegrei_example_all_times/20170524/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170524/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170524/volcano_status.txt b/campi_flegrei_example_all_times/20170524/volcano_status.txt new file mode 100644 index 00000000..64dda38a --- /dev/null +++ b/campi_flegrei_example_all_times/20170524/volcano_status.txt @@ -0,0 +1,2 @@ +0.5741034101177244 +1.1605320887183297 diff --git a/campi_flegrei_example_all_times/20170530/01_cumulative_20141031_20170530.png b/campi_flegrei_example_all_times/20170530/01_cumulative_20141031_20170530.png new file mode 100644 index 00000000..38fc5f65 Binary files /dev/null and b/campi_flegrei_example_all_times/20170530/01_cumulative_20141031_20170530.png differ diff --git a/campi_flegrei_example_all_times/20170530/02_incremental_20170524_20170530.png b/campi_flegrei_example_all_times/20170530/02_incremental_20170524_20170530.png new file mode 100644 index 00000000..70498de6 Binary files /dev/null and b/campi_flegrei_example_all_times/20170530/02_incremental_20170524_20170530.png differ diff --git a/campi_flegrei_example_all_times/20170530/03_reconstruction_20170524_20170530.png b/campi_flegrei_example_all_times/20170530/03_reconstruction_20170524_20170530.png new file mode 100644 index 00000000..59ec172b Binary files /dev/null and b/campi_flegrei_example_all_times/20170530/03_reconstruction_20170524_20170530.png differ diff --git a/campi_flegrei_example_all_times/20170530/04_residual_20170524_20170530.png b/campi_flegrei_example_all_times/20170530/04_residual_20170524_20170530.png new file mode 100644 index 00000000..93c1943f Binary files /dev/null and b/campi_flegrei_example_all_times/20170530/04_residual_20170524_20170530.png differ diff --git a/campi_flegrei_example_all_times/20170530/LiCSAlert_figure_with_023_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170530/LiCSAlert_figure_with_023_monitoring_interferograms.png new file mode 100644 index 00000000..5adece4b Binary files /dev/null and b/campi_flegrei_example_all_times/20170530/LiCSAlert_figure_with_023_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170530/mask_status.png b/campi_flegrei_example_all_times/20170530/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170530/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170530/volcano_status.txt b/campi_flegrei_example_all_times/20170530/volcano_status.txt new file mode 100644 index 00000000..02045587 --- /dev/null +++ b/campi_flegrei_example_all_times/20170530/volcano_status.txt @@ -0,0 +1,2 @@ +0.9645347020563909 +1.2024601584491972 diff --git a/campi_flegrei_example_all_times/20170605/01_cumulative_20141031_20170605.png b/campi_flegrei_example_all_times/20170605/01_cumulative_20141031_20170605.png new file mode 100644 index 00000000..3f585c41 Binary files /dev/null and b/campi_flegrei_example_all_times/20170605/01_cumulative_20141031_20170605.png differ diff --git a/campi_flegrei_example_all_times/20170605/02_incremental_20170530_20170605.png b/campi_flegrei_example_all_times/20170605/02_incremental_20170530_20170605.png new file mode 100644 index 00000000..34258def Binary files /dev/null and b/campi_flegrei_example_all_times/20170605/02_incremental_20170530_20170605.png differ diff --git a/campi_flegrei_example_all_times/20170605/03_reconstruction_20170530_20170605.png b/campi_flegrei_example_all_times/20170605/03_reconstruction_20170530_20170605.png new file mode 100644 index 00000000..83f3a9d9 Binary files /dev/null and b/campi_flegrei_example_all_times/20170605/03_reconstruction_20170530_20170605.png differ diff --git a/campi_flegrei_example_all_times/20170605/04_residual_20170530_20170605.png b/campi_flegrei_example_all_times/20170605/04_residual_20170530_20170605.png new file mode 100644 index 00000000..5ed377a2 Binary files /dev/null and b/campi_flegrei_example_all_times/20170605/04_residual_20170530_20170605.png differ diff --git a/campi_flegrei_example_all_times/20170605/LiCSAlert_figure_with_024_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170605/LiCSAlert_figure_with_024_monitoring_interferograms.png new file mode 100644 index 00000000..7710feea Binary files /dev/null and b/campi_flegrei_example_all_times/20170605/LiCSAlert_figure_with_024_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170605/mask_status.png b/campi_flegrei_example_all_times/20170605/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170605/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170605/volcano_status.txt b/campi_flegrei_example_all_times/20170605/volcano_status.txt new file mode 100644 index 00000000..4ef49e39 --- /dev/null +++ b/campi_flegrei_example_all_times/20170605/volcano_status.txt @@ -0,0 +1,2 @@ +1.0183956762653328 +0.25789921720885706 diff --git a/campi_flegrei_example_all_times/20170611/01_cumulative_20141031_20170611.png b/campi_flegrei_example_all_times/20170611/01_cumulative_20141031_20170611.png new file mode 100644 index 00000000..dc1c6f68 Binary files /dev/null and b/campi_flegrei_example_all_times/20170611/01_cumulative_20141031_20170611.png differ diff --git a/campi_flegrei_example_all_times/20170611/02_incremental_20170605_20170611.png b/campi_flegrei_example_all_times/20170611/02_incremental_20170605_20170611.png new file mode 100644 index 00000000..4eea65b6 Binary files /dev/null and b/campi_flegrei_example_all_times/20170611/02_incremental_20170605_20170611.png differ diff --git a/campi_flegrei_example_all_times/20170611/03_reconstruction_20170605_20170611.png b/campi_flegrei_example_all_times/20170611/03_reconstruction_20170605_20170611.png new file mode 100644 index 00000000..ae131bae Binary files /dev/null and b/campi_flegrei_example_all_times/20170611/03_reconstruction_20170605_20170611.png differ diff --git a/campi_flegrei_example_all_times/20170611/04_residual_20170605_20170611.png b/campi_flegrei_example_all_times/20170611/04_residual_20170605_20170611.png new file mode 100644 index 00000000..b579c4eb Binary files /dev/null and b/campi_flegrei_example_all_times/20170611/04_residual_20170605_20170611.png differ diff --git a/campi_flegrei_example_all_times/20170611/LiCSAlert_figure_with_025_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170611/LiCSAlert_figure_with_025_monitoring_interferograms.png new file mode 100644 index 00000000..a7415174 Binary files /dev/null and b/campi_flegrei_example_all_times/20170611/LiCSAlert_figure_with_025_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170611/mask_status.png b/campi_flegrei_example_all_times/20170611/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170611/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170611/volcano_status.txt b/campi_flegrei_example_all_times/20170611/volcano_status.txt new file mode 100644 index 00000000..f4da8ce1 --- /dev/null +++ b/campi_flegrei_example_all_times/20170611/volcano_status.txt @@ -0,0 +1,2 @@ +1.8203100483708488 +0.15351106672989298 diff --git a/campi_flegrei_example_all_times/20170617/01_cumulative_20141031_20170617.png b/campi_flegrei_example_all_times/20170617/01_cumulative_20141031_20170617.png new file mode 100644 index 00000000..938d24c2 Binary files /dev/null and b/campi_flegrei_example_all_times/20170617/01_cumulative_20141031_20170617.png differ diff --git a/campi_flegrei_example_all_times/20170617/02_incremental_20170611_20170617.png b/campi_flegrei_example_all_times/20170617/02_incremental_20170611_20170617.png new file mode 100644 index 00000000..87aa5ce6 Binary files /dev/null and b/campi_flegrei_example_all_times/20170617/02_incremental_20170611_20170617.png differ diff --git a/campi_flegrei_example_all_times/20170617/03_reconstruction_20170611_20170617.png b/campi_flegrei_example_all_times/20170617/03_reconstruction_20170611_20170617.png new file mode 100644 index 00000000..99ea7f1a Binary files /dev/null and b/campi_flegrei_example_all_times/20170617/03_reconstruction_20170611_20170617.png differ diff --git a/campi_flegrei_example_all_times/20170617/04_residual_20170611_20170617.png b/campi_flegrei_example_all_times/20170617/04_residual_20170611_20170617.png new file mode 100644 index 00000000..890c401b Binary files /dev/null and b/campi_flegrei_example_all_times/20170617/04_residual_20170611_20170617.png differ diff --git a/campi_flegrei_example_all_times/20170617/LiCSAlert_figure_with_026_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170617/LiCSAlert_figure_with_026_monitoring_interferograms.png new file mode 100644 index 00000000..fb39a42d Binary files /dev/null and b/campi_flegrei_example_all_times/20170617/LiCSAlert_figure_with_026_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170617/mask_status.png b/campi_flegrei_example_all_times/20170617/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170617/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170617/volcano_status.txt b/campi_flegrei_example_all_times/20170617/volcano_status.txt new file mode 100644 index 00000000..3c008b80 --- /dev/null +++ b/campi_flegrei_example_all_times/20170617/volcano_status.txt @@ -0,0 +1,2 @@ +0.3475710217554752 +0.5366283398572601 diff --git a/campi_flegrei_example_all_times/20170623/01_cumulative_20141031_20170623.png b/campi_flegrei_example_all_times/20170623/01_cumulative_20141031_20170623.png new file mode 100644 index 00000000..9b502926 Binary files /dev/null and b/campi_flegrei_example_all_times/20170623/01_cumulative_20141031_20170623.png differ diff --git a/campi_flegrei_example_all_times/20170623/02_incremental_20170617_20170623.png b/campi_flegrei_example_all_times/20170623/02_incremental_20170617_20170623.png new file mode 100644 index 00000000..df5c86c1 Binary files /dev/null and b/campi_flegrei_example_all_times/20170623/02_incremental_20170617_20170623.png differ diff --git a/campi_flegrei_example_all_times/20170623/03_reconstruction_20170617_20170623.png b/campi_flegrei_example_all_times/20170623/03_reconstruction_20170617_20170623.png new file mode 100644 index 00000000..6bfc9604 Binary files /dev/null and b/campi_flegrei_example_all_times/20170623/03_reconstruction_20170617_20170623.png differ diff --git a/campi_flegrei_example_all_times/20170623/04_residual_20170617_20170623.png b/campi_flegrei_example_all_times/20170623/04_residual_20170617_20170623.png new file mode 100644 index 00000000..1a887766 Binary files /dev/null and b/campi_flegrei_example_all_times/20170623/04_residual_20170617_20170623.png differ diff --git a/campi_flegrei_example_all_times/20170623/LiCSAlert_figure_with_027_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170623/LiCSAlert_figure_with_027_monitoring_interferograms.png new file mode 100644 index 00000000..68ea4f81 Binary files /dev/null and b/campi_flegrei_example_all_times/20170623/LiCSAlert_figure_with_027_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170623/mask_status.png b/campi_flegrei_example_all_times/20170623/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170623/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170623/volcano_status.txt b/campi_flegrei_example_all_times/20170623/volcano_status.txt new file mode 100644 index 00000000..16d93d94 --- /dev/null +++ b/campi_flegrei_example_all_times/20170623/volcano_status.txt @@ -0,0 +1,2 @@ +0.6661167875968947 +0.2528972336702549 diff --git a/campi_flegrei_example_all_times/20170629/01_cumulative_20141031_20170629.png b/campi_flegrei_example_all_times/20170629/01_cumulative_20141031_20170629.png new file mode 100644 index 00000000..e8ce5c40 Binary files /dev/null and b/campi_flegrei_example_all_times/20170629/01_cumulative_20141031_20170629.png differ diff --git a/campi_flegrei_example_all_times/20170629/02_incremental_20170623_20170629.png b/campi_flegrei_example_all_times/20170629/02_incremental_20170623_20170629.png new file mode 100644 index 00000000..a29f8bc3 Binary files /dev/null and b/campi_flegrei_example_all_times/20170629/02_incremental_20170623_20170629.png differ diff --git a/campi_flegrei_example_all_times/20170629/03_reconstruction_20170623_20170629.png b/campi_flegrei_example_all_times/20170629/03_reconstruction_20170623_20170629.png new file mode 100644 index 00000000..216ea085 Binary files /dev/null and b/campi_flegrei_example_all_times/20170629/03_reconstruction_20170623_20170629.png differ diff --git a/campi_flegrei_example_all_times/20170629/04_residual_20170623_20170629.png b/campi_flegrei_example_all_times/20170629/04_residual_20170623_20170629.png new file mode 100644 index 00000000..20d8ae08 Binary files /dev/null and b/campi_flegrei_example_all_times/20170629/04_residual_20170623_20170629.png differ diff --git a/campi_flegrei_example_all_times/20170629/LiCSAlert_figure_with_028_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170629/LiCSAlert_figure_with_028_monitoring_interferograms.png new file mode 100644 index 00000000..4f3f83aa Binary files /dev/null and b/campi_flegrei_example_all_times/20170629/LiCSAlert_figure_with_028_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170629/mask_status.png b/campi_flegrei_example_all_times/20170629/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170629/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170629/volcano_status.txt b/campi_flegrei_example_all_times/20170629/volcano_status.txt new file mode 100644 index 00000000..ea97f38c --- /dev/null +++ b/campi_flegrei_example_all_times/20170629/volcano_status.txt @@ -0,0 +1,2 @@ +0.0939289387431796 +3.4614938379197446 diff --git a/campi_flegrei_example_all_times/20170705/01_cumulative_20141031_20170705.png b/campi_flegrei_example_all_times/20170705/01_cumulative_20141031_20170705.png new file mode 100644 index 00000000..cb591818 Binary files /dev/null and b/campi_flegrei_example_all_times/20170705/01_cumulative_20141031_20170705.png differ diff --git a/campi_flegrei_example_all_times/20170705/02_incremental_20170629_20170705.png b/campi_flegrei_example_all_times/20170705/02_incremental_20170629_20170705.png new file mode 100644 index 00000000..62434d71 Binary files /dev/null and b/campi_flegrei_example_all_times/20170705/02_incremental_20170629_20170705.png differ diff --git a/campi_flegrei_example_all_times/20170705/03_reconstruction_20170629_20170705.png b/campi_flegrei_example_all_times/20170705/03_reconstruction_20170629_20170705.png new file mode 100644 index 00000000..e3e23e2c Binary files /dev/null and b/campi_flegrei_example_all_times/20170705/03_reconstruction_20170629_20170705.png differ diff --git a/campi_flegrei_example_all_times/20170705/04_residual_20170629_20170705.png b/campi_flegrei_example_all_times/20170705/04_residual_20170629_20170705.png new file mode 100644 index 00000000..8d247015 Binary files /dev/null and b/campi_flegrei_example_all_times/20170705/04_residual_20170629_20170705.png differ diff --git a/campi_flegrei_example_all_times/20170705/LiCSAlert_figure_with_029_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170705/LiCSAlert_figure_with_029_monitoring_interferograms.png new file mode 100644 index 00000000..e87fc942 Binary files /dev/null and b/campi_flegrei_example_all_times/20170705/LiCSAlert_figure_with_029_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170705/mask_status.png b/campi_flegrei_example_all_times/20170705/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170705/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170705/volcano_status.txt b/campi_flegrei_example_all_times/20170705/volcano_status.txt new file mode 100644 index 00000000..c5e0dda6 --- /dev/null +++ b/campi_flegrei_example_all_times/20170705/volcano_status.txt @@ -0,0 +1,2 @@ +0.4807281505780392 +0.5772019194599558 diff --git a/campi_flegrei_example_all_times/20170711/01_cumulative_20141031_20170711.png b/campi_flegrei_example_all_times/20170711/01_cumulative_20141031_20170711.png new file mode 100644 index 00000000..cb2ea689 Binary files /dev/null and b/campi_flegrei_example_all_times/20170711/01_cumulative_20141031_20170711.png differ diff --git a/campi_flegrei_example_all_times/20170711/02_incremental_20170705_20170711.png b/campi_flegrei_example_all_times/20170711/02_incremental_20170705_20170711.png new file mode 100644 index 00000000..ea115a1e Binary files /dev/null and b/campi_flegrei_example_all_times/20170711/02_incremental_20170705_20170711.png differ diff --git a/campi_flegrei_example_all_times/20170711/03_reconstruction_20170705_20170711.png b/campi_flegrei_example_all_times/20170711/03_reconstruction_20170705_20170711.png new file mode 100644 index 00000000..4eaf6070 Binary files /dev/null and b/campi_flegrei_example_all_times/20170711/03_reconstruction_20170705_20170711.png differ diff --git a/campi_flegrei_example_all_times/20170711/04_residual_20170705_20170711.png b/campi_flegrei_example_all_times/20170711/04_residual_20170705_20170711.png new file mode 100644 index 00000000..68e02488 Binary files /dev/null and b/campi_flegrei_example_all_times/20170711/04_residual_20170705_20170711.png differ diff --git a/campi_flegrei_example_all_times/20170711/LiCSAlert_figure_with_030_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170711/LiCSAlert_figure_with_030_monitoring_interferograms.png new file mode 100644 index 00000000..701f950d Binary files /dev/null and b/campi_flegrei_example_all_times/20170711/LiCSAlert_figure_with_030_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170711/mask_status.png b/campi_flegrei_example_all_times/20170711/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170711/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170711/volcano_status.txt b/campi_flegrei_example_all_times/20170711/volcano_status.txt new file mode 100644 index 00000000..4fc0566a --- /dev/null +++ b/campi_flegrei_example_all_times/20170711/volcano_status.txt @@ -0,0 +1,2 @@ +0.9759675710194189 +0.7329786194967107 diff --git a/campi_flegrei_example_all_times/20170717/01_cumulative_20141031_20170717.png b/campi_flegrei_example_all_times/20170717/01_cumulative_20141031_20170717.png new file mode 100644 index 00000000..80d0effc Binary files /dev/null and b/campi_flegrei_example_all_times/20170717/01_cumulative_20141031_20170717.png differ diff --git a/campi_flegrei_example_all_times/20170717/02_incremental_20170711_20170717.png b/campi_flegrei_example_all_times/20170717/02_incremental_20170711_20170717.png new file mode 100644 index 00000000..5180fc23 Binary files /dev/null and b/campi_flegrei_example_all_times/20170717/02_incremental_20170711_20170717.png differ diff --git a/campi_flegrei_example_all_times/20170717/03_reconstruction_20170711_20170717.png b/campi_flegrei_example_all_times/20170717/03_reconstruction_20170711_20170717.png new file mode 100644 index 00000000..a6e26b21 Binary files /dev/null and b/campi_flegrei_example_all_times/20170717/03_reconstruction_20170711_20170717.png differ diff --git a/campi_flegrei_example_all_times/20170717/04_residual_20170711_20170717.png b/campi_flegrei_example_all_times/20170717/04_residual_20170711_20170717.png new file mode 100644 index 00000000..884eddc8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170717/04_residual_20170711_20170717.png differ diff --git a/campi_flegrei_example_all_times/20170717/LiCSAlert_figure_with_031_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170717/LiCSAlert_figure_with_031_monitoring_interferograms.png new file mode 100644 index 00000000..14d3f179 Binary files /dev/null and b/campi_flegrei_example_all_times/20170717/LiCSAlert_figure_with_031_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170717/mask_status.png b/campi_flegrei_example_all_times/20170717/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170717/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170717/volcano_status.txt b/campi_flegrei_example_all_times/20170717/volcano_status.txt new file mode 100644 index 00000000..9bd21f70 --- /dev/null +++ b/campi_flegrei_example_all_times/20170717/volcano_status.txt @@ -0,0 +1,2 @@ +0.3704280426109491 +3.172914218834298 diff --git a/campi_flegrei_example_all_times/20170723/01_cumulative_20141031_20170723.png b/campi_flegrei_example_all_times/20170723/01_cumulative_20141031_20170723.png new file mode 100644 index 00000000..d12c5495 Binary files /dev/null and b/campi_flegrei_example_all_times/20170723/01_cumulative_20141031_20170723.png differ diff --git a/campi_flegrei_example_all_times/20170723/02_incremental_20170717_20170723.png b/campi_flegrei_example_all_times/20170723/02_incremental_20170717_20170723.png new file mode 100644 index 00000000..7e2fa5a2 Binary files /dev/null and b/campi_flegrei_example_all_times/20170723/02_incremental_20170717_20170723.png differ diff --git a/campi_flegrei_example_all_times/20170723/03_reconstruction_20170717_20170723.png b/campi_flegrei_example_all_times/20170723/03_reconstruction_20170717_20170723.png new file mode 100644 index 00000000..dee25be5 Binary files /dev/null and b/campi_flegrei_example_all_times/20170723/03_reconstruction_20170717_20170723.png differ diff --git a/campi_flegrei_example_all_times/20170723/04_residual_20170717_20170723.png b/campi_flegrei_example_all_times/20170723/04_residual_20170717_20170723.png new file mode 100644 index 00000000..8ae66fd5 Binary files /dev/null and b/campi_flegrei_example_all_times/20170723/04_residual_20170717_20170723.png differ diff --git a/campi_flegrei_example_all_times/20170723/LiCSAlert_figure_with_032_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170723/LiCSAlert_figure_with_032_monitoring_interferograms.png new file mode 100644 index 00000000..254ce9e4 Binary files /dev/null and b/campi_flegrei_example_all_times/20170723/LiCSAlert_figure_with_032_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170723/mask_status.png b/campi_flegrei_example_all_times/20170723/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170723/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170723/volcano_status.txt b/campi_flegrei_example_all_times/20170723/volcano_status.txt new file mode 100644 index 00000000..cca2e995 --- /dev/null +++ b/campi_flegrei_example_all_times/20170723/volcano_status.txt @@ -0,0 +1,2 @@ +3.264415058387659 +0.9371575053525122 diff --git a/campi_flegrei_example_all_times/20170729/01_cumulative_20141031_20170729.png b/campi_flegrei_example_all_times/20170729/01_cumulative_20141031_20170729.png new file mode 100644 index 00000000..1214cb1e Binary files /dev/null and b/campi_flegrei_example_all_times/20170729/01_cumulative_20141031_20170729.png differ diff --git a/campi_flegrei_example_all_times/20170729/02_incremental_20170723_20170729.png b/campi_flegrei_example_all_times/20170729/02_incremental_20170723_20170729.png new file mode 100644 index 00000000..515386b5 Binary files /dev/null and b/campi_flegrei_example_all_times/20170729/02_incremental_20170723_20170729.png differ diff --git a/campi_flegrei_example_all_times/20170729/03_reconstruction_20170723_20170729.png b/campi_flegrei_example_all_times/20170729/03_reconstruction_20170723_20170729.png new file mode 100644 index 00000000..523c6ab4 Binary files /dev/null and b/campi_flegrei_example_all_times/20170729/03_reconstruction_20170723_20170729.png differ diff --git a/campi_flegrei_example_all_times/20170729/04_residual_20170723_20170729.png b/campi_flegrei_example_all_times/20170729/04_residual_20170723_20170729.png new file mode 100644 index 00000000..e61ae018 Binary files /dev/null and b/campi_flegrei_example_all_times/20170729/04_residual_20170723_20170729.png differ diff --git a/campi_flegrei_example_all_times/20170729/LiCSAlert_figure_with_033_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170729/LiCSAlert_figure_with_033_monitoring_interferograms.png new file mode 100644 index 00000000..b6841d6b Binary files /dev/null and b/campi_flegrei_example_all_times/20170729/LiCSAlert_figure_with_033_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170729/mask_status.png b/campi_flegrei_example_all_times/20170729/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170729/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170729/volcano_status.txt b/campi_flegrei_example_all_times/20170729/volcano_status.txt new file mode 100644 index 00000000..7dc24650 --- /dev/null +++ b/campi_flegrei_example_all_times/20170729/volcano_status.txt @@ -0,0 +1,2 @@ +1.0387817090391254 +1.168827242583647 diff --git a/campi_flegrei_example_all_times/20170804/01_cumulative_20141031_20170804.png b/campi_flegrei_example_all_times/20170804/01_cumulative_20141031_20170804.png new file mode 100644 index 00000000..353044cf Binary files /dev/null and b/campi_flegrei_example_all_times/20170804/01_cumulative_20141031_20170804.png differ diff --git a/campi_flegrei_example_all_times/20170804/02_incremental_20170729_20170804.png b/campi_flegrei_example_all_times/20170804/02_incremental_20170729_20170804.png new file mode 100644 index 00000000..c752d2bf Binary files /dev/null and b/campi_flegrei_example_all_times/20170804/02_incremental_20170729_20170804.png differ diff --git a/campi_flegrei_example_all_times/20170804/03_reconstruction_20170729_20170804.png b/campi_flegrei_example_all_times/20170804/03_reconstruction_20170729_20170804.png new file mode 100644 index 00000000..a6f60441 Binary files /dev/null and b/campi_flegrei_example_all_times/20170804/03_reconstruction_20170729_20170804.png differ diff --git a/campi_flegrei_example_all_times/20170804/04_residual_20170729_20170804.png b/campi_flegrei_example_all_times/20170804/04_residual_20170729_20170804.png new file mode 100644 index 00000000..36ee11e1 Binary files /dev/null and b/campi_flegrei_example_all_times/20170804/04_residual_20170729_20170804.png differ diff --git a/campi_flegrei_example_all_times/20170804/LiCSAlert_figure_with_034_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170804/LiCSAlert_figure_with_034_monitoring_interferograms.png new file mode 100644 index 00000000..9d713b3d Binary files /dev/null and b/campi_flegrei_example_all_times/20170804/LiCSAlert_figure_with_034_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170804/mask_status.png b/campi_flegrei_example_all_times/20170804/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170804/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170804/volcano_status.txt b/campi_flegrei_example_all_times/20170804/volcano_status.txt new file mode 100644 index 00000000..d4238541 --- /dev/null +++ b/campi_flegrei_example_all_times/20170804/volcano_status.txt @@ -0,0 +1,2 @@ +1.135878014313332 +0.7076386018627416 diff --git a/campi_flegrei_example_all_times/20170816/01_cumulative_20141031_20170816.png b/campi_flegrei_example_all_times/20170816/01_cumulative_20141031_20170816.png new file mode 100644 index 00000000..52684b59 Binary files /dev/null and b/campi_flegrei_example_all_times/20170816/01_cumulative_20141031_20170816.png differ diff --git a/campi_flegrei_example_all_times/20170816/02_incremental_20170804_20170816.png b/campi_flegrei_example_all_times/20170816/02_incremental_20170804_20170816.png new file mode 100644 index 00000000..20a411c8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170816/02_incremental_20170804_20170816.png differ diff --git a/campi_flegrei_example_all_times/20170816/03_reconstruction_20170804_20170816.png b/campi_flegrei_example_all_times/20170816/03_reconstruction_20170804_20170816.png new file mode 100644 index 00000000..c6ceedad Binary files /dev/null and b/campi_flegrei_example_all_times/20170816/03_reconstruction_20170804_20170816.png differ diff --git a/campi_flegrei_example_all_times/20170816/04_residual_20170804_20170816.png b/campi_flegrei_example_all_times/20170816/04_residual_20170804_20170816.png new file mode 100644 index 00000000..7f2b6a63 Binary files /dev/null and b/campi_flegrei_example_all_times/20170816/04_residual_20170804_20170816.png differ diff --git a/campi_flegrei_example_all_times/20170816/LiCSAlert_figure_with_035_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170816/LiCSAlert_figure_with_035_monitoring_interferograms.png new file mode 100644 index 00000000..122f47c5 Binary files /dev/null and b/campi_flegrei_example_all_times/20170816/LiCSAlert_figure_with_035_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170816/mask_status.png b/campi_flegrei_example_all_times/20170816/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170816/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170816/volcano_status.txt b/campi_flegrei_example_all_times/20170816/volcano_status.txt new file mode 100644 index 00000000..8d65743a --- /dev/null +++ b/campi_flegrei_example_all_times/20170816/volcano_status.txt @@ -0,0 +1,2 @@ +0.0797843228878656 +0.7622565147654432 diff --git a/campi_flegrei_example_all_times/20170822/01_cumulative_20141031_20170822.png b/campi_flegrei_example_all_times/20170822/01_cumulative_20141031_20170822.png new file mode 100644 index 00000000..405780ee Binary files /dev/null and b/campi_flegrei_example_all_times/20170822/01_cumulative_20141031_20170822.png differ diff --git a/campi_flegrei_example_all_times/20170822/02_incremental_20170816_20170822.png b/campi_flegrei_example_all_times/20170822/02_incremental_20170816_20170822.png new file mode 100644 index 00000000..86779c5c Binary files /dev/null and b/campi_flegrei_example_all_times/20170822/02_incremental_20170816_20170822.png differ diff --git a/campi_flegrei_example_all_times/20170822/03_reconstruction_20170816_20170822.png b/campi_flegrei_example_all_times/20170822/03_reconstruction_20170816_20170822.png new file mode 100644 index 00000000..fb0a8986 Binary files /dev/null and b/campi_flegrei_example_all_times/20170822/03_reconstruction_20170816_20170822.png differ diff --git a/campi_flegrei_example_all_times/20170822/04_residual_20170816_20170822.png b/campi_flegrei_example_all_times/20170822/04_residual_20170816_20170822.png new file mode 100644 index 00000000..f0073f24 Binary files /dev/null and b/campi_flegrei_example_all_times/20170822/04_residual_20170816_20170822.png differ diff --git a/campi_flegrei_example_all_times/20170822/LiCSAlert_figure_with_036_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170822/LiCSAlert_figure_with_036_monitoring_interferograms.png new file mode 100644 index 00000000..b9f094ef Binary files /dev/null and b/campi_flegrei_example_all_times/20170822/LiCSAlert_figure_with_036_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170822/mask_status.png b/campi_flegrei_example_all_times/20170822/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170822/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170822/volcano_status.txt b/campi_flegrei_example_all_times/20170822/volcano_status.txt new file mode 100644 index 00000000..c437e978 --- /dev/null +++ b/campi_flegrei_example_all_times/20170822/volcano_status.txt @@ -0,0 +1,2 @@ +0.5781715588466034 +1.5782751211065695 diff --git a/campi_flegrei_example_all_times/20170828/01_cumulative_20141031_20170828.png b/campi_flegrei_example_all_times/20170828/01_cumulative_20141031_20170828.png new file mode 100644 index 00000000..f5c965c9 Binary files /dev/null and b/campi_flegrei_example_all_times/20170828/01_cumulative_20141031_20170828.png differ diff --git a/campi_flegrei_example_all_times/20170828/02_incremental_20170822_20170828.png b/campi_flegrei_example_all_times/20170828/02_incremental_20170822_20170828.png new file mode 100644 index 00000000..fa14fe4d Binary files /dev/null and b/campi_flegrei_example_all_times/20170828/02_incremental_20170822_20170828.png differ diff --git a/campi_flegrei_example_all_times/20170828/03_reconstruction_20170822_20170828.png b/campi_flegrei_example_all_times/20170828/03_reconstruction_20170822_20170828.png new file mode 100644 index 00000000..5c4eddf3 Binary files /dev/null and b/campi_flegrei_example_all_times/20170828/03_reconstruction_20170822_20170828.png differ diff --git a/campi_flegrei_example_all_times/20170828/04_residual_20170822_20170828.png b/campi_flegrei_example_all_times/20170828/04_residual_20170822_20170828.png new file mode 100644 index 00000000..4aac8d03 Binary files /dev/null and b/campi_flegrei_example_all_times/20170828/04_residual_20170822_20170828.png differ diff --git a/campi_flegrei_example_all_times/20170828/LiCSAlert_figure_with_037_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170828/LiCSAlert_figure_with_037_monitoring_interferograms.png new file mode 100644 index 00000000..10ebc02a Binary files /dev/null and b/campi_flegrei_example_all_times/20170828/LiCSAlert_figure_with_037_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170828/mask_status.png b/campi_flegrei_example_all_times/20170828/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170828/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170828/volcano_status.txt b/campi_flegrei_example_all_times/20170828/volcano_status.txt new file mode 100644 index 00000000..891f9220 --- /dev/null +++ b/campi_flegrei_example_all_times/20170828/volcano_status.txt @@ -0,0 +1,2 @@ +0.13331588393293353 +0.6575587046413458 diff --git a/campi_flegrei_example_all_times/20170903/01_cumulative_20141031_20170903.png b/campi_flegrei_example_all_times/20170903/01_cumulative_20141031_20170903.png new file mode 100644 index 00000000..96621782 Binary files /dev/null and b/campi_flegrei_example_all_times/20170903/01_cumulative_20141031_20170903.png differ diff --git a/campi_flegrei_example_all_times/20170903/02_incremental_20170828_20170903.png b/campi_flegrei_example_all_times/20170903/02_incremental_20170828_20170903.png new file mode 100644 index 00000000..be52ba3c Binary files /dev/null and b/campi_flegrei_example_all_times/20170903/02_incremental_20170828_20170903.png differ diff --git a/campi_flegrei_example_all_times/20170903/03_reconstruction_20170828_20170903.png b/campi_flegrei_example_all_times/20170903/03_reconstruction_20170828_20170903.png new file mode 100644 index 00000000..8d9f9050 Binary files /dev/null and b/campi_flegrei_example_all_times/20170903/03_reconstruction_20170828_20170903.png differ diff --git a/campi_flegrei_example_all_times/20170903/04_residual_20170828_20170903.png b/campi_flegrei_example_all_times/20170903/04_residual_20170828_20170903.png new file mode 100644 index 00000000..2e6147b9 Binary files /dev/null and b/campi_flegrei_example_all_times/20170903/04_residual_20170828_20170903.png differ diff --git a/campi_flegrei_example_all_times/20170903/LiCSAlert_figure_with_038_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170903/LiCSAlert_figure_with_038_monitoring_interferograms.png new file mode 100644 index 00000000..06647b22 Binary files /dev/null and b/campi_flegrei_example_all_times/20170903/LiCSAlert_figure_with_038_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170903/mask_status.png b/campi_flegrei_example_all_times/20170903/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170903/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170903/volcano_status.txt b/campi_flegrei_example_all_times/20170903/volcano_status.txt new file mode 100644 index 00000000..48ae95e3 --- /dev/null +++ b/campi_flegrei_example_all_times/20170903/volcano_status.txt @@ -0,0 +1,2 @@ +0.29220978143562115 +0.7205540632936268 diff --git a/campi_flegrei_example_all_times/20170909/01_cumulative_20141031_20170909.png b/campi_flegrei_example_all_times/20170909/01_cumulative_20141031_20170909.png new file mode 100644 index 00000000..bc867c79 Binary files /dev/null and b/campi_flegrei_example_all_times/20170909/01_cumulative_20141031_20170909.png differ diff --git a/campi_flegrei_example_all_times/20170909/02_incremental_20170903_20170909.png b/campi_flegrei_example_all_times/20170909/02_incremental_20170903_20170909.png new file mode 100644 index 00000000..01de6020 Binary files /dev/null and b/campi_flegrei_example_all_times/20170909/02_incremental_20170903_20170909.png differ diff --git a/campi_flegrei_example_all_times/20170909/03_reconstruction_20170903_20170909.png b/campi_flegrei_example_all_times/20170909/03_reconstruction_20170903_20170909.png new file mode 100644 index 00000000..8c59c2cd Binary files /dev/null and b/campi_flegrei_example_all_times/20170909/03_reconstruction_20170903_20170909.png differ diff --git a/campi_flegrei_example_all_times/20170909/04_residual_20170903_20170909.png b/campi_flegrei_example_all_times/20170909/04_residual_20170903_20170909.png new file mode 100644 index 00000000..d85aaa2b Binary files /dev/null and b/campi_flegrei_example_all_times/20170909/04_residual_20170903_20170909.png differ diff --git a/campi_flegrei_example_all_times/20170909/LiCSAlert_figure_with_039_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170909/LiCSAlert_figure_with_039_monitoring_interferograms.png new file mode 100644 index 00000000..886ccf52 Binary files /dev/null and b/campi_flegrei_example_all_times/20170909/LiCSAlert_figure_with_039_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170909/mask_status.png b/campi_flegrei_example_all_times/20170909/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170909/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170909/volcano_status.txt b/campi_flegrei_example_all_times/20170909/volcano_status.txt new file mode 100644 index 00000000..572fbfbb --- /dev/null +++ b/campi_flegrei_example_all_times/20170909/volcano_status.txt @@ -0,0 +1,2 @@ +0.17088320728301581 +6.491607089720202 diff --git a/campi_flegrei_example_all_times/20170915/01_cumulative_20141031_20170915.png b/campi_flegrei_example_all_times/20170915/01_cumulative_20141031_20170915.png new file mode 100644 index 00000000..377c70ed Binary files /dev/null and b/campi_flegrei_example_all_times/20170915/01_cumulative_20141031_20170915.png differ diff --git a/campi_flegrei_example_all_times/20170915/02_incremental_20170909_20170915.png b/campi_flegrei_example_all_times/20170915/02_incremental_20170909_20170915.png new file mode 100644 index 00000000..6b1e4663 Binary files /dev/null and b/campi_flegrei_example_all_times/20170915/02_incremental_20170909_20170915.png differ diff --git a/campi_flegrei_example_all_times/20170915/03_reconstruction_20170909_20170915.png b/campi_flegrei_example_all_times/20170915/03_reconstruction_20170909_20170915.png new file mode 100644 index 00000000..bd435d19 Binary files /dev/null and b/campi_flegrei_example_all_times/20170915/03_reconstruction_20170909_20170915.png differ diff --git a/campi_flegrei_example_all_times/20170915/04_residual_20170909_20170915.png b/campi_flegrei_example_all_times/20170915/04_residual_20170909_20170915.png new file mode 100644 index 00000000..a28a8db9 Binary files /dev/null and b/campi_flegrei_example_all_times/20170915/04_residual_20170909_20170915.png differ diff --git a/campi_flegrei_example_all_times/20170915/LiCSAlert_figure_with_040_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170915/LiCSAlert_figure_with_040_monitoring_interferograms.png new file mode 100644 index 00000000..f5480881 Binary files /dev/null and b/campi_flegrei_example_all_times/20170915/LiCSAlert_figure_with_040_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170915/mask_status.png b/campi_flegrei_example_all_times/20170915/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170915/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170915/volcano_status.txt b/campi_flegrei_example_all_times/20170915/volcano_status.txt new file mode 100644 index 00000000..2f630c32 --- /dev/null +++ b/campi_flegrei_example_all_times/20170915/volcano_status.txt @@ -0,0 +1,2 @@ +0.08719636523530226 +1.4499003671609587 diff --git a/campi_flegrei_example_all_times/20170921/01_cumulative_20141031_20170921.png b/campi_flegrei_example_all_times/20170921/01_cumulative_20141031_20170921.png new file mode 100644 index 00000000..e87f1d67 Binary files /dev/null and b/campi_flegrei_example_all_times/20170921/01_cumulative_20141031_20170921.png differ diff --git a/campi_flegrei_example_all_times/20170921/02_incremental_20170915_20170921.png b/campi_flegrei_example_all_times/20170921/02_incremental_20170915_20170921.png new file mode 100644 index 00000000..12db6c9d Binary files /dev/null and b/campi_flegrei_example_all_times/20170921/02_incremental_20170915_20170921.png differ diff --git a/campi_flegrei_example_all_times/20170921/03_reconstruction_20170915_20170921.png b/campi_flegrei_example_all_times/20170921/03_reconstruction_20170915_20170921.png new file mode 100644 index 00000000..3e99fd06 Binary files /dev/null and b/campi_flegrei_example_all_times/20170921/03_reconstruction_20170915_20170921.png differ diff --git a/campi_flegrei_example_all_times/20170921/04_residual_20170915_20170921.png b/campi_flegrei_example_all_times/20170921/04_residual_20170915_20170921.png new file mode 100644 index 00000000..a8bd6289 Binary files /dev/null and b/campi_flegrei_example_all_times/20170921/04_residual_20170915_20170921.png differ diff --git a/campi_flegrei_example_all_times/20170921/LiCSAlert_figure_with_041_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170921/LiCSAlert_figure_with_041_monitoring_interferograms.png new file mode 100644 index 00000000..212eccc1 Binary files /dev/null and b/campi_flegrei_example_all_times/20170921/LiCSAlert_figure_with_041_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170921/mask_status.png b/campi_flegrei_example_all_times/20170921/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170921/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170921/volcano_status.txt b/campi_flegrei_example_all_times/20170921/volcano_status.txt new file mode 100644 index 00000000..8c58f1f1 --- /dev/null +++ b/campi_flegrei_example_all_times/20170921/volcano_status.txt @@ -0,0 +1,2 @@ +0.3219489296093552 +1.9999922426364392 diff --git a/campi_flegrei_example_all_times/20170927/01_cumulative_20141031_20170927.png b/campi_flegrei_example_all_times/20170927/01_cumulative_20141031_20170927.png new file mode 100644 index 00000000..2233be4b Binary files /dev/null and b/campi_flegrei_example_all_times/20170927/01_cumulative_20141031_20170927.png differ diff --git a/campi_flegrei_example_all_times/20170927/02_incremental_20170921_20170927.png b/campi_flegrei_example_all_times/20170927/02_incremental_20170921_20170927.png new file mode 100644 index 00000000..ff83b5b7 Binary files /dev/null and b/campi_flegrei_example_all_times/20170927/02_incremental_20170921_20170927.png differ diff --git a/campi_flegrei_example_all_times/20170927/03_reconstruction_20170921_20170927.png b/campi_flegrei_example_all_times/20170927/03_reconstruction_20170921_20170927.png new file mode 100644 index 00000000..7008ed0b Binary files /dev/null and b/campi_flegrei_example_all_times/20170927/03_reconstruction_20170921_20170927.png differ diff --git a/campi_flegrei_example_all_times/20170927/04_residual_20170921_20170927.png b/campi_flegrei_example_all_times/20170927/04_residual_20170921_20170927.png new file mode 100644 index 00000000..df3d1f0a Binary files /dev/null and b/campi_flegrei_example_all_times/20170927/04_residual_20170921_20170927.png differ diff --git a/campi_flegrei_example_all_times/20170927/LiCSAlert_figure_with_042_monitoring_interferograms.png b/campi_flegrei_example_all_times/20170927/LiCSAlert_figure_with_042_monitoring_interferograms.png new file mode 100644 index 00000000..088a849f Binary files /dev/null and b/campi_flegrei_example_all_times/20170927/LiCSAlert_figure_with_042_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20170927/mask_status.png b/campi_flegrei_example_all_times/20170927/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20170927/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20170927/volcano_status.txt b/campi_flegrei_example_all_times/20170927/volcano_status.txt new file mode 100644 index 00000000..121a6fd6 --- /dev/null +++ b/campi_flegrei_example_all_times/20170927/volcano_status.txt @@ -0,0 +1,2 @@ +0.4077450142031599 +1.4984932179638186 diff --git a/campi_flegrei_example_all_times/20171009/01_cumulative_20141031_20171009.png b/campi_flegrei_example_all_times/20171009/01_cumulative_20141031_20171009.png new file mode 100644 index 00000000..45764cef Binary files /dev/null and b/campi_flegrei_example_all_times/20171009/01_cumulative_20141031_20171009.png differ diff --git a/campi_flegrei_example_all_times/20171009/02_incremental_20170927_20171009.png b/campi_flegrei_example_all_times/20171009/02_incremental_20170927_20171009.png new file mode 100644 index 00000000..9e1d0473 Binary files /dev/null and b/campi_flegrei_example_all_times/20171009/02_incremental_20170927_20171009.png differ diff --git a/campi_flegrei_example_all_times/20171009/03_reconstruction_20170927_20171009.png b/campi_flegrei_example_all_times/20171009/03_reconstruction_20170927_20171009.png new file mode 100644 index 00000000..6f7bd495 Binary files /dev/null and b/campi_flegrei_example_all_times/20171009/03_reconstruction_20170927_20171009.png differ diff --git a/campi_flegrei_example_all_times/20171009/04_residual_20170927_20171009.png b/campi_flegrei_example_all_times/20171009/04_residual_20170927_20171009.png new file mode 100644 index 00000000..ed8af644 Binary files /dev/null and b/campi_flegrei_example_all_times/20171009/04_residual_20170927_20171009.png differ diff --git a/campi_flegrei_example_all_times/20171009/LiCSAlert_figure_with_043_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171009/LiCSAlert_figure_with_043_monitoring_interferograms.png new file mode 100644 index 00000000..24090827 Binary files /dev/null and b/campi_flegrei_example_all_times/20171009/LiCSAlert_figure_with_043_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171009/mask_status.png b/campi_flegrei_example_all_times/20171009/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171009/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171009/volcano_status.txt b/campi_flegrei_example_all_times/20171009/volcano_status.txt new file mode 100644 index 00000000..6ac17071 --- /dev/null +++ b/campi_flegrei_example_all_times/20171009/volcano_status.txt @@ -0,0 +1,2 @@ +0.6101671591597606 +0.7804806316863686 diff --git a/campi_flegrei_example_all_times/20171015/01_cumulative_20141031_20171015.png b/campi_flegrei_example_all_times/20171015/01_cumulative_20141031_20171015.png new file mode 100644 index 00000000..bdbe2845 Binary files /dev/null and b/campi_flegrei_example_all_times/20171015/01_cumulative_20141031_20171015.png differ diff --git a/campi_flegrei_example_all_times/20171015/02_incremental_20171009_20171015.png b/campi_flegrei_example_all_times/20171015/02_incremental_20171009_20171015.png new file mode 100644 index 00000000..de51ba89 Binary files /dev/null and b/campi_flegrei_example_all_times/20171015/02_incremental_20171009_20171015.png differ diff --git a/campi_flegrei_example_all_times/20171015/03_reconstruction_20171009_20171015.png b/campi_flegrei_example_all_times/20171015/03_reconstruction_20171009_20171015.png new file mode 100644 index 00000000..62c9caac Binary files /dev/null and b/campi_flegrei_example_all_times/20171015/03_reconstruction_20171009_20171015.png differ diff --git a/campi_flegrei_example_all_times/20171015/04_residual_20171009_20171015.png b/campi_flegrei_example_all_times/20171015/04_residual_20171009_20171015.png new file mode 100644 index 00000000..36515597 Binary files /dev/null and b/campi_flegrei_example_all_times/20171015/04_residual_20171009_20171015.png differ diff --git a/campi_flegrei_example_all_times/20171015/LiCSAlert_figure_with_044_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171015/LiCSAlert_figure_with_044_monitoring_interferograms.png new file mode 100644 index 00000000..009e4b5e Binary files /dev/null and b/campi_flegrei_example_all_times/20171015/LiCSAlert_figure_with_044_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171015/mask_status.png b/campi_flegrei_example_all_times/20171015/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171015/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171015/volcano_status.txt b/campi_flegrei_example_all_times/20171015/volcano_status.txt new file mode 100644 index 00000000..9e4235f4 --- /dev/null +++ b/campi_flegrei_example_all_times/20171015/volcano_status.txt @@ -0,0 +1,2 @@ +0.10208942461179814 +0.39404150295606855 diff --git a/campi_flegrei_example_all_times/20171021/01_cumulative_20141031_20171021.png b/campi_flegrei_example_all_times/20171021/01_cumulative_20141031_20171021.png new file mode 100644 index 00000000..e0facc90 Binary files /dev/null and b/campi_flegrei_example_all_times/20171021/01_cumulative_20141031_20171021.png differ diff --git a/campi_flegrei_example_all_times/20171021/02_incremental_20171015_20171021.png b/campi_flegrei_example_all_times/20171021/02_incremental_20171015_20171021.png new file mode 100644 index 00000000..6d504049 Binary files /dev/null and b/campi_flegrei_example_all_times/20171021/02_incremental_20171015_20171021.png differ diff --git a/campi_flegrei_example_all_times/20171021/03_reconstruction_20171015_20171021.png b/campi_flegrei_example_all_times/20171021/03_reconstruction_20171015_20171021.png new file mode 100644 index 00000000..88678b33 Binary files /dev/null and b/campi_flegrei_example_all_times/20171021/03_reconstruction_20171015_20171021.png differ diff --git a/campi_flegrei_example_all_times/20171021/04_residual_20171015_20171021.png b/campi_flegrei_example_all_times/20171021/04_residual_20171015_20171021.png new file mode 100644 index 00000000..bdc134a4 Binary files /dev/null and b/campi_flegrei_example_all_times/20171021/04_residual_20171015_20171021.png differ diff --git a/campi_flegrei_example_all_times/20171021/LiCSAlert_figure_with_045_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171021/LiCSAlert_figure_with_045_monitoring_interferograms.png new file mode 100644 index 00000000..8005ab1c Binary files /dev/null and b/campi_flegrei_example_all_times/20171021/LiCSAlert_figure_with_045_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171021/mask_status.png b/campi_flegrei_example_all_times/20171021/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171021/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171021/volcano_status.txt b/campi_flegrei_example_all_times/20171021/volcano_status.txt new file mode 100644 index 00000000..8dc4726d --- /dev/null +++ b/campi_flegrei_example_all_times/20171021/volcano_status.txt @@ -0,0 +1,2 @@ +0.48980950718357963 +1.3322390213893363 diff --git a/campi_flegrei_example_all_times/20171027/01_cumulative_20141031_20171027.png b/campi_flegrei_example_all_times/20171027/01_cumulative_20141031_20171027.png new file mode 100644 index 00000000..6d880c07 Binary files /dev/null and b/campi_flegrei_example_all_times/20171027/01_cumulative_20141031_20171027.png differ diff --git a/campi_flegrei_example_all_times/20171027/02_incremental_20171021_20171027.png b/campi_flegrei_example_all_times/20171027/02_incremental_20171021_20171027.png new file mode 100644 index 00000000..c638d546 Binary files /dev/null and b/campi_flegrei_example_all_times/20171027/02_incremental_20171021_20171027.png differ diff --git a/campi_flegrei_example_all_times/20171027/03_reconstruction_20171021_20171027.png b/campi_flegrei_example_all_times/20171027/03_reconstruction_20171021_20171027.png new file mode 100644 index 00000000..82c0e302 Binary files /dev/null and b/campi_flegrei_example_all_times/20171027/03_reconstruction_20171021_20171027.png differ diff --git a/campi_flegrei_example_all_times/20171027/04_residual_20171021_20171027.png b/campi_flegrei_example_all_times/20171027/04_residual_20171021_20171027.png new file mode 100644 index 00000000..ecdba11f Binary files /dev/null and b/campi_flegrei_example_all_times/20171027/04_residual_20171021_20171027.png differ diff --git a/campi_flegrei_example_all_times/20171027/LiCSAlert_figure_with_046_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171027/LiCSAlert_figure_with_046_monitoring_interferograms.png new file mode 100644 index 00000000..62357add Binary files /dev/null and b/campi_flegrei_example_all_times/20171027/LiCSAlert_figure_with_046_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171027/mask_status.png b/campi_flegrei_example_all_times/20171027/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171027/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171027/volcano_status.txt b/campi_flegrei_example_all_times/20171027/volcano_status.txt new file mode 100644 index 00000000..a75f4dfc --- /dev/null +++ b/campi_flegrei_example_all_times/20171027/volcano_status.txt @@ -0,0 +1,2 @@ +0.3134193003059196 +0.5282603911420163 diff --git a/campi_flegrei_example_all_times/20171102/01_cumulative_20141031_20171102.png b/campi_flegrei_example_all_times/20171102/01_cumulative_20141031_20171102.png new file mode 100644 index 00000000..b836ecd6 Binary files /dev/null and b/campi_flegrei_example_all_times/20171102/01_cumulative_20141031_20171102.png differ diff --git a/campi_flegrei_example_all_times/20171102/02_incremental_20171027_20171102.png b/campi_flegrei_example_all_times/20171102/02_incremental_20171027_20171102.png new file mode 100644 index 00000000..99d847aa Binary files /dev/null and b/campi_flegrei_example_all_times/20171102/02_incremental_20171027_20171102.png differ diff --git a/campi_flegrei_example_all_times/20171102/03_reconstruction_20171027_20171102.png b/campi_flegrei_example_all_times/20171102/03_reconstruction_20171027_20171102.png new file mode 100644 index 00000000..0efc80bd Binary files /dev/null and b/campi_flegrei_example_all_times/20171102/03_reconstruction_20171027_20171102.png differ diff --git a/campi_flegrei_example_all_times/20171102/04_residual_20171027_20171102.png b/campi_flegrei_example_all_times/20171102/04_residual_20171027_20171102.png new file mode 100644 index 00000000..9bd216e2 Binary files /dev/null and b/campi_flegrei_example_all_times/20171102/04_residual_20171027_20171102.png differ diff --git a/campi_flegrei_example_all_times/20171102/LiCSAlert_figure_with_047_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171102/LiCSAlert_figure_with_047_monitoring_interferograms.png new file mode 100644 index 00000000..35409a35 Binary files /dev/null and b/campi_flegrei_example_all_times/20171102/LiCSAlert_figure_with_047_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171102/mask_status.png b/campi_flegrei_example_all_times/20171102/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171102/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171102/volcano_status.txt b/campi_flegrei_example_all_times/20171102/volcano_status.txt new file mode 100644 index 00000000..1e18b659 --- /dev/null +++ b/campi_flegrei_example_all_times/20171102/volcano_status.txt @@ -0,0 +1,2 @@ +1.1753895446948905 +1.832775815825269 diff --git a/campi_flegrei_example_all_times/20171108/01_cumulative_20141031_20171108.png b/campi_flegrei_example_all_times/20171108/01_cumulative_20141031_20171108.png new file mode 100644 index 00000000..ebda957f Binary files /dev/null and b/campi_flegrei_example_all_times/20171108/01_cumulative_20141031_20171108.png differ diff --git a/campi_flegrei_example_all_times/20171108/02_incremental_20171102_20171108.png b/campi_flegrei_example_all_times/20171108/02_incremental_20171102_20171108.png new file mode 100644 index 00000000..71f4f048 Binary files /dev/null and b/campi_flegrei_example_all_times/20171108/02_incremental_20171102_20171108.png differ diff --git a/campi_flegrei_example_all_times/20171108/03_reconstruction_20171102_20171108.png b/campi_flegrei_example_all_times/20171108/03_reconstruction_20171102_20171108.png new file mode 100644 index 00000000..0cdcc9a2 Binary files /dev/null and b/campi_flegrei_example_all_times/20171108/03_reconstruction_20171102_20171108.png differ diff --git a/campi_flegrei_example_all_times/20171108/04_residual_20171102_20171108.png b/campi_flegrei_example_all_times/20171108/04_residual_20171102_20171108.png new file mode 100644 index 00000000..c6b726fd Binary files /dev/null and b/campi_flegrei_example_all_times/20171108/04_residual_20171102_20171108.png differ diff --git a/campi_flegrei_example_all_times/20171108/LiCSAlert_figure_with_048_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171108/LiCSAlert_figure_with_048_monitoring_interferograms.png new file mode 100644 index 00000000..bd2651bc Binary files /dev/null and b/campi_flegrei_example_all_times/20171108/LiCSAlert_figure_with_048_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171108/mask_status.png b/campi_flegrei_example_all_times/20171108/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171108/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171108/volcano_status.txt b/campi_flegrei_example_all_times/20171108/volcano_status.txt new file mode 100644 index 00000000..f703e791 --- /dev/null +++ b/campi_flegrei_example_all_times/20171108/volcano_status.txt @@ -0,0 +1,2 @@ +0.7218920215947396 +1.2651099385509614 diff --git a/campi_flegrei_example_all_times/20171114/01_cumulative_20141031_20171114.png b/campi_flegrei_example_all_times/20171114/01_cumulative_20141031_20171114.png new file mode 100644 index 00000000..d2f94788 Binary files /dev/null and b/campi_flegrei_example_all_times/20171114/01_cumulative_20141031_20171114.png differ diff --git a/campi_flegrei_example_all_times/20171114/02_incremental_20171108_20171114.png b/campi_flegrei_example_all_times/20171114/02_incremental_20171108_20171114.png new file mode 100644 index 00000000..fe6a08cd Binary files /dev/null and b/campi_flegrei_example_all_times/20171114/02_incremental_20171108_20171114.png differ diff --git a/campi_flegrei_example_all_times/20171114/03_reconstruction_20171108_20171114.png b/campi_flegrei_example_all_times/20171114/03_reconstruction_20171108_20171114.png new file mode 100644 index 00000000..02fd71e2 Binary files /dev/null and b/campi_flegrei_example_all_times/20171114/03_reconstruction_20171108_20171114.png differ diff --git a/campi_flegrei_example_all_times/20171114/04_residual_20171108_20171114.png b/campi_flegrei_example_all_times/20171114/04_residual_20171108_20171114.png new file mode 100644 index 00000000..41ef2d7b Binary files /dev/null and b/campi_flegrei_example_all_times/20171114/04_residual_20171108_20171114.png differ diff --git a/campi_flegrei_example_all_times/20171114/LiCSAlert_figure_with_049_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171114/LiCSAlert_figure_with_049_monitoring_interferograms.png new file mode 100644 index 00000000..a5bc6f2a Binary files /dev/null and b/campi_flegrei_example_all_times/20171114/LiCSAlert_figure_with_049_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171114/mask_status.png b/campi_flegrei_example_all_times/20171114/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171114/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171114/volcano_status.txt b/campi_flegrei_example_all_times/20171114/volcano_status.txt new file mode 100644 index 00000000..f2fdb1e1 --- /dev/null +++ b/campi_flegrei_example_all_times/20171114/volcano_status.txt @@ -0,0 +1,2 @@ +0.07802877861472934 +1.6129127346296277 diff --git a/campi_flegrei_example_all_times/20171120/01_cumulative_20141031_20171120.png b/campi_flegrei_example_all_times/20171120/01_cumulative_20141031_20171120.png new file mode 100644 index 00000000..a474a330 Binary files /dev/null and b/campi_flegrei_example_all_times/20171120/01_cumulative_20141031_20171120.png differ diff --git a/campi_flegrei_example_all_times/20171120/02_incremental_20171114_20171120.png b/campi_flegrei_example_all_times/20171120/02_incremental_20171114_20171120.png new file mode 100644 index 00000000..009cde79 Binary files /dev/null and b/campi_flegrei_example_all_times/20171120/02_incremental_20171114_20171120.png differ diff --git a/campi_flegrei_example_all_times/20171120/03_reconstruction_20171114_20171120.png b/campi_flegrei_example_all_times/20171120/03_reconstruction_20171114_20171120.png new file mode 100644 index 00000000..254f0a0b Binary files /dev/null and b/campi_flegrei_example_all_times/20171120/03_reconstruction_20171114_20171120.png differ diff --git a/campi_flegrei_example_all_times/20171120/04_residual_20171114_20171120.png b/campi_flegrei_example_all_times/20171120/04_residual_20171114_20171120.png new file mode 100644 index 00000000..2fc8d7ad Binary files /dev/null and b/campi_flegrei_example_all_times/20171120/04_residual_20171114_20171120.png differ diff --git a/campi_flegrei_example_all_times/20171120/LiCSAlert_figure_with_050_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171120/LiCSAlert_figure_with_050_monitoring_interferograms.png new file mode 100644 index 00000000..c838747d Binary files /dev/null and b/campi_flegrei_example_all_times/20171120/LiCSAlert_figure_with_050_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171120/mask_status.png b/campi_flegrei_example_all_times/20171120/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171120/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171120/volcano_status.txt b/campi_flegrei_example_all_times/20171120/volcano_status.txt new file mode 100644 index 00000000..d2667db8 --- /dev/null +++ b/campi_flegrei_example_all_times/20171120/volcano_status.txt @@ -0,0 +1,2 @@ +1.128380372414859 +0.7115268076574488 diff --git a/campi_flegrei_example_all_times/20171202/01_cumulative_20141031_20171202.png b/campi_flegrei_example_all_times/20171202/01_cumulative_20141031_20171202.png new file mode 100644 index 00000000..59f236ba Binary files /dev/null and b/campi_flegrei_example_all_times/20171202/01_cumulative_20141031_20171202.png differ diff --git a/campi_flegrei_example_all_times/20171202/02_incremental_20171120_20171202.png b/campi_flegrei_example_all_times/20171202/02_incremental_20171120_20171202.png new file mode 100644 index 00000000..325579f2 Binary files /dev/null and b/campi_flegrei_example_all_times/20171202/02_incremental_20171120_20171202.png differ diff --git a/campi_flegrei_example_all_times/20171202/03_reconstruction_20171120_20171202.png b/campi_flegrei_example_all_times/20171202/03_reconstruction_20171120_20171202.png new file mode 100644 index 00000000..a6f59f01 Binary files /dev/null and b/campi_flegrei_example_all_times/20171202/03_reconstruction_20171120_20171202.png differ diff --git a/campi_flegrei_example_all_times/20171202/04_residual_20171120_20171202.png b/campi_flegrei_example_all_times/20171202/04_residual_20171120_20171202.png new file mode 100644 index 00000000..872003b7 Binary files /dev/null and b/campi_flegrei_example_all_times/20171202/04_residual_20171120_20171202.png differ diff --git a/campi_flegrei_example_all_times/20171202/LiCSAlert_figure_with_051_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171202/LiCSAlert_figure_with_051_monitoring_interferograms.png new file mode 100644 index 00000000..a0bcb8ef Binary files /dev/null and b/campi_flegrei_example_all_times/20171202/LiCSAlert_figure_with_051_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171202/mask_status.png b/campi_flegrei_example_all_times/20171202/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171202/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171202/volcano_status.txt b/campi_flegrei_example_all_times/20171202/volcano_status.txt new file mode 100644 index 00000000..ad23b355 --- /dev/null +++ b/campi_flegrei_example_all_times/20171202/volcano_status.txt @@ -0,0 +1,2 @@ +0.8663965198607345 +0.22625268480203278 diff --git a/campi_flegrei_example_all_times/20171208/01_cumulative_20141031_20171208.png b/campi_flegrei_example_all_times/20171208/01_cumulative_20141031_20171208.png new file mode 100644 index 00000000..1d9d2348 Binary files /dev/null and b/campi_flegrei_example_all_times/20171208/01_cumulative_20141031_20171208.png differ diff --git a/campi_flegrei_example_all_times/20171208/02_incremental_20171202_20171208.png b/campi_flegrei_example_all_times/20171208/02_incremental_20171202_20171208.png new file mode 100644 index 00000000..1263cee8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171208/02_incremental_20171202_20171208.png differ diff --git a/campi_flegrei_example_all_times/20171208/03_reconstruction_20171202_20171208.png b/campi_flegrei_example_all_times/20171208/03_reconstruction_20171202_20171208.png new file mode 100644 index 00000000..d9cb33e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171208/03_reconstruction_20171202_20171208.png differ diff --git a/campi_flegrei_example_all_times/20171208/04_residual_20171202_20171208.png b/campi_flegrei_example_all_times/20171208/04_residual_20171202_20171208.png new file mode 100644 index 00000000..944fcfbe Binary files /dev/null and b/campi_flegrei_example_all_times/20171208/04_residual_20171202_20171208.png differ diff --git a/campi_flegrei_example_all_times/20171208/LiCSAlert_figure_with_052_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171208/LiCSAlert_figure_with_052_monitoring_interferograms.png new file mode 100644 index 00000000..d2f19f95 Binary files /dev/null and b/campi_flegrei_example_all_times/20171208/LiCSAlert_figure_with_052_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171208/mask_status.png b/campi_flegrei_example_all_times/20171208/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171208/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171208/volcano_status.txt b/campi_flegrei_example_all_times/20171208/volcano_status.txt new file mode 100644 index 00000000..c9d2ce8d --- /dev/null +++ b/campi_flegrei_example_all_times/20171208/volcano_status.txt @@ -0,0 +1,2 @@ +0.4584180788060385 +0.8698293026284518 diff --git a/campi_flegrei_example_all_times/20171214/01_cumulative_20141031_20171214.png b/campi_flegrei_example_all_times/20171214/01_cumulative_20141031_20171214.png new file mode 100644 index 00000000..7e080b3f Binary files /dev/null and b/campi_flegrei_example_all_times/20171214/01_cumulative_20141031_20171214.png differ diff --git a/campi_flegrei_example_all_times/20171214/02_incremental_20171208_20171214.png b/campi_flegrei_example_all_times/20171214/02_incremental_20171208_20171214.png new file mode 100644 index 00000000..46f15aac Binary files /dev/null and b/campi_flegrei_example_all_times/20171214/02_incremental_20171208_20171214.png differ diff --git a/campi_flegrei_example_all_times/20171214/03_reconstruction_20171208_20171214.png b/campi_flegrei_example_all_times/20171214/03_reconstruction_20171208_20171214.png new file mode 100644 index 00000000..b11dd99d Binary files /dev/null and b/campi_flegrei_example_all_times/20171214/03_reconstruction_20171208_20171214.png differ diff --git a/campi_flegrei_example_all_times/20171214/04_residual_20171208_20171214.png b/campi_flegrei_example_all_times/20171214/04_residual_20171208_20171214.png new file mode 100644 index 00000000..27541ff2 Binary files /dev/null and b/campi_flegrei_example_all_times/20171214/04_residual_20171208_20171214.png differ diff --git a/campi_flegrei_example_all_times/20171214/LiCSAlert_figure_with_053_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171214/LiCSAlert_figure_with_053_monitoring_interferograms.png new file mode 100644 index 00000000..3a788387 Binary files /dev/null and b/campi_flegrei_example_all_times/20171214/LiCSAlert_figure_with_053_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171214/mask_status.png b/campi_flegrei_example_all_times/20171214/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171214/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171214/volcano_status.txt b/campi_flegrei_example_all_times/20171214/volcano_status.txt new file mode 100644 index 00000000..620b4313 --- /dev/null +++ b/campi_flegrei_example_all_times/20171214/volcano_status.txt @@ -0,0 +1,2 @@ +0.4779037536766034 +1.5613000009736444 diff --git a/campi_flegrei_example_all_times/20171226/01_cumulative_20141031_20171226.png b/campi_flegrei_example_all_times/20171226/01_cumulative_20141031_20171226.png new file mode 100644 index 00000000..9bcedb53 Binary files /dev/null and b/campi_flegrei_example_all_times/20171226/01_cumulative_20141031_20171226.png differ diff --git a/campi_flegrei_example_all_times/20171226/02_incremental_20171214_20171226.png b/campi_flegrei_example_all_times/20171226/02_incremental_20171214_20171226.png new file mode 100644 index 00000000..bb042b34 Binary files /dev/null and b/campi_flegrei_example_all_times/20171226/02_incremental_20171214_20171226.png differ diff --git a/campi_flegrei_example_all_times/20171226/03_reconstruction_20171214_20171226.png b/campi_flegrei_example_all_times/20171226/03_reconstruction_20171214_20171226.png new file mode 100644 index 00000000..7f701a7f Binary files /dev/null and b/campi_flegrei_example_all_times/20171226/03_reconstruction_20171214_20171226.png differ diff --git a/campi_flegrei_example_all_times/20171226/04_residual_20171214_20171226.png b/campi_flegrei_example_all_times/20171226/04_residual_20171214_20171226.png new file mode 100644 index 00000000..2fcf4a61 Binary files /dev/null and b/campi_flegrei_example_all_times/20171226/04_residual_20171214_20171226.png differ diff --git a/campi_flegrei_example_all_times/20171226/LiCSAlert_figure_with_054_monitoring_interferograms.png b/campi_flegrei_example_all_times/20171226/LiCSAlert_figure_with_054_monitoring_interferograms.png new file mode 100644 index 00000000..94b981f6 Binary files /dev/null and b/campi_flegrei_example_all_times/20171226/LiCSAlert_figure_with_054_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20171226/mask_status.png b/campi_flegrei_example_all_times/20171226/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20171226/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20171226/volcano_status.txt b/campi_flegrei_example_all_times/20171226/volcano_status.txt new file mode 100644 index 00000000..1fda4be1 --- /dev/null +++ b/campi_flegrei_example_all_times/20171226/volcano_status.txt @@ -0,0 +1,2 @@ +0.3926071836555157 +1.0227286088202874 diff --git a/campi_flegrei_example_all_times/20180101/01_cumulative_20141031_20180101.png b/campi_flegrei_example_all_times/20180101/01_cumulative_20141031_20180101.png new file mode 100644 index 00000000..15a6ea10 Binary files /dev/null and b/campi_flegrei_example_all_times/20180101/01_cumulative_20141031_20180101.png differ diff --git a/campi_flegrei_example_all_times/20180101/02_incremental_20171226_20180101.png b/campi_flegrei_example_all_times/20180101/02_incremental_20171226_20180101.png new file mode 100644 index 00000000..93b73751 Binary files /dev/null and b/campi_flegrei_example_all_times/20180101/02_incremental_20171226_20180101.png differ diff --git a/campi_flegrei_example_all_times/20180101/03_reconstruction_20171226_20180101.png b/campi_flegrei_example_all_times/20180101/03_reconstruction_20171226_20180101.png new file mode 100644 index 00000000..03c0931a Binary files /dev/null and b/campi_flegrei_example_all_times/20180101/03_reconstruction_20171226_20180101.png differ diff --git a/campi_flegrei_example_all_times/20180101/04_residual_20171226_20180101.png b/campi_flegrei_example_all_times/20180101/04_residual_20171226_20180101.png new file mode 100644 index 00000000..d67e2529 Binary files /dev/null and b/campi_flegrei_example_all_times/20180101/04_residual_20171226_20180101.png differ diff --git a/campi_flegrei_example_all_times/20180101/LiCSAlert_figure_with_055_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180101/LiCSAlert_figure_with_055_monitoring_interferograms.png new file mode 100644 index 00000000..49a80052 Binary files /dev/null and b/campi_flegrei_example_all_times/20180101/LiCSAlert_figure_with_055_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180101/mask_status.png b/campi_flegrei_example_all_times/20180101/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180101/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180101/volcano_status.txt b/campi_flegrei_example_all_times/20180101/volcano_status.txt new file mode 100644 index 00000000..c21ed6e3 --- /dev/null +++ b/campi_flegrei_example_all_times/20180101/volcano_status.txt @@ -0,0 +1,2 @@ +0.8345921766916385 +0.20051533937449434 diff --git a/campi_flegrei_example_all_times/20180107/01_cumulative_20141031_20180107.png b/campi_flegrei_example_all_times/20180107/01_cumulative_20141031_20180107.png new file mode 100644 index 00000000..94aa46c8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180107/01_cumulative_20141031_20180107.png differ diff --git a/campi_flegrei_example_all_times/20180107/02_incremental_20180101_20180107.png b/campi_flegrei_example_all_times/20180107/02_incremental_20180101_20180107.png new file mode 100644 index 00000000..c3f89721 Binary files /dev/null and b/campi_flegrei_example_all_times/20180107/02_incremental_20180101_20180107.png differ diff --git a/campi_flegrei_example_all_times/20180107/03_reconstruction_20180101_20180107.png b/campi_flegrei_example_all_times/20180107/03_reconstruction_20180101_20180107.png new file mode 100644 index 00000000..d5e17536 Binary files /dev/null and b/campi_flegrei_example_all_times/20180107/03_reconstruction_20180101_20180107.png differ diff --git a/campi_flegrei_example_all_times/20180107/04_residual_20180101_20180107.png b/campi_flegrei_example_all_times/20180107/04_residual_20180101_20180107.png new file mode 100644 index 00000000..1b02fd9e Binary files /dev/null and b/campi_flegrei_example_all_times/20180107/04_residual_20180101_20180107.png differ diff --git a/campi_flegrei_example_all_times/20180107/LiCSAlert_figure_with_056_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180107/LiCSAlert_figure_with_056_monitoring_interferograms.png new file mode 100644 index 00000000..647f7000 Binary files /dev/null and b/campi_flegrei_example_all_times/20180107/LiCSAlert_figure_with_056_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180107/mask_status.png b/campi_flegrei_example_all_times/20180107/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180107/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180107/volcano_status.txt b/campi_flegrei_example_all_times/20180107/volcano_status.txt new file mode 100644 index 00000000..9e0a5bff --- /dev/null +++ b/campi_flegrei_example_all_times/20180107/volcano_status.txt @@ -0,0 +1,2 @@ +2.3233986473711474 +1.7988714748697479 diff --git a/campi_flegrei_example_all_times/20180113/01_cumulative_20141031_20180113.png b/campi_flegrei_example_all_times/20180113/01_cumulative_20141031_20180113.png new file mode 100644 index 00000000..096dce60 Binary files /dev/null and b/campi_flegrei_example_all_times/20180113/01_cumulative_20141031_20180113.png differ diff --git a/campi_flegrei_example_all_times/20180113/02_incremental_20180107_20180113.png b/campi_flegrei_example_all_times/20180113/02_incremental_20180107_20180113.png new file mode 100644 index 00000000..e4065164 Binary files /dev/null and b/campi_flegrei_example_all_times/20180113/02_incremental_20180107_20180113.png differ diff --git a/campi_flegrei_example_all_times/20180113/03_reconstruction_20180107_20180113.png b/campi_flegrei_example_all_times/20180113/03_reconstruction_20180107_20180113.png new file mode 100644 index 00000000..381004d8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180113/03_reconstruction_20180107_20180113.png differ diff --git a/campi_flegrei_example_all_times/20180113/04_residual_20180107_20180113.png b/campi_flegrei_example_all_times/20180113/04_residual_20180107_20180113.png new file mode 100644 index 00000000..3f55d4a0 Binary files /dev/null and b/campi_flegrei_example_all_times/20180113/04_residual_20180107_20180113.png differ diff --git a/campi_flegrei_example_all_times/20180113/LiCSAlert_figure_with_057_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180113/LiCSAlert_figure_with_057_monitoring_interferograms.png new file mode 100644 index 00000000..a43192d6 Binary files /dev/null and b/campi_flegrei_example_all_times/20180113/LiCSAlert_figure_with_057_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180113/mask_status.png b/campi_flegrei_example_all_times/20180113/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180113/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180113/volcano_status.txt b/campi_flegrei_example_all_times/20180113/volcano_status.txt new file mode 100644 index 00000000..cd98eb79 --- /dev/null +++ b/campi_flegrei_example_all_times/20180113/volcano_status.txt @@ -0,0 +1,2 @@ +0.8923187072381151 +0.3507312873333129 diff --git a/campi_flegrei_example_all_times/20180119/01_cumulative_20141031_20180119.png b/campi_flegrei_example_all_times/20180119/01_cumulative_20141031_20180119.png new file mode 100644 index 00000000..684e5a28 Binary files /dev/null and b/campi_flegrei_example_all_times/20180119/01_cumulative_20141031_20180119.png differ diff --git a/campi_flegrei_example_all_times/20180119/02_incremental_20180113_20180119.png b/campi_flegrei_example_all_times/20180119/02_incremental_20180113_20180119.png new file mode 100644 index 00000000..84e7b903 Binary files /dev/null and b/campi_flegrei_example_all_times/20180119/02_incremental_20180113_20180119.png differ diff --git a/campi_flegrei_example_all_times/20180119/03_reconstruction_20180113_20180119.png b/campi_flegrei_example_all_times/20180119/03_reconstruction_20180113_20180119.png new file mode 100644 index 00000000..46c1876c Binary files /dev/null and b/campi_flegrei_example_all_times/20180119/03_reconstruction_20180113_20180119.png differ diff --git a/campi_flegrei_example_all_times/20180119/04_residual_20180113_20180119.png b/campi_flegrei_example_all_times/20180119/04_residual_20180113_20180119.png new file mode 100644 index 00000000..073bfcc0 Binary files /dev/null and b/campi_flegrei_example_all_times/20180119/04_residual_20180113_20180119.png differ diff --git a/campi_flegrei_example_all_times/20180119/LiCSAlert_figure_with_058_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180119/LiCSAlert_figure_with_058_monitoring_interferograms.png new file mode 100644 index 00000000..79e9b38c Binary files /dev/null and b/campi_flegrei_example_all_times/20180119/LiCSAlert_figure_with_058_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180119/mask_status.png b/campi_flegrei_example_all_times/20180119/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180119/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180119/volcano_status.txt b/campi_flegrei_example_all_times/20180119/volcano_status.txt new file mode 100644 index 00000000..e0b574c7 --- /dev/null +++ b/campi_flegrei_example_all_times/20180119/volcano_status.txt @@ -0,0 +1,2 @@ +0.5119894770344388 +1.1388214262394247 diff --git a/campi_flegrei_example_all_times/20180125/01_cumulative_20141031_20180125.png b/campi_flegrei_example_all_times/20180125/01_cumulative_20141031_20180125.png new file mode 100644 index 00000000..fcd9aa7d Binary files /dev/null and b/campi_flegrei_example_all_times/20180125/01_cumulative_20141031_20180125.png differ diff --git a/campi_flegrei_example_all_times/20180125/02_incremental_20180119_20180125.png b/campi_flegrei_example_all_times/20180125/02_incremental_20180119_20180125.png new file mode 100644 index 00000000..435bb737 Binary files /dev/null and b/campi_flegrei_example_all_times/20180125/02_incremental_20180119_20180125.png differ diff --git a/campi_flegrei_example_all_times/20180125/03_reconstruction_20180119_20180125.png b/campi_flegrei_example_all_times/20180125/03_reconstruction_20180119_20180125.png new file mode 100644 index 00000000..8cfd84e1 Binary files /dev/null and b/campi_flegrei_example_all_times/20180125/03_reconstruction_20180119_20180125.png differ diff --git a/campi_flegrei_example_all_times/20180125/04_residual_20180119_20180125.png b/campi_flegrei_example_all_times/20180125/04_residual_20180119_20180125.png new file mode 100644 index 00000000..d21e4249 Binary files /dev/null and b/campi_flegrei_example_all_times/20180125/04_residual_20180119_20180125.png differ diff --git a/campi_flegrei_example_all_times/20180125/LiCSAlert_figure_with_059_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180125/LiCSAlert_figure_with_059_monitoring_interferograms.png new file mode 100644 index 00000000..a7c5429f Binary files /dev/null and b/campi_flegrei_example_all_times/20180125/LiCSAlert_figure_with_059_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180125/mask_status.png b/campi_flegrei_example_all_times/20180125/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180125/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180125/volcano_status.txt b/campi_flegrei_example_all_times/20180125/volcano_status.txt new file mode 100644 index 00000000..14fef601 --- /dev/null +++ b/campi_flegrei_example_all_times/20180125/volcano_status.txt @@ -0,0 +1,2 @@ +0.15034585590068328 +0.37868324389869656 diff --git a/campi_flegrei_example_all_times/20180131/01_cumulative_20141031_20180131.png b/campi_flegrei_example_all_times/20180131/01_cumulative_20141031_20180131.png new file mode 100644 index 00000000..c91bce14 Binary files /dev/null and b/campi_flegrei_example_all_times/20180131/01_cumulative_20141031_20180131.png differ diff --git a/campi_flegrei_example_all_times/20180131/02_incremental_20180125_20180131.png b/campi_flegrei_example_all_times/20180131/02_incremental_20180125_20180131.png new file mode 100644 index 00000000..e4659942 Binary files /dev/null and b/campi_flegrei_example_all_times/20180131/02_incremental_20180125_20180131.png differ diff --git a/campi_flegrei_example_all_times/20180131/03_reconstruction_20180125_20180131.png b/campi_flegrei_example_all_times/20180131/03_reconstruction_20180125_20180131.png new file mode 100644 index 00000000..c154449b Binary files /dev/null and b/campi_flegrei_example_all_times/20180131/03_reconstruction_20180125_20180131.png differ diff --git a/campi_flegrei_example_all_times/20180131/04_residual_20180125_20180131.png b/campi_flegrei_example_all_times/20180131/04_residual_20180125_20180131.png new file mode 100644 index 00000000..13713c3f Binary files /dev/null and b/campi_flegrei_example_all_times/20180131/04_residual_20180125_20180131.png differ diff --git a/campi_flegrei_example_all_times/20180131/LiCSAlert_figure_with_060_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180131/LiCSAlert_figure_with_060_monitoring_interferograms.png new file mode 100644 index 00000000..8a55c8c9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180131/LiCSAlert_figure_with_060_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180131/mask_status.png b/campi_flegrei_example_all_times/20180131/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180131/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180131/volcano_status.txt b/campi_flegrei_example_all_times/20180131/volcano_status.txt new file mode 100644 index 00000000..c8001367 --- /dev/null +++ b/campi_flegrei_example_all_times/20180131/volcano_status.txt @@ -0,0 +1,2 @@ +0.0904886067328234 +1.119991533075323 diff --git a/campi_flegrei_example_all_times/20180206/01_cumulative_20141031_20180206.png b/campi_flegrei_example_all_times/20180206/01_cumulative_20141031_20180206.png new file mode 100644 index 00000000..246fca33 Binary files /dev/null and b/campi_flegrei_example_all_times/20180206/01_cumulative_20141031_20180206.png differ diff --git a/campi_flegrei_example_all_times/20180206/02_incremental_20180131_20180206.png b/campi_flegrei_example_all_times/20180206/02_incremental_20180131_20180206.png new file mode 100644 index 00000000..3639d022 Binary files /dev/null and b/campi_flegrei_example_all_times/20180206/02_incremental_20180131_20180206.png differ diff --git a/campi_flegrei_example_all_times/20180206/03_reconstruction_20180131_20180206.png b/campi_flegrei_example_all_times/20180206/03_reconstruction_20180131_20180206.png new file mode 100644 index 00000000..0a13eef8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180206/03_reconstruction_20180131_20180206.png differ diff --git a/campi_flegrei_example_all_times/20180206/04_residual_20180131_20180206.png b/campi_flegrei_example_all_times/20180206/04_residual_20180131_20180206.png new file mode 100644 index 00000000..f1575484 Binary files /dev/null and b/campi_flegrei_example_all_times/20180206/04_residual_20180131_20180206.png differ diff --git a/campi_flegrei_example_all_times/20180206/LiCSAlert_figure_with_061_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180206/LiCSAlert_figure_with_061_monitoring_interferograms.png new file mode 100644 index 00000000..fce26330 Binary files /dev/null and b/campi_flegrei_example_all_times/20180206/LiCSAlert_figure_with_061_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180206/mask_status.png b/campi_flegrei_example_all_times/20180206/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180206/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180206/volcano_status.txt b/campi_flegrei_example_all_times/20180206/volcano_status.txt new file mode 100644 index 00000000..504ac16c --- /dev/null +++ b/campi_flegrei_example_all_times/20180206/volcano_status.txt @@ -0,0 +1,2 @@ +1.1738911679279627 +0.32274515545666 diff --git a/campi_flegrei_example_all_times/20180218/01_cumulative_20141031_20180218.png b/campi_flegrei_example_all_times/20180218/01_cumulative_20141031_20180218.png new file mode 100644 index 00000000..e540c8c6 Binary files /dev/null and b/campi_flegrei_example_all_times/20180218/01_cumulative_20141031_20180218.png differ diff --git a/campi_flegrei_example_all_times/20180218/02_incremental_20180206_20180218.png b/campi_flegrei_example_all_times/20180218/02_incremental_20180206_20180218.png new file mode 100644 index 00000000..60ce94a6 Binary files /dev/null and b/campi_flegrei_example_all_times/20180218/02_incremental_20180206_20180218.png differ diff --git a/campi_flegrei_example_all_times/20180218/03_reconstruction_20180206_20180218.png b/campi_flegrei_example_all_times/20180218/03_reconstruction_20180206_20180218.png new file mode 100644 index 00000000..cb76b7db Binary files /dev/null and b/campi_flegrei_example_all_times/20180218/03_reconstruction_20180206_20180218.png differ diff --git a/campi_flegrei_example_all_times/20180218/04_residual_20180206_20180218.png b/campi_flegrei_example_all_times/20180218/04_residual_20180206_20180218.png new file mode 100644 index 00000000..b30db4f2 Binary files /dev/null and b/campi_flegrei_example_all_times/20180218/04_residual_20180206_20180218.png differ diff --git a/campi_flegrei_example_all_times/20180218/LiCSAlert_figure_with_062_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180218/LiCSAlert_figure_with_062_monitoring_interferograms.png new file mode 100644 index 00000000..570b7303 Binary files /dev/null and b/campi_flegrei_example_all_times/20180218/LiCSAlert_figure_with_062_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180218/mask_status.png b/campi_flegrei_example_all_times/20180218/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180218/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180218/volcano_status.txt b/campi_flegrei_example_all_times/20180218/volcano_status.txt new file mode 100644 index 00000000..ead8441f --- /dev/null +++ b/campi_flegrei_example_all_times/20180218/volcano_status.txt @@ -0,0 +1,2 @@ +1.0880947685519897 +0.6222754600404462 diff --git a/campi_flegrei_example_all_times/20180224/01_cumulative_20141031_20180224.png b/campi_flegrei_example_all_times/20180224/01_cumulative_20141031_20180224.png new file mode 100644 index 00000000..df0d9938 Binary files /dev/null and b/campi_flegrei_example_all_times/20180224/01_cumulative_20141031_20180224.png differ diff --git a/campi_flegrei_example_all_times/20180224/02_incremental_20180218_20180224.png b/campi_flegrei_example_all_times/20180224/02_incremental_20180218_20180224.png new file mode 100644 index 00000000..8d62b423 Binary files /dev/null and b/campi_flegrei_example_all_times/20180224/02_incremental_20180218_20180224.png differ diff --git a/campi_flegrei_example_all_times/20180224/03_reconstruction_20180218_20180224.png b/campi_flegrei_example_all_times/20180224/03_reconstruction_20180218_20180224.png new file mode 100644 index 00000000..4ea76e7c Binary files /dev/null and b/campi_flegrei_example_all_times/20180224/03_reconstruction_20180218_20180224.png differ diff --git a/campi_flegrei_example_all_times/20180224/04_residual_20180218_20180224.png b/campi_flegrei_example_all_times/20180224/04_residual_20180218_20180224.png new file mode 100644 index 00000000..1aaad2e6 Binary files /dev/null and b/campi_flegrei_example_all_times/20180224/04_residual_20180218_20180224.png differ diff --git a/campi_flegrei_example_all_times/20180224/LiCSAlert_figure_with_063_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180224/LiCSAlert_figure_with_063_monitoring_interferograms.png new file mode 100644 index 00000000..50061c72 Binary files /dev/null and b/campi_flegrei_example_all_times/20180224/LiCSAlert_figure_with_063_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180224/mask_status.png b/campi_flegrei_example_all_times/20180224/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180224/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180224/volcano_status.txt b/campi_flegrei_example_all_times/20180224/volcano_status.txt new file mode 100644 index 00000000..13815581 --- /dev/null +++ b/campi_flegrei_example_all_times/20180224/volcano_status.txt @@ -0,0 +1,2 @@ +1.2265028957282391 +0.328868635313783 diff --git a/campi_flegrei_example_all_times/20180302/01_cumulative_20141031_20180302.png b/campi_flegrei_example_all_times/20180302/01_cumulative_20141031_20180302.png new file mode 100644 index 00000000..b82086fe Binary files /dev/null and b/campi_flegrei_example_all_times/20180302/01_cumulative_20141031_20180302.png differ diff --git a/campi_flegrei_example_all_times/20180302/02_incremental_20180224_20180302.png b/campi_flegrei_example_all_times/20180302/02_incremental_20180224_20180302.png new file mode 100644 index 00000000..477b0cda Binary files /dev/null and b/campi_flegrei_example_all_times/20180302/02_incremental_20180224_20180302.png differ diff --git a/campi_flegrei_example_all_times/20180302/03_reconstruction_20180224_20180302.png b/campi_flegrei_example_all_times/20180302/03_reconstruction_20180224_20180302.png new file mode 100644 index 00000000..658530db Binary files /dev/null and b/campi_flegrei_example_all_times/20180302/03_reconstruction_20180224_20180302.png differ diff --git a/campi_flegrei_example_all_times/20180302/04_residual_20180224_20180302.png b/campi_flegrei_example_all_times/20180302/04_residual_20180224_20180302.png new file mode 100644 index 00000000..a1833ca7 Binary files /dev/null and b/campi_flegrei_example_all_times/20180302/04_residual_20180224_20180302.png differ diff --git a/campi_flegrei_example_all_times/20180302/LiCSAlert_figure_with_064_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180302/LiCSAlert_figure_with_064_monitoring_interferograms.png new file mode 100644 index 00000000..5a021a9d Binary files /dev/null and b/campi_flegrei_example_all_times/20180302/LiCSAlert_figure_with_064_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180302/mask_status.png b/campi_flegrei_example_all_times/20180302/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180302/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180302/volcano_status.txt b/campi_flegrei_example_all_times/20180302/volcano_status.txt new file mode 100644 index 00000000..1aa3282b --- /dev/null +++ b/campi_flegrei_example_all_times/20180302/volcano_status.txt @@ -0,0 +1,2 @@ +0.23393362965863865 +0.5216401275050542 diff --git a/campi_flegrei_example_all_times/20180308/01_cumulative_20141031_20180308.png b/campi_flegrei_example_all_times/20180308/01_cumulative_20141031_20180308.png new file mode 100644 index 00000000..832ef46b Binary files /dev/null and b/campi_flegrei_example_all_times/20180308/01_cumulative_20141031_20180308.png differ diff --git a/campi_flegrei_example_all_times/20180308/02_incremental_20180302_20180308.png b/campi_flegrei_example_all_times/20180308/02_incremental_20180302_20180308.png new file mode 100644 index 00000000..87962092 Binary files /dev/null and b/campi_flegrei_example_all_times/20180308/02_incremental_20180302_20180308.png differ diff --git a/campi_flegrei_example_all_times/20180308/03_reconstruction_20180302_20180308.png b/campi_flegrei_example_all_times/20180308/03_reconstruction_20180302_20180308.png new file mode 100644 index 00000000..ee5b4fd3 Binary files /dev/null and b/campi_flegrei_example_all_times/20180308/03_reconstruction_20180302_20180308.png differ diff --git a/campi_flegrei_example_all_times/20180308/04_residual_20180302_20180308.png b/campi_flegrei_example_all_times/20180308/04_residual_20180302_20180308.png new file mode 100644 index 00000000..92342dc0 Binary files /dev/null and b/campi_flegrei_example_all_times/20180308/04_residual_20180302_20180308.png differ diff --git a/campi_flegrei_example_all_times/20180308/LiCSAlert_figure_with_065_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180308/LiCSAlert_figure_with_065_monitoring_interferograms.png new file mode 100644 index 00000000..04f60131 Binary files /dev/null and b/campi_flegrei_example_all_times/20180308/LiCSAlert_figure_with_065_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180308/mask_status.png b/campi_flegrei_example_all_times/20180308/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180308/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180308/volcano_status.txt b/campi_flegrei_example_all_times/20180308/volcano_status.txt new file mode 100644 index 00000000..0162ba03 --- /dev/null +++ b/campi_flegrei_example_all_times/20180308/volcano_status.txt @@ -0,0 +1,2 @@ +0.20636106985019356 +0.5035233779999811 diff --git a/campi_flegrei_example_all_times/20180314/01_cumulative_20141031_20180314.png b/campi_flegrei_example_all_times/20180314/01_cumulative_20141031_20180314.png new file mode 100644 index 00000000..f418f20a Binary files /dev/null and b/campi_flegrei_example_all_times/20180314/01_cumulative_20141031_20180314.png differ diff --git a/campi_flegrei_example_all_times/20180314/02_incremental_20180308_20180314.png b/campi_flegrei_example_all_times/20180314/02_incremental_20180308_20180314.png new file mode 100644 index 00000000..39611af6 Binary files /dev/null and b/campi_flegrei_example_all_times/20180314/02_incremental_20180308_20180314.png differ diff --git a/campi_flegrei_example_all_times/20180314/03_reconstruction_20180308_20180314.png b/campi_flegrei_example_all_times/20180314/03_reconstruction_20180308_20180314.png new file mode 100644 index 00000000..3020c3fe Binary files /dev/null and b/campi_flegrei_example_all_times/20180314/03_reconstruction_20180308_20180314.png differ diff --git a/campi_flegrei_example_all_times/20180314/04_residual_20180308_20180314.png b/campi_flegrei_example_all_times/20180314/04_residual_20180308_20180314.png new file mode 100644 index 00000000..40a00596 Binary files /dev/null and b/campi_flegrei_example_all_times/20180314/04_residual_20180308_20180314.png differ diff --git a/campi_flegrei_example_all_times/20180314/LiCSAlert_figure_with_066_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180314/LiCSAlert_figure_with_066_monitoring_interferograms.png new file mode 100644 index 00000000..1e2f1283 Binary files /dev/null and b/campi_flegrei_example_all_times/20180314/LiCSAlert_figure_with_066_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180314/mask_status.png b/campi_flegrei_example_all_times/20180314/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180314/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180314/volcano_status.txt b/campi_flegrei_example_all_times/20180314/volcano_status.txt new file mode 100644 index 00000000..250828d0 --- /dev/null +++ b/campi_flegrei_example_all_times/20180314/volcano_status.txt @@ -0,0 +1,2 @@ +0.6697972911145034 +0.2643559398752707 diff --git a/campi_flegrei_example_all_times/20180320/01_cumulative_20141031_20180320.png b/campi_flegrei_example_all_times/20180320/01_cumulative_20141031_20180320.png new file mode 100644 index 00000000..622a4ba1 Binary files /dev/null and b/campi_flegrei_example_all_times/20180320/01_cumulative_20141031_20180320.png differ diff --git a/campi_flegrei_example_all_times/20180320/02_incremental_20180314_20180320.png b/campi_flegrei_example_all_times/20180320/02_incremental_20180314_20180320.png new file mode 100644 index 00000000..282234a4 Binary files /dev/null and b/campi_flegrei_example_all_times/20180320/02_incremental_20180314_20180320.png differ diff --git a/campi_flegrei_example_all_times/20180320/03_reconstruction_20180314_20180320.png b/campi_flegrei_example_all_times/20180320/03_reconstruction_20180314_20180320.png new file mode 100644 index 00000000..c6a49ee0 Binary files /dev/null and b/campi_flegrei_example_all_times/20180320/03_reconstruction_20180314_20180320.png differ diff --git a/campi_flegrei_example_all_times/20180320/04_residual_20180314_20180320.png b/campi_flegrei_example_all_times/20180320/04_residual_20180314_20180320.png new file mode 100644 index 00000000..54b2abe2 Binary files /dev/null and b/campi_flegrei_example_all_times/20180320/04_residual_20180314_20180320.png differ diff --git a/campi_flegrei_example_all_times/20180320/LiCSAlert_figure_with_067_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180320/LiCSAlert_figure_with_067_monitoring_interferograms.png new file mode 100644 index 00000000..29d15a12 Binary files /dev/null and b/campi_flegrei_example_all_times/20180320/LiCSAlert_figure_with_067_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180320/mask_status.png b/campi_flegrei_example_all_times/20180320/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180320/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180320/volcano_status.txt b/campi_flegrei_example_all_times/20180320/volcano_status.txt new file mode 100644 index 00000000..ae770f43 --- /dev/null +++ b/campi_flegrei_example_all_times/20180320/volcano_status.txt @@ -0,0 +1,2 @@ +0.6329380265027649 +1.0268163282344163 diff --git a/campi_flegrei_example_all_times/20180326/01_cumulative_20141031_20180326.png b/campi_flegrei_example_all_times/20180326/01_cumulative_20141031_20180326.png new file mode 100644 index 00000000..888b6c35 Binary files /dev/null and b/campi_flegrei_example_all_times/20180326/01_cumulative_20141031_20180326.png differ diff --git a/campi_flegrei_example_all_times/20180326/02_incremental_20180320_20180326.png b/campi_flegrei_example_all_times/20180326/02_incremental_20180320_20180326.png new file mode 100644 index 00000000..b63c6949 Binary files /dev/null and b/campi_flegrei_example_all_times/20180326/02_incremental_20180320_20180326.png differ diff --git a/campi_flegrei_example_all_times/20180326/03_reconstruction_20180320_20180326.png b/campi_flegrei_example_all_times/20180326/03_reconstruction_20180320_20180326.png new file mode 100644 index 00000000..28ee9548 Binary files /dev/null and b/campi_flegrei_example_all_times/20180326/03_reconstruction_20180320_20180326.png differ diff --git a/campi_flegrei_example_all_times/20180326/04_residual_20180320_20180326.png b/campi_flegrei_example_all_times/20180326/04_residual_20180320_20180326.png new file mode 100644 index 00000000..0c5ac1d9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180326/04_residual_20180320_20180326.png differ diff --git a/campi_flegrei_example_all_times/20180326/LiCSAlert_figure_with_068_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180326/LiCSAlert_figure_with_068_monitoring_interferograms.png new file mode 100644 index 00000000..c692c90b Binary files /dev/null and b/campi_flegrei_example_all_times/20180326/LiCSAlert_figure_with_068_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180326/mask_status.png b/campi_flegrei_example_all_times/20180326/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180326/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180326/volcano_status.txt b/campi_flegrei_example_all_times/20180326/volcano_status.txt new file mode 100644 index 00000000..bb2e2b9e --- /dev/null +++ b/campi_flegrei_example_all_times/20180326/volcano_status.txt @@ -0,0 +1,2 @@ +0.5081182750038271 +0.6826764132108762 diff --git a/campi_flegrei_example_all_times/20180401/01_cumulative_20141031_20180401.png b/campi_flegrei_example_all_times/20180401/01_cumulative_20141031_20180401.png new file mode 100644 index 00000000..c77cdbd8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180401/01_cumulative_20141031_20180401.png differ diff --git a/campi_flegrei_example_all_times/20180401/02_incremental_20180326_20180401.png b/campi_flegrei_example_all_times/20180401/02_incremental_20180326_20180401.png new file mode 100644 index 00000000..bf5bef00 Binary files /dev/null and b/campi_flegrei_example_all_times/20180401/02_incremental_20180326_20180401.png differ diff --git a/campi_flegrei_example_all_times/20180401/03_reconstruction_20180326_20180401.png b/campi_flegrei_example_all_times/20180401/03_reconstruction_20180326_20180401.png new file mode 100644 index 00000000..c348a7e0 Binary files /dev/null and b/campi_flegrei_example_all_times/20180401/03_reconstruction_20180326_20180401.png differ diff --git a/campi_flegrei_example_all_times/20180401/04_residual_20180326_20180401.png b/campi_flegrei_example_all_times/20180401/04_residual_20180326_20180401.png new file mode 100644 index 00000000..2233b543 Binary files /dev/null and b/campi_flegrei_example_all_times/20180401/04_residual_20180326_20180401.png differ diff --git a/campi_flegrei_example_all_times/20180401/LiCSAlert_figure_with_069_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180401/LiCSAlert_figure_with_069_monitoring_interferograms.png new file mode 100644 index 00000000..9f484573 Binary files /dev/null and b/campi_flegrei_example_all_times/20180401/LiCSAlert_figure_with_069_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180401/mask_status.png b/campi_flegrei_example_all_times/20180401/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180401/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180401/volcano_status.txt b/campi_flegrei_example_all_times/20180401/volcano_status.txt new file mode 100644 index 00000000..df132e45 --- /dev/null +++ b/campi_flegrei_example_all_times/20180401/volcano_status.txt @@ -0,0 +1,2 @@ +1.885639201338347 +2.712536030804326 diff --git a/campi_flegrei_example_all_times/20180407/01_cumulative_20141031_20180407.png b/campi_flegrei_example_all_times/20180407/01_cumulative_20141031_20180407.png new file mode 100644 index 00000000..6acd7d9c Binary files /dev/null and b/campi_flegrei_example_all_times/20180407/01_cumulative_20141031_20180407.png differ diff --git a/campi_flegrei_example_all_times/20180407/02_incremental_20180401_20180407.png b/campi_flegrei_example_all_times/20180407/02_incremental_20180401_20180407.png new file mode 100644 index 00000000..8f929b62 Binary files /dev/null and b/campi_flegrei_example_all_times/20180407/02_incremental_20180401_20180407.png differ diff --git a/campi_flegrei_example_all_times/20180407/03_reconstruction_20180401_20180407.png b/campi_flegrei_example_all_times/20180407/03_reconstruction_20180401_20180407.png new file mode 100644 index 00000000..7a805546 Binary files /dev/null and b/campi_flegrei_example_all_times/20180407/03_reconstruction_20180401_20180407.png differ diff --git a/campi_flegrei_example_all_times/20180407/04_residual_20180401_20180407.png b/campi_flegrei_example_all_times/20180407/04_residual_20180401_20180407.png new file mode 100644 index 00000000..cae611c5 Binary files /dev/null and b/campi_flegrei_example_all_times/20180407/04_residual_20180401_20180407.png differ diff --git a/campi_flegrei_example_all_times/20180407/LiCSAlert_figure_with_070_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180407/LiCSAlert_figure_with_070_monitoring_interferograms.png new file mode 100644 index 00000000..1aad1144 Binary files /dev/null and b/campi_flegrei_example_all_times/20180407/LiCSAlert_figure_with_070_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180407/mask_status.png b/campi_flegrei_example_all_times/20180407/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180407/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180407/volcano_status.txt b/campi_flegrei_example_all_times/20180407/volcano_status.txt new file mode 100644 index 00000000..977cb932 --- /dev/null +++ b/campi_flegrei_example_all_times/20180407/volcano_status.txt @@ -0,0 +1,2 @@ +0.0808671929834307 +0.5076979810750006 diff --git a/campi_flegrei_example_all_times/20180413/01_cumulative_20141031_20180413.png b/campi_flegrei_example_all_times/20180413/01_cumulative_20141031_20180413.png new file mode 100644 index 00000000..09a387de Binary files /dev/null and b/campi_flegrei_example_all_times/20180413/01_cumulative_20141031_20180413.png differ diff --git a/campi_flegrei_example_all_times/20180413/02_incremental_20180407_20180413.png b/campi_flegrei_example_all_times/20180413/02_incremental_20180407_20180413.png new file mode 100644 index 00000000..2384453b Binary files /dev/null and b/campi_flegrei_example_all_times/20180413/02_incremental_20180407_20180413.png differ diff --git a/campi_flegrei_example_all_times/20180413/03_reconstruction_20180407_20180413.png b/campi_flegrei_example_all_times/20180413/03_reconstruction_20180407_20180413.png new file mode 100644 index 00000000..92321020 Binary files /dev/null and b/campi_flegrei_example_all_times/20180413/03_reconstruction_20180407_20180413.png differ diff --git a/campi_flegrei_example_all_times/20180413/04_residual_20180407_20180413.png b/campi_flegrei_example_all_times/20180413/04_residual_20180407_20180413.png new file mode 100644 index 00000000..590173b9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180413/04_residual_20180407_20180413.png differ diff --git a/campi_flegrei_example_all_times/20180413/LiCSAlert_figure_with_071_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180413/LiCSAlert_figure_with_071_monitoring_interferograms.png new file mode 100644 index 00000000..961f1655 Binary files /dev/null and b/campi_flegrei_example_all_times/20180413/LiCSAlert_figure_with_071_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180413/mask_status.png b/campi_flegrei_example_all_times/20180413/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180413/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180413/volcano_status.txt b/campi_flegrei_example_all_times/20180413/volcano_status.txt new file mode 100644 index 00000000..3e2aec43 --- /dev/null +++ b/campi_flegrei_example_all_times/20180413/volcano_status.txt @@ -0,0 +1,2 @@ +0.12578717707216125 +0.9411087572196333 diff --git a/campi_flegrei_example_all_times/20180419/01_cumulative_20141031_20180419.png b/campi_flegrei_example_all_times/20180419/01_cumulative_20141031_20180419.png new file mode 100644 index 00000000..e40230cf Binary files /dev/null and b/campi_flegrei_example_all_times/20180419/01_cumulative_20141031_20180419.png differ diff --git a/campi_flegrei_example_all_times/20180419/02_incremental_20180413_20180419.png b/campi_flegrei_example_all_times/20180419/02_incremental_20180413_20180419.png new file mode 100644 index 00000000..f0317299 Binary files /dev/null and b/campi_flegrei_example_all_times/20180419/02_incremental_20180413_20180419.png differ diff --git a/campi_flegrei_example_all_times/20180419/03_reconstruction_20180413_20180419.png b/campi_flegrei_example_all_times/20180419/03_reconstruction_20180413_20180419.png new file mode 100644 index 00000000..a6ec2dc8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180419/03_reconstruction_20180413_20180419.png differ diff --git a/campi_flegrei_example_all_times/20180419/04_residual_20180413_20180419.png b/campi_flegrei_example_all_times/20180419/04_residual_20180413_20180419.png new file mode 100644 index 00000000..1527237b Binary files /dev/null and b/campi_flegrei_example_all_times/20180419/04_residual_20180413_20180419.png differ diff --git a/campi_flegrei_example_all_times/20180419/LiCSAlert_figure_with_072_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180419/LiCSAlert_figure_with_072_monitoring_interferograms.png new file mode 100644 index 00000000..72967150 Binary files /dev/null and b/campi_flegrei_example_all_times/20180419/LiCSAlert_figure_with_072_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180419/mask_status.png b/campi_flegrei_example_all_times/20180419/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180419/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180419/volcano_status.txt b/campi_flegrei_example_all_times/20180419/volcano_status.txt new file mode 100644 index 00000000..4a1160a4 --- /dev/null +++ b/campi_flegrei_example_all_times/20180419/volcano_status.txt @@ -0,0 +1,2 @@ +0.7605075469904733 +0.0014005645547805147 diff --git a/campi_flegrei_example_all_times/20180425/01_cumulative_20141031_20180425.png b/campi_flegrei_example_all_times/20180425/01_cumulative_20141031_20180425.png new file mode 100644 index 00000000..f81ed949 Binary files /dev/null and b/campi_flegrei_example_all_times/20180425/01_cumulative_20141031_20180425.png differ diff --git a/campi_flegrei_example_all_times/20180425/02_incremental_20180419_20180425.png b/campi_flegrei_example_all_times/20180425/02_incremental_20180419_20180425.png new file mode 100644 index 00000000..be66d5a9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180425/02_incremental_20180419_20180425.png differ diff --git a/campi_flegrei_example_all_times/20180425/03_reconstruction_20180419_20180425.png b/campi_flegrei_example_all_times/20180425/03_reconstruction_20180419_20180425.png new file mode 100644 index 00000000..d9e30632 Binary files /dev/null and b/campi_flegrei_example_all_times/20180425/03_reconstruction_20180419_20180425.png differ diff --git a/campi_flegrei_example_all_times/20180425/04_residual_20180419_20180425.png b/campi_flegrei_example_all_times/20180425/04_residual_20180419_20180425.png new file mode 100644 index 00000000..f680a690 Binary files /dev/null and b/campi_flegrei_example_all_times/20180425/04_residual_20180419_20180425.png differ diff --git a/campi_flegrei_example_all_times/20180425/LiCSAlert_figure_with_073_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180425/LiCSAlert_figure_with_073_monitoring_interferograms.png new file mode 100644 index 00000000..10c7b3ab Binary files /dev/null and b/campi_flegrei_example_all_times/20180425/LiCSAlert_figure_with_073_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180425/mask_status.png b/campi_flegrei_example_all_times/20180425/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180425/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180425/volcano_status.txt b/campi_flegrei_example_all_times/20180425/volcano_status.txt new file mode 100644 index 00000000..796b1245 --- /dev/null +++ b/campi_flegrei_example_all_times/20180425/volcano_status.txt @@ -0,0 +1,2 @@ +1.1699387637254703 +0.6460004537726645 diff --git a/campi_flegrei_example_all_times/20180501/01_cumulative_20141031_20180501.png b/campi_flegrei_example_all_times/20180501/01_cumulative_20141031_20180501.png new file mode 100644 index 00000000..d001a77c Binary files /dev/null and b/campi_flegrei_example_all_times/20180501/01_cumulative_20141031_20180501.png differ diff --git a/campi_flegrei_example_all_times/20180501/02_incremental_20180425_20180501.png b/campi_flegrei_example_all_times/20180501/02_incremental_20180425_20180501.png new file mode 100644 index 00000000..7d5b76fd Binary files /dev/null and b/campi_flegrei_example_all_times/20180501/02_incremental_20180425_20180501.png differ diff --git a/campi_flegrei_example_all_times/20180501/03_reconstruction_20180425_20180501.png b/campi_flegrei_example_all_times/20180501/03_reconstruction_20180425_20180501.png new file mode 100644 index 00000000..198e9457 Binary files /dev/null and b/campi_flegrei_example_all_times/20180501/03_reconstruction_20180425_20180501.png differ diff --git a/campi_flegrei_example_all_times/20180501/04_residual_20180425_20180501.png b/campi_flegrei_example_all_times/20180501/04_residual_20180425_20180501.png new file mode 100644 index 00000000..4848cb56 Binary files /dev/null and b/campi_flegrei_example_all_times/20180501/04_residual_20180425_20180501.png differ diff --git a/campi_flegrei_example_all_times/20180501/LiCSAlert_figure_with_074_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180501/LiCSAlert_figure_with_074_monitoring_interferograms.png new file mode 100644 index 00000000..ab295d9a Binary files /dev/null and b/campi_flegrei_example_all_times/20180501/LiCSAlert_figure_with_074_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180501/mask_status.png b/campi_flegrei_example_all_times/20180501/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180501/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180501/volcano_status.txt b/campi_flegrei_example_all_times/20180501/volcano_status.txt new file mode 100644 index 00000000..5a779ac3 --- /dev/null +++ b/campi_flegrei_example_all_times/20180501/volcano_status.txt @@ -0,0 +1,2 @@ +1.518403567233592 +0.3656856292099687 diff --git a/campi_flegrei_example_all_times/20180507/01_cumulative_20141031_20180507.png b/campi_flegrei_example_all_times/20180507/01_cumulative_20141031_20180507.png new file mode 100644 index 00000000..85a3b69d Binary files /dev/null and b/campi_flegrei_example_all_times/20180507/01_cumulative_20141031_20180507.png differ diff --git a/campi_flegrei_example_all_times/20180507/02_incremental_20180501_20180507.png b/campi_flegrei_example_all_times/20180507/02_incremental_20180501_20180507.png new file mode 100644 index 00000000..8fea426d Binary files /dev/null and b/campi_flegrei_example_all_times/20180507/02_incremental_20180501_20180507.png differ diff --git a/campi_flegrei_example_all_times/20180507/03_reconstruction_20180501_20180507.png b/campi_flegrei_example_all_times/20180507/03_reconstruction_20180501_20180507.png new file mode 100644 index 00000000..e040662d Binary files /dev/null and b/campi_flegrei_example_all_times/20180507/03_reconstruction_20180501_20180507.png differ diff --git a/campi_flegrei_example_all_times/20180507/04_residual_20180501_20180507.png b/campi_flegrei_example_all_times/20180507/04_residual_20180501_20180507.png new file mode 100644 index 00000000..d70a6ae9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180507/04_residual_20180501_20180507.png differ diff --git a/campi_flegrei_example_all_times/20180507/LiCSAlert_figure_with_075_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180507/LiCSAlert_figure_with_075_monitoring_interferograms.png new file mode 100644 index 00000000..88168fd7 Binary files /dev/null and b/campi_flegrei_example_all_times/20180507/LiCSAlert_figure_with_075_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180507/mask_status.png b/campi_flegrei_example_all_times/20180507/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180507/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180507/volcano_status.txt b/campi_flegrei_example_all_times/20180507/volcano_status.txt new file mode 100644 index 00000000..6877b380 --- /dev/null +++ b/campi_flegrei_example_all_times/20180507/volcano_status.txt @@ -0,0 +1,2 @@ +0.34416621303925354 +0.08961142830334275 diff --git a/campi_flegrei_example_all_times/20180513/01_cumulative_20141031_20180513.png b/campi_flegrei_example_all_times/20180513/01_cumulative_20141031_20180513.png new file mode 100644 index 00000000..205f30ba Binary files /dev/null and b/campi_flegrei_example_all_times/20180513/01_cumulative_20141031_20180513.png differ diff --git a/campi_flegrei_example_all_times/20180513/02_incremental_20180507_20180513.png b/campi_flegrei_example_all_times/20180513/02_incremental_20180507_20180513.png new file mode 100644 index 00000000..44a488cf Binary files /dev/null and b/campi_flegrei_example_all_times/20180513/02_incremental_20180507_20180513.png differ diff --git a/campi_flegrei_example_all_times/20180513/03_reconstruction_20180507_20180513.png b/campi_flegrei_example_all_times/20180513/03_reconstruction_20180507_20180513.png new file mode 100644 index 00000000..d26516e6 Binary files /dev/null and b/campi_flegrei_example_all_times/20180513/03_reconstruction_20180507_20180513.png differ diff --git a/campi_flegrei_example_all_times/20180513/04_residual_20180507_20180513.png b/campi_flegrei_example_all_times/20180513/04_residual_20180507_20180513.png new file mode 100644 index 00000000..40deb66c Binary files /dev/null and b/campi_flegrei_example_all_times/20180513/04_residual_20180507_20180513.png differ diff --git a/campi_flegrei_example_all_times/20180513/LiCSAlert_figure_with_076_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180513/LiCSAlert_figure_with_076_monitoring_interferograms.png new file mode 100644 index 00000000..66822566 Binary files /dev/null and b/campi_flegrei_example_all_times/20180513/LiCSAlert_figure_with_076_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180513/mask_status.png b/campi_flegrei_example_all_times/20180513/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180513/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180513/volcano_status.txt b/campi_flegrei_example_all_times/20180513/volcano_status.txt new file mode 100644 index 00000000..de1a2561 --- /dev/null +++ b/campi_flegrei_example_all_times/20180513/volcano_status.txt @@ -0,0 +1,2 @@ +1.9793183481599383 +2.701298817625549 diff --git a/campi_flegrei_example_all_times/20180519/01_cumulative_20141031_20180519.png b/campi_flegrei_example_all_times/20180519/01_cumulative_20141031_20180519.png new file mode 100644 index 00000000..482f622f Binary files /dev/null and b/campi_flegrei_example_all_times/20180519/01_cumulative_20141031_20180519.png differ diff --git a/campi_flegrei_example_all_times/20180519/02_incremental_20180513_20180519.png b/campi_flegrei_example_all_times/20180519/02_incremental_20180513_20180519.png new file mode 100644 index 00000000..5d04dcef Binary files /dev/null and b/campi_flegrei_example_all_times/20180519/02_incremental_20180513_20180519.png differ diff --git a/campi_flegrei_example_all_times/20180519/03_reconstruction_20180513_20180519.png b/campi_flegrei_example_all_times/20180519/03_reconstruction_20180513_20180519.png new file mode 100644 index 00000000..0f629a96 Binary files /dev/null and b/campi_flegrei_example_all_times/20180519/03_reconstruction_20180513_20180519.png differ diff --git a/campi_flegrei_example_all_times/20180519/04_residual_20180513_20180519.png b/campi_flegrei_example_all_times/20180519/04_residual_20180513_20180519.png new file mode 100644 index 00000000..9cb3f3d6 Binary files /dev/null and b/campi_flegrei_example_all_times/20180519/04_residual_20180513_20180519.png differ diff --git a/campi_flegrei_example_all_times/20180519/LiCSAlert_figure_with_077_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180519/LiCSAlert_figure_with_077_monitoring_interferograms.png new file mode 100644 index 00000000..7eb299b5 Binary files /dev/null and b/campi_flegrei_example_all_times/20180519/LiCSAlert_figure_with_077_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180519/mask_status.png b/campi_flegrei_example_all_times/20180519/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180519/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180519/volcano_status.txt b/campi_flegrei_example_all_times/20180519/volcano_status.txt new file mode 100644 index 00000000..d84fa00f --- /dev/null +++ b/campi_flegrei_example_all_times/20180519/volcano_status.txt @@ -0,0 +1,2 @@ +0.6186121285534827 +0.5191905610494415 diff --git a/campi_flegrei_example_all_times/20180525/01_cumulative_20141031_20180525.png b/campi_flegrei_example_all_times/20180525/01_cumulative_20141031_20180525.png new file mode 100644 index 00000000..c81be5ac Binary files /dev/null and b/campi_flegrei_example_all_times/20180525/01_cumulative_20141031_20180525.png differ diff --git a/campi_flegrei_example_all_times/20180525/02_incremental_20180519_20180525.png b/campi_flegrei_example_all_times/20180525/02_incremental_20180519_20180525.png new file mode 100644 index 00000000..820c931a Binary files /dev/null and b/campi_flegrei_example_all_times/20180525/02_incremental_20180519_20180525.png differ diff --git a/campi_flegrei_example_all_times/20180525/03_reconstruction_20180519_20180525.png b/campi_flegrei_example_all_times/20180525/03_reconstruction_20180519_20180525.png new file mode 100644 index 00000000..ec4c4fa7 Binary files /dev/null and b/campi_flegrei_example_all_times/20180525/03_reconstruction_20180519_20180525.png differ diff --git a/campi_flegrei_example_all_times/20180525/04_residual_20180519_20180525.png b/campi_flegrei_example_all_times/20180525/04_residual_20180519_20180525.png new file mode 100644 index 00000000..71d83999 Binary files /dev/null and b/campi_flegrei_example_all_times/20180525/04_residual_20180519_20180525.png differ diff --git a/campi_flegrei_example_all_times/20180525/LiCSAlert_figure_with_078_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180525/LiCSAlert_figure_with_078_monitoring_interferograms.png new file mode 100644 index 00000000..249aa280 Binary files /dev/null and b/campi_flegrei_example_all_times/20180525/LiCSAlert_figure_with_078_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180525/mask_status.png b/campi_flegrei_example_all_times/20180525/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180525/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180525/volcano_status.txt b/campi_flegrei_example_all_times/20180525/volcano_status.txt new file mode 100644 index 00000000..45a715bb --- /dev/null +++ b/campi_flegrei_example_all_times/20180525/volcano_status.txt @@ -0,0 +1,2 @@ +0.6543018748960648 +0.29050043883630866 diff --git a/campi_flegrei_example_all_times/20180531/01_cumulative_20141031_20180531.png b/campi_flegrei_example_all_times/20180531/01_cumulative_20141031_20180531.png new file mode 100644 index 00000000..e6473e68 Binary files /dev/null and b/campi_flegrei_example_all_times/20180531/01_cumulative_20141031_20180531.png differ diff --git a/campi_flegrei_example_all_times/20180531/02_incremental_20180525_20180531.png b/campi_flegrei_example_all_times/20180531/02_incremental_20180525_20180531.png new file mode 100644 index 00000000..3d2b2c2a Binary files /dev/null and b/campi_flegrei_example_all_times/20180531/02_incremental_20180525_20180531.png differ diff --git a/campi_flegrei_example_all_times/20180531/03_reconstruction_20180525_20180531.png b/campi_flegrei_example_all_times/20180531/03_reconstruction_20180525_20180531.png new file mode 100644 index 00000000..d9e42e08 Binary files /dev/null and b/campi_flegrei_example_all_times/20180531/03_reconstruction_20180525_20180531.png differ diff --git a/campi_flegrei_example_all_times/20180531/04_residual_20180525_20180531.png b/campi_flegrei_example_all_times/20180531/04_residual_20180525_20180531.png new file mode 100644 index 00000000..4a42d069 Binary files /dev/null and b/campi_flegrei_example_all_times/20180531/04_residual_20180525_20180531.png differ diff --git a/campi_flegrei_example_all_times/20180531/LiCSAlert_figure_with_079_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180531/LiCSAlert_figure_with_079_monitoring_interferograms.png new file mode 100644 index 00000000..e4dfc00e Binary files /dev/null and b/campi_flegrei_example_all_times/20180531/LiCSAlert_figure_with_079_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180531/mask_status.png b/campi_flegrei_example_all_times/20180531/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180531/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180531/volcano_status.txt b/campi_flegrei_example_all_times/20180531/volcano_status.txt new file mode 100644 index 00000000..97058f38 --- /dev/null +++ b/campi_flegrei_example_all_times/20180531/volcano_status.txt @@ -0,0 +1,2 @@ +0.3953932055576857 +0.674104307347105 diff --git a/campi_flegrei_example_all_times/20180606/01_cumulative_20141031_20180606.png b/campi_flegrei_example_all_times/20180606/01_cumulative_20141031_20180606.png new file mode 100644 index 00000000..e2e74093 Binary files /dev/null and b/campi_flegrei_example_all_times/20180606/01_cumulative_20141031_20180606.png differ diff --git a/campi_flegrei_example_all_times/20180606/02_incremental_20180531_20180606.png b/campi_flegrei_example_all_times/20180606/02_incremental_20180531_20180606.png new file mode 100644 index 00000000..18197953 Binary files /dev/null and b/campi_flegrei_example_all_times/20180606/02_incremental_20180531_20180606.png differ diff --git a/campi_flegrei_example_all_times/20180606/03_reconstruction_20180531_20180606.png b/campi_flegrei_example_all_times/20180606/03_reconstruction_20180531_20180606.png new file mode 100644 index 00000000..7f4ea1af Binary files /dev/null and b/campi_flegrei_example_all_times/20180606/03_reconstruction_20180531_20180606.png differ diff --git a/campi_flegrei_example_all_times/20180606/04_residual_20180531_20180606.png b/campi_flegrei_example_all_times/20180606/04_residual_20180531_20180606.png new file mode 100644 index 00000000..dcb1976a Binary files /dev/null and b/campi_flegrei_example_all_times/20180606/04_residual_20180531_20180606.png differ diff --git a/campi_flegrei_example_all_times/20180606/LiCSAlert_figure_with_080_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180606/LiCSAlert_figure_with_080_monitoring_interferograms.png new file mode 100644 index 00000000..addd670e Binary files /dev/null and b/campi_flegrei_example_all_times/20180606/LiCSAlert_figure_with_080_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180606/mask_status.png b/campi_flegrei_example_all_times/20180606/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180606/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180606/volcano_status.txt b/campi_flegrei_example_all_times/20180606/volcano_status.txt new file mode 100644 index 00000000..2082157b --- /dev/null +++ b/campi_flegrei_example_all_times/20180606/volcano_status.txt @@ -0,0 +1,2 @@ +0.30159012483505987 +0.531704649208618 diff --git a/campi_flegrei_example_all_times/20180612/01_cumulative_20141031_20180612.png b/campi_flegrei_example_all_times/20180612/01_cumulative_20141031_20180612.png new file mode 100644 index 00000000..dccdafd3 Binary files /dev/null and b/campi_flegrei_example_all_times/20180612/01_cumulative_20141031_20180612.png differ diff --git a/campi_flegrei_example_all_times/20180612/02_incremental_20180606_20180612.png b/campi_flegrei_example_all_times/20180612/02_incremental_20180606_20180612.png new file mode 100644 index 00000000..95f95a3d Binary files /dev/null and b/campi_flegrei_example_all_times/20180612/02_incremental_20180606_20180612.png differ diff --git a/campi_flegrei_example_all_times/20180612/03_reconstruction_20180606_20180612.png b/campi_flegrei_example_all_times/20180612/03_reconstruction_20180606_20180612.png new file mode 100644 index 00000000..423f1444 Binary files /dev/null and b/campi_flegrei_example_all_times/20180612/03_reconstruction_20180606_20180612.png differ diff --git a/campi_flegrei_example_all_times/20180612/04_residual_20180606_20180612.png b/campi_flegrei_example_all_times/20180612/04_residual_20180606_20180612.png new file mode 100644 index 00000000..f67b42a9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180612/04_residual_20180606_20180612.png differ diff --git a/campi_flegrei_example_all_times/20180612/LiCSAlert_figure_with_081_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180612/LiCSAlert_figure_with_081_monitoring_interferograms.png new file mode 100644 index 00000000..86dbb6f1 Binary files /dev/null and b/campi_flegrei_example_all_times/20180612/LiCSAlert_figure_with_081_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180612/mask_status.png b/campi_flegrei_example_all_times/20180612/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180612/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180612/volcano_status.txt b/campi_flegrei_example_all_times/20180612/volcano_status.txt new file mode 100644 index 00000000..2cbc3f77 --- /dev/null +++ b/campi_flegrei_example_all_times/20180612/volcano_status.txt @@ -0,0 +1,2 @@ +1.409466119970591 +0.915403010068315 diff --git a/campi_flegrei_example_all_times/20180618/01_cumulative_20141031_20180618.png b/campi_flegrei_example_all_times/20180618/01_cumulative_20141031_20180618.png new file mode 100644 index 00000000..467b0b95 Binary files /dev/null and b/campi_flegrei_example_all_times/20180618/01_cumulative_20141031_20180618.png differ diff --git a/campi_flegrei_example_all_times/20180618/02_incremental_20180612_20180618.png b/campi_flegrei_example_all_times/20180618/02_incremental_20180612_20180618.png new file mode 100644 index 00000000..a4c6afd3 Binary files /dev/null and b/campi_flegrei_example_all_times/20180618/02_incremental_20180612_20180618.png differ diff --git a/campi_flegrei_example_all_times/20180618/03_reconstruction_20180612_20180618.png b/campi_flegrei_example_all_times/20180618/03_reconstruction_20180612_20180618.png new file mode 100644 index 00000000..5e1af586 Binary files /dev/null and b/campi_flegrei_example_all_times/20180618/03_reconstruction_20180612_20180618.png differ diff --git a/campi_flegrei_example_all_times/20180618/04_residual_20180612_20180618.png b/campi_flegrei_example_all_times/20180618/04_residual_20180612_20180618.png new file mode 100644 index 00000000..2ec2b927 Binary files /dev/null and b/campi_flegrei_example_all_times/20180618/04_residual_20180612_20180618.png differ diff --git a/campi_flegrei_example_all_times/20180618/LiCSAlert_figure_with_082_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180618/LiCSAlert_figure_with_082_monitoring_interferograms.png new file mode 100644 index 00000000..f2582b00 Binary files /dev/null and b/campi_flegrei_example_all_times/20180618/LiCSAlert_figure_with_082_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180618/mask_status.png b/campi_flegrei_example_all_times/20180618/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180618/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180618/volcano_status.txt b/campi_flegrei_example_all_times/20180618/volcano_status.txt new file mode 100644 index 00000000..3a846219 --- /dev/null +++ b/campi_flegrei_example_all_times/20180618/volcano_status.txt @@ -0,0 +1,2 @@ +1.8083696894666788 +0.06783587351011959 diff --git a/campi_flegrei_example_all_times/20180630/01_cumulative_20141031_20180630.png b/campi_flegrei_example_all_times/20180630/01_cumulative_20141031_20180630.png new file mode 100644 index 00000000..6560fab5 Binary files /dev/null and b/campi_flegrei_example_all_times/20180630/01_cumulative_20141031_20180630.png differ diff --git a/campi_flegrei_example_all_times/20180630/02_incremental_20180618_20180630.png b/campi_flegrei_example_all_times/20180630/02_incremental_20180618_20180630.png new file mode 100644 index 00000000..20decc47 Binary files /dev/null and b/campi_flegrei_example_all_times/20180630/02_incremental_20180618_20180630.png differ diff --git a/campi_flegrei_example_all_times/20180630/03_reconstruction_20180618_20180630.png b/campi_flegrei_example_all_times/20180630/03_reconstruction_20180618_20180630.png new file mode 100644 index 00000000..2a3cbb75 Binary files /dev/null and b/campi_flegrei_example_all_times/20180630/03_reconstruction_20180618_20180630.png differ diff --git a/campi_flegrei_example_all_times/20180630/04_residual_20180618_20180630.png b/campi_flegrei_example_all_times/20180630/04_residual_20180618_20180630.png new file mode 100644 index 00000000..95d0c936 Binary files /dev/null and b/campi_flegrei_example_all_times/20180630/04_residual_20180618_20180630.png differ diff --git a/campi_flegrei_example_all_times/20180630/LiCSAlert_figure_with_083_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180630/LiCSAlert_figure_with_083_monitoring_interferograms.png new file mode 100644 index 00000000..cf8b90b3 Binary files /dev/null and b/campi_flegrei_example_all_times/20180630/LiCSAlert_figure_with_083_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180630/mask_status.png b/campi_flegrei_example_all_times/20180630/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180630/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180630/volcano_status.txt b/campi_flegrei_example_all_times/20180630/volcano_status.txt new file mode 100644 index 00000000..a0d0aac5 --- /dev/null +++ b/campi_flegrei_example_all_times/20180630/volcano_status.txt @@ -0,0 +1,2 @@ +0.38965868484756766 +0.4033085347238764 diff --git a/campi_flegrei_example_all_times/20180712/01_cumulative_20141031_20180712.png b/campi_flegrei_example_all_times/20180712/01_cumulative_20141031_20180712.png new file mode 100644 index 00000000..735d6fe9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180712/01_cumulative_20141031_20180712.png differ diff --git a/campi_flegrei_example_all_times/20180712/02_incremental_20180630_20180712.png b/campi_flegrei_example_all_times/20180712/02_incremental_20180630_20180712.png new file mode 100644 index 00000000..ed6705d3 Binary files /dev/null and b/campi_flegrei_example_all_times/20180712/02_incremental_20180630_20180712.png differ diff --git a/campi_flegrei_example_all_times/20180712/03_reconstruction_20180630_20180712.png b/campi_flegrei_example_all_times/20180712/03_reconstruction_20180630_20180712.png new file mode 100644 index 00000000..5b73a1af Binary files /dev/null and b/campi_flegrei_example_all_times/20180712/03_reconstruction_20180630_20180712.png differ diff --git a/campi_flegrei_example_all_times/20180712/04_residual_20180630_20180712.png b/campi_flegrei_example_all_times/20180712/04_residual_20180630_20180712.png new file mode 100644 index 00000000..6e24d7b7 Binary files /dev/null and b/campi_flegrei_example_all_times/20180712/04_residual_20180630_20180712.png differ diff --git a/campi_flegrei_example_all_times/20180712/LiCSAlert_figure_with_084_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180712/LiCSAlert_figure_with_084_monitoring_interferograms.png new file mode 100644 index 00000000..a9463304 Binary files /dev/null and b/campi_flegrei_example_all_times/20180712/LiCSAlert_figure_with_084_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180712/mask_status.png b/campi_flegrei_example_all_times/20180712/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180712/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180712/volcano_status.txt b/campi_flegrei_example_all_times/20180712/volcano_status.txt new file mode 100644 index 00000000..2543d412 --- /dev/null +++ b/campi_flegrei_example_all_times/20180712/volcano_status.txt @@ -0,0 +1,2 @@ +0.6341122471837766 +0.6604594269553115 diff --git a/campi_flegrei_example_all_times/20180718/01_cumulative_20141031_20180718.png b/campi_flegrei_example_all_times/20180718/01_cumulative_20141031_20180718.png new file mode 100644 index 00000000..accd8051 Binary files /dev/null and b/campi_flegrei_example_all_times/20180718/01_cumulative_20141031_20180718.png differ diff --git a/campi_flegrei_example_all_times/20180718/02_incremental_20180712_20180718.png b/campi_flegrei_example_all_times/20180718/02_incremental_20180712_20180718.png new file mode 100644 index 00000000..9e39a6d3 Binary files /dev/null and b/campi_flegrei_example_all_times/20180718/02_incremental_20180712_20180718.png differ diff --git a/campi_flegrei_example_all_times/20180718/03_reconstruction_20180712_20180718.png b/campi_flegrei_example_all_times/20180718/03_reconstruction_20180712_20180718.png new file mode 100644 index 00000000..d0ea1306 Binary files /dev/null and b/campi_flegrei_example_all_times/20180718/03_reconstruction_20180712_20180718.png differ diff --git a/campi_flegrei_example_all_times/20180718/04_residual_20180712_20180718.png b/campi_flegrei_example_all_times/20180718/04_residual_20180712_20180718.png new file mode 100644 index 00000000..e67aef43 Binary files /dev/null and b/campi_flegrei_example_all_times/20180718/04_residual_20180712_20180718.png differ diff --git a/campi_flegrei_example_all_times/20180718/LiCSAlert_figure_with_085_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180718/LiCSAlert_figure_with_085_monitoring_interferograms.png new file mode 100644 index 00000000..d310ab8e Binary files /dev/null and b/campi_flegrei_example_all_times/20180718/LiCSAlert_figure_with_085_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180718/mask_status.png b/campi_flegrei_example_all_times/20180718/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180718/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180718/volcano_status.txt b/campi_flegrei_example_all_times/20180718/volcano_status.txt new file mode 100644 index 00000000..166e1bb2 --- /dev/null +++ b/campi_flegrei_example_all_times/20180718/volcano_status.txt @@ -0,0 +1,2 @@ +1.0927757994138607 +0.3307099655180177 diff --git a/campi_flegrei_example_all_times/20180724/01_cumulative_20141031_20180724.png b/campi_flegrei_example_all_times/20180724/01_cumulative_20141031_20180724.png new file mode 100644 index 00000000..dc304a1b Binary files /dev/null and b/campi_flegrei_example_all_times/20180724/01_cumulative_20141031_20180724.png differ diff --git a/campi_flegrei_example_all_times/20180724/02_incremental_20180718_20180724.png b/campi_flegrei_example_all_times/20180724/02_incremental_20180718_20180724.png new file mode 100644 index 00000000..6788036d Binary files /dev/null and b/campi_flegrei_example_all_times/20180724/02_incremental_20180718_20180724.png differ diff --git a/campi_flegrei_example_all_times/20180724/03_reconstruction_20180718_20180724.png b/campi_flegrei_example_all_times/20180724/03_reconstruction_20180718_20180724.png new file mode 100644 index 00000000..0a7f603b Binary files /dev/null and b/campi_flegrei_example_all_times/20180724/03_reconstruction_20180718_20180724.png differ diff --git a/campi_flegrei_example_all_times/20180724/04_residual_20180718_20180724.png b/campi_flegrei_example_all_times/20180724/04_residual_20180718_20180724.png new file mode 100644 index 00000000..13d9f936 Binary files /dev/null and b/campi_flegrei_example_all_times/20180724/04_residual_20180718_20180724.png differ diff --git a/campi_flegrei_example_all_times/20180724/LiCSAlert_figure_with_086_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180724/LiCSAlert_figure_with_086_monitoring_interferograms.png new file mode 100644 index 00000000..32351c1c Binary files /dev/null and b/campi_flegrei_example_all_times/20180724/LiCSAlert_figure_with_086_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180724/mask_status.png b/campi_flegrei_example_all_times/20180724/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180724/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180724/volcano_status.txt b/campi_flegrei_example_all_times/20180724/volcano_status.txt new file mode 100644 index 00000000..b9645b8a --- /dev/null +++ b/campi_flegrei_example_all_times/20180724/volcano_status.txt @@ -0,0 +1,2 @@ +0.07445896987653654 +0.3882186279965044 diff --git a/campi_flegrei_example_all_times/20180730/01_cumulative_20141031_20180730.png b/campi_flegrei_example_all_times/20180730/01_cumulative_20141031_20180730.png new file mode 100644 index 00000000..03ea904c Binary files /dev/null and b/campi_flegrei_example_all_times/20180730/01_cumulative_20141031_20180730.png differ diff --git a/campi_flegrei_example_all_times/20180730/02_incremental_20180724_20180730.png b/campi_flegrei_example_all_times/20180730/02_incremental_20180724_20180730.png new file mode 100644 index 00000000..4fc0cc06 Binary files /dev/null and b/campi_flegrei_example_all_times/20180730/02_incremental_20180724_20180730.png differ diff --git a/campi_flegrei_example_all_times/20180730/03_reconstruction_20180724_20180730.png b/campi_flegrei_example_all_times/20180730/03_reconstruction_20180724_20180730.png new file mode 100644 index 00000000..35ad252a Binary files /dev/null and b/campi_flegrei_example_all_times/20180730/03_reconstruction_20180724_20180730.png differ diff --git a/campi_flegrei_example_all_times/20180730/04_residual_20180724_20180730.png b/campi_flegrei_example_all_times/20180730/04_residual_20180724_20180730.png new file mode 100644 index 00000000..23370787 Binary files /dev/null and b/campi_flegrei_example_all_times/20180730/04_residual_20180724_20180730.png differ diff --git a/campi_flegrei_example_all_times/20180730/LiCSAlert_figure_with_087_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180730/LiCSAlert_figure_with_087_monitoring_interferograms.png new file mode 100644 index 00000000..5ba1f205 Binary files /dev/null and b/campi_flegrei_example_all_times/20180730/LiCSAlert_figure_with_087_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180730/mask_status.png b/campi_flegrei_example_all_times/20180730/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180730/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180730/volcano_status.txt b/campi_flegrei_example_all_times/20180730/volcano_status.txt new file mode 100644 index 00000000..4ba27fef --- /dev/null +++ b/campi_flegrei_example_all_times/20180730/volcano_status.txt @@ -0,0 +1,2 @@ +0.5811297593799893 +0.9358855603362708 diff --git a/campi_flegrei_example_all_times/20180805/01_cumulative_20141031_20180805.png b/campi_flegrei_example_all_times/20180805/01_cumulative_20141031_20180805.png new file mode 100644 index 00000000..e9687181 Binary files /dev/null and b/campi_flegrei_example_all_times/20180805/01_cumulative_20141031_20180805.png differ diff --git a/campi_flegrei_example_all_times/20180805/02_incremental_20180730_20180805.png b/campi_flegrei_example_all_times/20180805/02_incremental_20180730_20180805.png new file mode 100644 index 00000000..806ca24f Binary files /dev/null and b/campi_flegrei_example_all_times/20180805/02_incremental_20180730_20180805.png differ diff --git a/campi_flegrei_example_all_times/20180805/03_reconstruction_20180730_20180805.png b/campi_flegrei_example_all_times/20180805/03_reconstruction_20180730_20180805.png new file mode 100644 index 00000000..2246041c Binary files /dev/null and b/campi_flegrei_example_all_times/20180805/03_reconstruction_20180730_20180805.png differ diff --git a/campi_flegrei_example_all_times/20180805/04_residual_20180730_20180805.png b/campi_flegrei_example_all_times/20180805/04_residual_20180730_20180805.png new file mode 100644 index 00000000..bf247f77 Binary files /dev/null and b/campi_flegrei_example_all_times/20180805/04_residual_20180730_20180805.png differ diff --git a/campi_flegrei_example_all_times/20180805/LiCSAlert_figure_with_088_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180805/LiCSAlert_figure_with_088_monitoring_interferograms.png new file mode 100644 index 00000000..1a38710a Binary files /dev/null and b/campi_flegrei_example_all_times/20180805/LiCSAlert_figure_with_088_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180805/mask_status.png b/campi_flegrei_example_all_times/20180805/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180805/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180805/volcano_status.txt b/campi_flegrei_example_all_times/20180805/volcano_status.txt new file mode 100644 index 00000000..dd1a9f56 --- /dev/null +++ b/campi_flegrei_example_all_times/20180805/volcano_status.txt @@ -0,0 +1,2 @@ +0.8220245358272907 +0.30182868635219373 diff --git a/campi_flegrei_example_all_times/20180811/01_cumulative_20141031_20180811.png b/campi_flegrei_example_all_times/20180811/01_cumulative_20141031_20180811.png new file mode 100644 index 00000000..15c55889 Binary files /dev/null and b/campi_flegrei_example_all_times/20180811/01_cumulative_20141031_20180811.png differ diff --git a/campi_flegrei_example_all_times/20180811/02_incremental_20180805_20180811.png b/campi_flegrei_example_all_times/20180811/02_incremental_20180805_20180811.png new file mode 100644 index 00000000..ac3b5580 Binary files /dev/null and b/campi_flegrei_example_all_times/20180811/02_incremental_20180805_20180811.png differ diff --git a/campi_flegrei_example_all_times/20180811/03_reconstruction_20180805_20180811.png b/campi_flegrei_example_all_times/20180811/03_reconstruction_20180805_20180811.png new file mode 100644 index 00000000..075df68a Binary files /dev/null and b/campi_flegrei_example_all_times/20180811/03_reconstruction_20180805_20180811.png differ diff --git a/campi_flegrei_example_all_times/20180811/04_residual_20180805_20180811.png b/campi_flegrei_example_all_times/20180811/04_residual_20180805_20180811.png new file mode 100644 index 00000000..122e2a5e Binary files /dev/null and b/campi_flegrei_example_all_times/20180811/04_residual_20180805_20180811.png differ diff --git a/campi_flegrei_example_all_times/20180811/LiCSAlert_figure_with_089_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180811/LiCSAlert_figure_with_089_monitoring_interferograms.png new file mode 100644 index 00000000..11b61655 Binary files /dev/null and b/campi_flegrei_example_all_times/20180811/LiCSAlert_figure_with_089_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180811/mask_status.png b/campi_flegrei_example_all_times/20180811/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180811/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180811/volcano_status.txt b/campi_flegrei_example_all_times/20180811/volcano_status.txt new file mode 100644 index 00000000..a32cd960 --- /dev/null +++ b/campi_flegrei_example_all_times/20180811/volcano_status.txt @@ -0,0 +1,2 @@ +0.3240586397022153 +0.03153038640516568 diff --git a/campi_flegrei_example_all_times/20180817/01_cumulative_20141031_20180817.png b/campi_flegrei_example_all_times/20180817/01_cumulative_20141031_20180817.png new file mode 100644 index 00000000..a5692f04 Binary files /dev/null and b/campi_flegrei_example_all_times/20180817/01_cumulative_20141031_20180817.png differ diff --git a/campi_flegrei_example_all_times/20180817/02_incremental_20180811_20180817.png b/campi_flegrei_example_all_times/20180817/02_incremental_20180811_20180817.png new file mode 100644 index 00000000..638d4694 Binary files /dev/null and b/campi_flegrei_example_all_times/20180817/02_incremental_20180811_20180817.png differ diff --git a/campi_flegrei_example_all_times/20180817/03_reconstruction_20180811_20180817.png b/campi_flegrei_example_all_times/20180817/03_reconstruction_20180811_20180817.png new file mode 100644 index 00000000..b58b4bd9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180817/03_reconstruction_20180811_20180817.png differ diff --git a/campi_flegrei_example_all_times/20180817/04_residual_20180811_20180817.png b/campi_flegrei_example_all_times/20180817/04_residual_20180811_20180817.png new file mode 100644 index 00000000..0b372996 Binary files /dev/null and b/campi_flegrei_example_all_times/20180817/04_residual_20180811_20180817.png differ diff --git a/campi_flegrei_example_all_times/20180817/LiCSAlert_figure_with_090_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180817/LiCSAlert_figure_with_090_monitoring_interferograms.png new file mode 100644 index 00000000..215abbf2 Binary files /dev/null and b/campi_flegrei_example_all_times/20180817/LiCSAlert_figure_with_090_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180817/mask_status.png b/campi_flegrei_example_all_times/20180817/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180817/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180817/volcano_status.txt b/campi_flegrei_example_all_times/20180817/volcano_status.txt new file mode 100644 index 00000000..52aa6863 --- /dev/null +++ b/campi_flegrei_example_all_times/20180817/volcano_status.txt @@ -0,0 +1,2 @@ +0.3179640209910092 +0.30923287823403994 diff --git a/campi_flegrei_example_all_times/20180823/01_cumulative_20141031_20180823.png b/campi_flegrei_example_all_times/20180823/01_cumulative_20141031_20180823.png new file mode 100644 index 00000000..78bd125b Binary files /dev/null and b/campi_flegrei_example_all_times/20180823/01_cumulative_20141031_20180823.png differ diff --git a/campi_flegrei_example_all_times/20180823/02_incremental_20180817_20180823.png b/campi_flegrei_example_all_times/20180823/02_incremental_20180817_20180823.png new file mode 100644 index 00000000..909d00f4 Binary files /dev/null and b/campi_flegrei_example_all_times/20180823/02_incremental_20180817_20180823.png differ diff --git a/campi_flegrei_example_all_times/20180823/03_reconstruction_20180817_20180823.png b/campi_flegrei_example_all_times/20180823/03_reconstruction_20180817_20180823.png new file mode 100644 index 00000000..f2a2077f Binary files /dev/null and b/campi_flegrei_example_all_times/20180823/03_reconstruction_20180817_20180823.png differ diff --git a/campi_flegrei_example_all_times/20180823/04_residual_20180817_20180823.png b/campi_flegrei_example_all_times/20180823/04_residual_20180817_20180823.png new file mode 100644 index 00000000..cc0965b9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180823/04_residual_20180817_20180823.png differ diff --git a/campi_flegrei_example_all_times/20180823/LiCSAlert_figure_with_091_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180823/LiCSAlert_figure_with_091_monitoring_interferograms.png new file mode 100644 index 00000000..ecf8ce22 Binary files /dev/null and b/campi_flegrei_example_all_times/20180823/LiCSAlert_figure_with_091_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180823/mask_status.png b/campi_flegrei_example_all_times/20180823/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180823/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180823/volcano_status.txt b/campi_flegrei_example_all_times/20180823/volcano_status.txt new file mode 100644 index 00000000..f4076460 --- /dev/null +++ b/campi_flegrei_example_all_times/20180823/volcano_status.txt @@ -0,0 +1,2 @@ +0.9492670925216143 +0.22739938756228537 diff --git a/campi_flegrei_example_all_times/20180829/01_cumulative_20141031_20180829.png b/campi_flegrei_example_all_times/20180829/01_cumulative_20141031_20180829.png new file mode 100644 index 00000000..a74a1637 Binary files /dev/null and b/campi_flegrei_example_all_times/20180829/01_cumulative_20141031_20180829.png differ diff --git a/campi_flegrei_example_all_times/20180829/02_incremental_20180823_20180829.png b/campi_flegrei_example_all_times/20180829/02_incremental_20180823_20180829.png new file mode 100644 index 00000000..c68f3b71 Binary files /dev/null and b/campi_flegrei_example_all_times/20180829/02_incremental_20180823_20180829.png differ diff --git a/campi_flegrei_example_all_times/20180829/03_reconstruction_20180823_20180829.png b/campi_flegrei_example_all_times/20180829/03_reconstruction_20180823_20180829.png new file mode 100644 index 00000000..239685ff Binary files /dev/null and b/campi_flegrei_example_all_times/20180829/03_reconstruction_20180823_20180829.png differ diff --git a/campi_flegrei_example_all_times/20180829/04_residual_20180823_20180829.png b/campi_flegrei_example_all_times/20180829/04_residual_20180823_20180829.png new file mode 100644 index 00000000..a555cb3a Binary files /dev/null and b/campi_flegrei_example_all_times/20180829/04_residual_20180823_20180829.png differ diff --git a/campi_flegrei_example_all_times/20180829/LiCSAlert_figure_with_092_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180829/LiCSAlert_figure_with_092_monitoring_interferograms.png new file mode 100644 index 00000000..b98b4211 Binary files /dev/null and b/campi_flegrei_example_all_times/20180829/LiCSAlert_figure_with_092_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180829/mask_status.png b/campi_flegrei_example_all_times/20180829/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180829/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180829/volcano_status.txt b/campi_flegrei_example_all_times/20180829/volcano_status.txt new file mode 100644 index 00000000..9a6b657b --- /dev/null +++ b/campi_flegrei_example_all_times/20180829/volcano_status.txt @@ -0,0 +1,2 @@ +0.12496922199944155 +0.17816110757974865 diff --git a/campi_flegrei_example_all_times/20180904/01_cumulative_20141031_20180904.png b/campi_flegrei_example_all_times/20180904/01_cumulative_20141031_20180904.png new file mode 100644 index 00000000..489be5d1 Binary files /dev/null and b/campi_flegrei_example_all_times/20180904/01_cumulative_20141031_20180904.png differ diff --git a/campi_flegrei_example_all_times/20180904/02_incremental_20180829_20180904.png b/campi_flegrei_example_all_times/20180904/02_incremental_20180829_20180904.png new file mode 100644 index 00000000..f563bb98 Binary files /dev/null and b/campi_flegrei_example_all_times/20180904/02_incremental_20180829_20180904.png differ diff --git a/campi_flegrei_example_all_times/20180904/03_reconstruction_20180829_20180904.png b/campi_flegrei_example_all_times/20180904/03_reconstruction_20180829_20180904.png new file mode 100644 index 00000000..e7f1401b Binary files /dev/null and b/campi_flegrei_example_all_times/20180904/03_reconstruction_20180829_20180904.png differ diff --git a/campi_flegrei_example_all_times/20180904/04_residual_20180829_20180904.png b/campi_flegrei_example_all_times/20180904/04_residual_20180829_20180904.png new file mode 100644 index 00000000..23e29b39 Binary files /dev/null and b/campi_flegrei_example_all_times/20180904/04_residual_20180829_20180904.png differ diff --git a/campi_flegrei_example_all_times/20180904/LiCSAlert_figure_with_093_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180904/LiCSAlert_figure_with_093_monitoring_interferograms.png new file mode 100644 index 00000000..13bdbbf1 Binary files /dev/null and b/campi_flegrei_example_all_times/20180904/LiCSAlert_figure_with_093_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180904/mask_status.png b/campi_flegrei_example_all_times/20180904/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180904/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180904/volcano_status.txt b/campi_flegrei_example_all_times/20180904/volcano_status.txt new file mode 100644 index 00000000..e675c3ab --- /dev/null +++ b/campi_flegrei_example_all_times/20180904/volcano_status.txt @@ -0,0 +1,2 @@ +0.7500975716003904 +0.2037677502729823 diff --git a/campi_flegrei_example_all_times/20180910/01_cumulative_20141031_20180910.png b/campi_flegrei_example_all_times/20180910/01_cumulative_20141031_20180910.png new file mode 100644 index 00000000..137559d0 Binary files /dev/null and b/campi_flegrei_example_all_times/20180910/01_cumulative_20141031_20180910.png differ diff --git a/campi_flegrei_example_all_times/20180910/02_incremental_20180904_20180910.png b/campi_flegrei_example_all_times/20180910/02_incremental_20180904_20180910.png new file mode 100644 index 00000000..1bbec35a Binary files /dev/null and b/campi_flegrei_example_all_times/20180910/02_incremental_20180904_20180910.png differ diff --git a/campi_flegrei_example_all_times/20180910/03_reconstruction_20180904_20180910.png b/campi_flegrei_example_all_times/20180910/03_reconstruction_20180904_20180910.png new file mode 100644 index 00000000..a823ba57 Binary files /dev/null and b/campi_flegrei_example_all_times/20180910/03_reconstruction_20180904_20180910.png differ diff --git a/campi_flegrei_example_all_times/20180910/04_residual_20180904_20180910.png b/campi_flegrei_example_all_times/20180910/04_residual_20180904_20180910.png new file mode 100644 index 00000000..8bacea0f Binary files /dev/null and b/campi_flegrei_example_all_times/20180910/04_residual_20180904_20180910.png differ diff --git a/campi_flegrei_example_all_times/20180910/LiCSAlert_figure_with_094_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180910/LiCSAlert_figure_with_094_monitoring_interferograms.png new file mode 100644 index 00000000..8cf01919 Binary files /dev/null and b/campi_flegrei_example_all_times/20180910/LiCSAlert_figure_with_094_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180910/mask_status.png b/campi_flegrei_example_all_times/20180910/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180910/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180910/volcano_status.txt b/campi_flegrei_example_all_times/20180910/volcano_status.txt new file mode 100644 index 00000000..b4196724 --- /dev/null +++ b/campi_flegrei_example_all_times/20180910/volcano_status.txt @@ -0,0 +1,2 @@ +2.1322236015915172 +1.3612425800554084 diff --git a/campi_flegrei_example_all_times/20180916/01_cumulative_20141031_20180916.png b/campi_flegrei_example_all_times/20180916/01_cumulative_20141031_20180916.png new file mode 100644 index 00000000..1629cdbe Binary files /dev/null and b/campi_flegrei_example_all_times/20180916/01_cumulative_20141031_20180916.png differ diff --git a/campi_flegrei_example_all_times/20180916/02_incremental_20180910_20180916.png b/campi_flegrei_example_all_times/20180916/02_incremental_20180910_20180916.png new file mode 100644 index 00000000..bd546ca7 Binary files /dev/null and b/campi_flegrei_example_all_times/20180916/02_incremental_20180910_20180916.png differ diff --git a/campi_flegrei_example_all_times/20180916/03_reconstruction_20180910_20180916.png b/campi_flegrei_example_all_times/20180916/03_reconstruction_20180910_20180916.png new file mode 100644 index 00000000..4c770fdb Binary files /dev/null and b/campi_flegrei_example_all_times/20180916/03_reconstruction_20180910_20180916.png differ diff --git a/campi_flegrei_example_all_times/20180916/04_residual_20180910_20180916.png b/campi_flegrei_example_all_times/20180916/04_residual_20180910_20180916.png new file mode 100644 index 00000000..97bf434b Binary files /dev/null and b/campi_flegrei_example_all_times/20180916/04_residual_20180910_20180916.png differ diff --git a/campi_flegrei_example_all_times/20180916/LiCSAlert_figure_with_095_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180916/LiCSAlert_figure_with_095_monitoring_interferograms.png new file mode 100644 index 00000000..b236761e Binary files /dev/null and b/campi_flegrei_example_all_times/20180916/LiCSAlert_figure_with_095_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180916/mask_status.png b/campi_flegrei_example_all_times/20180916/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180916/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180916/volcano_status.txt b/campi_flegrei_example_all_times/20180916/volcano_status.txt new file mode 100644 index 00000000..64e1f39b --- /dev/null +++ b/campi_flegrei_example_all_times/20180916/volcano_status.txt @@ -0,0 +1,2 @@ +0.37383116513787057 +0.9953405283073086 diff --git a/campi_flegrei_example_all_times/20180922/01_cumulative_20141031_20180922.png b/campi_flegrei_example_all_times/20180922/01_cumulative_20141031_20180922.png new file mode 100644 index 00000000..a6b1865b Binary files /dev/null and b/campi_flegrei_example_all_times/20180922/01_cumulative_20141031_20180922.png differ diff --git a/campi_flegrei_example_all_times/20180922/02_incremental_20180916_20180922.png b/campi_flegrei_example_all_times/20180922/02_incremental_20180916_20180922.png new file mode 100644 index 00000000..32c1be15 Binary files /dev/null and b/campi_flegrei_example_all_times/20180922/02_incremental_20180916_20180922.png differ diff --git a/campi_flegrei_example_all_times/20180922/03_reconstruction_20180916_20180922.png b/campi_flegrei_example_all_times/20180922/03_reconstruction_20180916_20180922.png new file mode 100644 index 00000000..8b69ce95 Binary files /dev/null and b/campi_flegrei_example_all_times/20180922/03_reconstruction_20180916_20180922.png differ diff --git a/campi_flegrei_example_all_times/20180922/04_residual_20180916_20180922.png b/campi_flegrei_example_all_times/20180922/04_residual_20180916_20180922.png new file mode 100644 index 00000000..949345b3 Binary files /dev/null and b/campi_flegrei_example_all_times/20180922/04_residual_20180916_20180922.png differ diff --git a/campi_flegrei_example_all_times/20180922/LiCSAlert_figure_with_096_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180922/LiCSAlert_figure_with_096_monitoring_interferograms.png new file mode 100644 index 00000000..76b5b017 Binary files /dev/null and b/campi_flegrei_example_all_times/20180922/LiCSAlert_figure_with_096_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180922/mask_status.png b/campi_flegrei_example_all_times/20180922/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180922/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180922/volcano_status.txt b/campi_flegrei_example_all_times/20180922/volcano_status.txt new file mode 100644 index 00000000..cc72e2cd --- /dev/null +++ b/campi_flegrei_example_all_times/20180922/volcano_status.txt @@ -0,0 +1,2 @@ +0.5121158410967773 +0.0014885799795179523 diff --git a/campi_flegrei_example_all_times/20180928/01_cumulative_20141031_20180928.png b/campi_flegrei_example_all_times/20180928/01_cumulative_20141031_20180928.png new file mode 100644 index 00000000..7460025e Binary files /dev/null and b/campi_flegrei_example_all_times/20180928/01_cumulative_20141031_20180928.png differ diff --git a/campi_flegrei_example_all_times/20180928/02_incremental_20180922_20180928.png b/campi_flegrei_example_all_times/20180928/02_incremental_20180922_20180928.png new file mode 100644 index 00000000..ddec0f63 Binary files /dev/null and b/campi_flegrei_example_all_times/20180928/02_incremental_20180922_20180928.png differ diff --git a/campi_flegrei_example_all_times/20180928/03_reconstruction_20180922_20180928.png b/campi_flegrei_example_all_times/20180928/03_reconstruction_20180922_20180928.png new file mode 100644 index 00000000..fd04a3e3 Binary files /dev/null and b/campi_flegrei_example_all_times/20180928/03_reconstruction_20180922_20180928.png differ diff --git a/campi_flegrei_example_all_times/20180928/04_residual_20180922_20180928.png b/campi_flegrei_example_all_times/20180928/04_residual_20180922_20180928.png new file mode 100644 index 00000000..eae99ec9 Binary files /dev/null and b/campi_flegrei_example_all_times/20180928/04_residual_20180922_20180928.png differ diff --git a/campi_flegrei_example_all_times/20180928/LiCSAlert_figure_with_097_monitoring_interferograms.png b/campi_flegrei_example_all_times/20180928/LiCSAlert_figure_with_097_monitoring_interferograms.png new file mode 100644 index 00000000..7ec30470 Binary files /dev/null and b/campi_flegrei_example_all_times/20180928/LiCSAlert_figure_with_097_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20180928/mask_status.png b/campi_flegrei_example_all_times/20180928/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20180928/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20180928/volcano_status.txt b/campi_flegrei_example_all_times/20180928/volcano_status.txt new file mode 100644 index 00000000..483e0cab --- /dev/null +++ b/campi_flegrei_example_all_times/20180928/volcano_status.txt @@ -0,0 +1,2 @@ +0.07129124177748969 +0.06664520388044262 diff --git a/campi_flegrei_example_all_times/20181004/01_cumulative_20141031_20181004.png b/campi_flegrei_example_all_times/20181004/01_cumulative_20141031_20181004.png new file mode 100644 index 00000000..ed3aece1 Binary files /dev/null and b/campi_flegrei_example_all_times/20181004/01_cumulative_20141031_20181004.png differ diff --git a/campi_flegrei_example_all_times/20181004/02_incremental_20180928_20181004.png b/campi_flegrei_example_all_times/20181004/02_incremental_20180928_20181004.png new file mode 100644 index 00000000..3ac77667 Binary files /dev/null and b/campi_flegrei_example_all_times/20181004/02_incremental_20180928_20181004.png differ diff --git a/campi_flegrei_example_all_times/20181004/03_reconstruction_20180928_20181004.png b/campi_flegrei_example_all_times/20181004/03_reconstruction_20180928_20181004.png new file mode 100644 index 00000000..c7b7d94d Binary files /dev/null and b/campi_flegrei_example_all_times/20181004/03_reconstruction_20180928_20181004.png differ diff --git a/campi_flegrei_example_all_times/20181004/04_residual_20180928_20181004.png b/campi_flegrei_example_all_times/20181004/04_residual_20180928_20181004.png new file mode 100644 index 00000000..e165e75e Binary files /dev/null and b/campi_flegrei_example_all_times/20181004/04_residual_20180928_20181004.png differ diff --git a/campi_flegrei_example_all_times/20181004/LiCSAlert_figure_with_098_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181004/LiCSAlert_figure_with_098_monitoring_interferograms.png new file mode 100644 index 00000000..8269023a Binary files /dev/null and b/campi_flegrei_example_all_times/20181004/LiCSAlert_figure_with_098_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181004/mask_status.png b/campi_flegrei_example_all_times/20181004/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181004/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181004/volcano_status.txt b/campi_flegrei_example_all_times/20181004/volcano_status.txt new file mode 100644 index 00000000..1f34ce50 --- /dev/null +++ b/campi_flegrei_example_all_times/20181004/volcano_status.txt @@ -0,0 +1,2 @@ +2.217730568752007 +3.1458376998099524 diff --git a/campi_flegrei_example_all_times/20181010/01_cumulative_20141031_20181010.png b/campi_flegrei_example_all_times/20181010/01_cumulative_20141031_20181010.png new file mode 100644 index 00000000..03bdb1b9 Binary files /dev/null and b/campi_flegrei_example_all_times/20181010/01_cumulative_20141031_20181010.png differ diff --git a/campi_flegrei_example_all_times/20181010/02_incremental_20181004_20181010.png b/campi_flegrei_example_all_times/20181010/02_incremental_20181004_20181010.png new file mode 100644 index 00000000..ef54f051 Binary files /dev/null and b/campi_flegrei_example_all_times/20181010/02_incremental_20181004_20181010.png differ diff --git a/campi_flegrei_example_all_times/20181010/03_reconstruction_20181004_20181010.png b/campi_flegrei_example_all_times/20181010/03_reconstruction_20181004_20181010.png new file mode 100644 index 00000000..0c13fc79 Binary files /dev/null and b/campi_flegrei_example_all_times/20181010/03_reconstruction_20181004_20181010.png differ diff --git a/campi_flegrei_example_all_times/20181010/04_residual_20181004_20181010.png b/campi_flegrei_example_all_times/20181010/04_residual_20181004_20181010.png new file mode 100644 index 00000000..d13ba9e4 Binary files /dev/null and b/campi_flegrei_example_all_times/20181010/04_residual_20181004_20181010.png differ diff --git a/campi_flegrei_example_all_times/20181010/LiCSAlert_figure_with_099_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181010/LiCSAlert_figure_with_099_monitoring_interferograms.png new file mode 100644 index 00000000..a23f0b11 Binary files /dev/null and b/campi_flegrei_example_all_times/20181010/LiCSAlert_figure_with_099_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181010/mask_status.png b/campi_flegrei_example_all_times/20181010/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181010/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181010/volcano_status.txt b/campi_flegrei_example_all_times/20181010/volcano_status.txt new file mode 100644 index 00000000..96b38f5b --- /dev/null +++ b/campi_flegrei_example_all_times/20181010/volcano_status.txt @@ -0,0 +1,2 @@ +0.8316045807799683 +0.013590586630720694 diff --git a/campi_flegrei_example_all_times/20181016/01_cumulative_20141031_20181016.png b/campi_flegrei_example_all_times/20181016/01_cumulative_20141031_20181016.png new file mode 100644 index 00000000..b3690d09 Binary files /dev/null and b/campi_flegrei_example_all_times/20181016/01_cumulative_20141031_20181016.png differ diff --git a/campi_flegrei_example_all_times/20181016/02_incremental_20181010_20181016.png b/campi_flegrei_example_all_times/20181016/02_incremental_20181010_20181016.png new file mode 100644 index 00000000..37b3b536 Binary files /dev/null and b/campi_flegrei_example_all_times/20181016/02_incremental_20181010_20181016.png differ diff --git a/campi_flegrei_example_all_times/20181016/03_reconstruction_20181010_20181016.png b/campi_flegrei_example_all_times/20181016/03_reconstruction_20181010_20181016.png new file mode 100644 index 00000000..c4c8f922 Binary files /dev/null and b/campi_flegrei_example_all_times/20181016/03_reconstruction_20181010_20181016.png differ diff --git a/campi_flegrei_example_all_times/20181016/04_residual_20181010_20181016.png b/campi_flegrei_example_all_times/20181016/04_residual_20181010_20181016.png new file mode 100644 index 00000000..a9c1a9c9 Binary files /dev/null and b/campi_flegrei_example_all_times/20181016/04_residual_20181010_20181016.png differ diff --git a/campi_flegrei_example_all_times/20181016/LiCSAlert_figure_with_100_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181016/LiCSAlert_figure_with_100_monitoring_interferograms.png new file mode 100644 index 00000000..901b6cba Binary files /dev/null and b/campi_flegrei_example_all_times/20181016/LiCSAlert_figure_with_100_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181016/mask_status.png b/campi_flegrei_example_all_times/20181016/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181016/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181016/volcano_status.txt b/campi_flegrei_example_all_times/20181016/volcano_status.txt new file mode 100644 index 00000000..a5c57b03 --- /dev/null +++ b/campi_flegrei_example_all_times/20181016/volcano_status.txt @@ -0,0 +1,2 @@ +0.8615682417882924 +0.1327720455341366 diff --git a/campi_flegrei_example_all_times/20181022/01_cumulative_20141031_20181022.png b/campi_flegrei_example_all_times/20181022/01_cumulative_20141031_20181022.png new file mode 100644 index 00000000..d1a397ae Binary files /dev/null and b/campi_flegrei_example_all_times/20181022/01_cumulative_20141031_20181022.png differ diff --git a/campi_flegrei_example_all_times/20181022/02_incremental_20181016_20181022.png b/campi_flegrei_example_all_times/20181022/02_incremental_20181016_20181022.png new file mode 100644 index 00000000..4fee43b4 Binary files /dev/null and b/campi_flegrei_example_all_times/20181022/02_incremental_20181016_20181022.png differ diff --git a/campi_flegrei_example_all_times/20181022/03_reconstruction_20181016_20181022.png b/campi_flegrei_example_all_times/20181022/03_reconstruction_20181016_20181022.png new file mode 100644 index 00000000..fee703ad Binary files /dev/null and b/campi_flegrei_example_all_times/20181022/03_reconstruction_20181016_20181022.png differ diff --git a/campi_flegrei_example_all_times/20181022/04_residual_20181016_20181022.png b/campi_flegrei_example_all_times/20181022/04_residual_20181016_20181022.png new file mode 100644 index 00000000..693979c2 Binary files /dev/null and b/campi_flegrei_example_all_times/20181022/04_residual_20181016_20181022.png differ diff --git a/campi_flegrei_example_all_times/20181022/LiCSAlert_figure_with_101_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181022/LiCSAlert_figure_with_101_monitoring_interferograms.png new file mode 100644 index 00000000..1da64dbf Binary files /dev/null and b/campi_flegrei_example_all_times/20181022/LiCSAlert_figure_with_101_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181022/mask_status.png b/campi_flegrei_example_all_times/20181022/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181022/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181022/volcano_status.txt b/campi_flegrei_example_all_times/20181022/volcano_status.txt new file mode 100644 index 00000000..d90051e3 --- /dev/null +++ b/campi_flegrei_example_all_times/20181022/volcano_status.txt @@ -0,0 +1,2 @@ +0.7130767827331181 +1.2425375782724102 diff --git a/campi_flegrei_example_all_times/20181028/01_cumulative_20141031_20181028.png b/campi_flegrei_example_all_times/20181028/01_cumulative_20141031_20181028.png new file mode 100644 index 00000000..2cebf045 Binary files /dev/null and b/campi_flegrei_example_all_times/20181028/01_cumulative_20141031_20181028.png differ diff --git a/campi_flegrei_example_all_times/20181028/02_incremental_20181022_20181028.png b/campi_flegrei_example_all_times/20181028/02_incremental_20181022_20181028.png new file mode 100644 index 00000000..a7a36c6b Binary files /dev/null and b/campi_flegrei_example_all_times/20181028/02_incremental_20181022_20181028.png differ diff --git a/campi_flegrei_example_all_times/20181028/03_reconstruction_20181022_20181028.png b/campi_flegrei_example_all_times/20181028/03_reconstruction_20181022_20181028.png new file mode 100644 index 00000000..4bce94a0 Binary files /dev/null and b/campi_flegrei_example_all_times/20181028/03_reconstruction_20181022_20181028.png differ diff --git a/campi_flegrei_example_all_times/20181028/04_residual_20181022_20181028.png b/campi_flegrei_example_all_times/20181028/04_residual_20181022_20181028.png new file mode 100644 index 00000000..fa573889 Binary files /dev/null and b/campi_flegrei_example_all_times/20181028/04_residual_20181022_20181028.png differ diff --git a/campi_flegrei_example_all_times/20181028/LiCSAlert_figure_with_102_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181028/LiCSAlert_figure_with_102_monitoring_interferograms.png new file mode 100644 index 00000000..f518e0a5 Binary files /dev/null and b/campi_flegrei_example_all_times/20181028/LiCSAlert_figure_with_102_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181028/mask_status.png b/campi_flegrei_example_all_times/20181028/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181028/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181028/volcano_status.txt b/campi_flegrei_example_all_times/20181028/volcano_status.txt new file mode 100644 index 00000000..05c465cb --- /dev/null +++ b/campi_flegrei_example_all_times/20181028/volcano_status.txt @@ -0,0 +1,2 @@ +0.797026199648238 +2.225114304532064 diff --git a/campi_flegrei_example_all_times/20181109/01_cumulative_20141031_20181109.png b/campi_flegrei_example_all_times/20181109/01_cumulative_20141031_20181109.png new file mode 100644 index 00000000..26448272 Binary files /dev/null and b/campi_flegrei_example_all_times/20181109/01_cumulative_20141031_20181109.png differ diff --git a/campi_flegrei_example_all_times/20181109/02_incremental_20181028_20181109.png b/campi_flegrei_example_all_times/20181109/02_incremental_20181028_20181109.png new file mode 100644 index 00000000..396822db Binary files /dev/null and b/campi_flegrei_example_all_times/20181109/02_incremental_20181028_20181109.png differ diff --git a/campi_flegrei_example_all_times/20181109/03_reconstruction_20181028_20181109.png b/campi_flegrei_example_all_times/20181109/03_reconstruction_20181028_20181109.png new file mode 100644 index 00000000..af7ff9ef Binary files /dev/null and b/campi_flegrei_example_all_times/20181109/03_reconstruction_20181028_20181109.png differ diff --git a/campi_flegrei_example_all_times/20181109/04_residual_20181028_20181109.png b/campi_flegrei_example_all_times/20181109/04_residual_20181028_20181109.png new file mode 100644 index 00000000..577bc354 Binary files /dev/null and b/campi_flegrei_example_all_times/20181109/04_residual_20181028_20181109.png differ diff --git a/campi_flegrei_example_all_times/20181109/LiCSAlert_figure_with_103_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181109/LiCSAlert_figure_with_103_monitoring_interferograms.png new file mode 100644 index 00000000..612f9cb8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181109/LiCSAlert_figure_with_103_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181109/mask_status.png b/campi_flegrei_example_all_times/20181109/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181109/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181109/volcano_status.txt b/campi_flegrei_example_all_times/20181109/volcano_status.txt new file mode 100644 index 00000000..b453c15f --- /dev/null +++ b/campi_flegrei_example_all_times/20181109/volcano_status.txt @@ -0,0 +1,2 @@ +0.14207081420350676 +0.49796494972912053 diff --git a/campi_flegrei_example_all_times/20181115/01_cumulative_20141031_20181115.png b/campi_flegrei_example_all_times/20181115/01_cumulative_20141031_20181115.png new file mode 100644 index 00000000..44173f93 Binary files /dev/null and b/campi_flegrei_example_all_times/20181115/01_cumulative_20141031_20181115.png differ diff --git a/campi_flegrei_example_all_times/20181115/02_incremental_20181109_20181115.png b/campi_flegrei_example_all_times/20181115/02_incremental_20181109_20181115.png new file mode 100644 index 00000000..95ebe49e Binary files /dev/null and b/campi_flegrei_example_all_times/20181115/02_incremental_20181109_20181115.png differ diff --git a/campi_flegrei_example_all_times/20181115/03_reconstruction_20181109_20181115.png b/campi_flegrei_example_all_times/20181115/03_reconstruction_20181109_20181115.png new file mode 100644 index 00000000..b03e4950 Binary files /dev/null and b/campi_flegrei_example_all_times/20181115/03_reconstruction_20181109_20181115.png differ diff --git a/campi_flegrei_example_all_times/20181115/04_residual_20181109_20181115.png b/campi_flegrei_example_all_times/20181115/04_residual_20181109_20181115.png new file mode 100644 index 00000000..36d44c21 Binary files /dev/null and b/campi_flegrei_example_all_times/20181115/04_residual_20181109_20181115.png differ diff --git a/campi_flegrei_example_all_times/20181115/LiCSAlert_figure_with_104_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181115/LiCSAlert_figure_with_104_monitoring_interferograms.png new file mode 100644 index 00000000..6227c7d7 Binary files /dev/null and b/campi_flegrei_example_all_times/20181115/LiCSAlert_figure_with_104_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181115/mask_status.png b/campi_flegrei_example_all_times/20181115/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181115/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181115/volcano_status.txt b/campi_flegrei_example_all_times/20181115/volcano_status.txt new file mode 100644 index 00000000..06f490b2 --- /dev/null +++ b/campi_flegrei_example_all_times/20181115/volcano_status.txt @@ -0,0 +1,2 @@ +0.1373818207700866 +0.9235967062590342 diff --git a/campi_flegrei_example_all_times/20181121/01_cumulative_20141031_20181121.png b/campi_flegrei_example_all_times/20181121/01_cumulative_20141031_20181121.png new file mode 100644 index 00000000..5956eb18 Binary files /dev/null and b/campi_flegrei_example_all_times/20181121/01_cumulative_20141031_20181121.png differ diff --git a/campi_flegrei_example_all_times/20181121/02_incremental_20181115_20181121.png b/campi_flegrei_example_all_times/20181121/02_incremental_20181115_20181121.png new file mode 100644 index 00000000..2edc0f29 Binary files /dev/null and b/campi_flegrei_example_all_times/20181121/02_incremental_20181115_20181121.png differ diff --git a/campi_flegrei_example_all_times/20181121/03_reconstruction_20181115_20181121.png b/campi_flegrei_example_all_times/20181121/03_reconstruction_20181115_20181121.png new file mode 100644 index 00000000..36b05b69 Binary files /dev/null and b/campi_flegrei_example_all_times/20181121/03_reconstruction_20181115_20181121.png differ diff --git a/campi_flegrei_example_all_times/20181121/04_residual_20181115_20181121.png b/campi_flegrei_example_all_times/20181121/04_residual_20181115_20181121.png new file mode 100644 index 00000000..da4401fa Binary files /dev/null and b/campi_flegrei_example_all_times/20181121/04_residual_20181115_20181121.png differ diff --git a/campi_flegrei_example_all_times/20181121/LiCSAlert_figure_with_105_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181121/LiCSAlert_figure_with_105_monitoring_interferograms.png new file mode 100644 index 00000000..a3883220 Binary files /dev/null and b/campi_flegrei_example_all_times/20181121/LiCSAlert_figure_with_105_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181121/mask_status.png b/campi_flegrei_example_all_times/20181121/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181121/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181121/volcano_status.txt b/campi_flegrei_example_all_times/20181121/volcano_status.txt new file mode 100644 index 00000000..e8ddbf24 --- /dev/null +++ b/campi_flegrei_example_all_times/20181121/volcano_status.txt @@ -0,0 +1,2 @@ +0.3352735096941379 +0.30230824180435717 diff --git a/campi_flegrei_example_all_times/20181127/01_cumulative_20141031_20181127.png b/campi_flegrei_example_all_times/20181127/01_cumulative_20141031_20181127.png new file mode 100644 index 00000000..988e2887 Binary files /dev/null and b/campi_flegrei_example_all_times/20181127/01_cumulative_20141031_20181127.png differ diff --git a/campi_flegrei_example_all_times/20181127/02_incremental_20181121_20181127.png b/campi_flegrei_example_all_times/20181127/02_incremental_20181121_20181127.png new file mode 100644 index 00000000..5888860f Binary files /dev/null and b/campi_flegrei_example_all_times/20181127/02_incremental_20181121_20181127.png differ diff --git a/campi_flegrei_example_all_times/20181127/03_reconstruction_20181121_20181127.png b/campi_flegrei_example_all_times/20181127/03_reconstruction_20181121_20181127.png new file mode 100644 index 00000000..50911b37 Binary files /dev/null and b/campi_flegrei_example_all_times/20181127/03_reconstruction_20181121_20181127.png differ diff --git a/campi_flegrei_example_all_times/20181127/04_residual_20181121_20181127.png b/campi_flegrei_example_all_times/20181127/04_residual_20181121_20181127.png new file mode 100644 index 00000000..84395553 Binary files /dev/null and b/campi_flegrei_example_all_times/20181127/04_residual_20181121_20181127.png differ diff --git a/campi_flegrei_example_all_times/20181127/LiCSAlert_figure_with_106_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181127/LiCSAlert_figure_with_106_monitoring_interferograms.png new file mode 100644 index 00000000..399d1025 Binary files /dev/null and b/campi_flegrei_example_all_times/20181127/LiCSAlert_figure_with_106_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181127/mask_status.png b/campi_flegrei_example_all_times/20181127/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181127/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181127/volcano_status.txt b/campi_flegrei_example_all_times/20181127/volcano_status.txt new file mode 100644 index 00000000..1e3ba260 --- /dev/null +++ b/campi_flegrei_example_all_times/20181127/volcano_status.txt @@ -0,0 +1,2 @@ +0.28214296955385715 +0.7873051348701847 diff --git a/campi_flegrei_example_all_times/20181203/01_cumulative_20141031_20181203.png b/campi_flegrei_example_all_times/20181203/01_cumulative_20141031_20181203.png new file mode 100644 index 00000000..b97b81ec Binary files /dev/null and b/campi_flegrei_example_all_times/20181203/01_cumulative_20141031_20181203.png differ diff --git a/campi_flegrei_example_all_times/20181203/02_incremental_20181127_20181203.png b/campi_flegrei_example_all_times/20181203/02_incremental_20181127_20181203.png new file mode 100644 index 00000000..666c1adf Binary files /dev/null and b/campi_flegrei_example_all_times/20181203/02_incremental_20181127_20181203.png differ diff --git a/campi_flegrei_example_all_times/20181203/03_reconstruction_20181127_20181203.png b/campi_flegrei_example_all_times/20181203/03_reconstruction_20181127_20181203.png new file mode 100644 index 00000000..4ce61c8e Binary files /dev/null and b/campi_flegrei_example_all_times/20181203/03_reconstruction_20181127_20181203.png differ diff --git a/campi_flegrei_example_all_times/20181203/04_residual_20181127_20181203.png b/campi_flegrei_example_all_times/20181203/04_residual_20181127_20181203.png new file mode 100644 index 00000000..102db3bf Binary files /dev/null and b/campi_flegrei_example_all_times/20181203/04_residual_20181127_20181203.png differ diff --git a/campi_flegrei_example_all_times/20181203/LiCSAlert_figure_with_107_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181203/LiCSAlert_figure_with_107_monitoring_interferograms.png new file mode 100644 index 00000000..3b9a149d Binary files /dev/null and b/campi_flegrei_example_all_times/20181203/LiCSAlert_figure_with_107_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181203/mask_status.png b/campi_flegrei_example_all_times/20181203/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181203/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181203/volcano_status.txt b/campi_flegrei_example_all_times/20181203/volcano_status.txt new file mode 100644 index 00000000..f735e228 --- /dev/null +++ b/campi_flegrei_example_all_times/20181203/volcano_status.txt @@ -0,0 +1,2 @@ +1.7782279424909875 +0.021817178957094768 diff --git a/campi_flegrei_example_all_times/20181209/01_cumulative_20141031_20181209.png b/campi_flegrei_example_all_times/20181209/01_cumulative_20141031_20181209.png new file mode 100644 index 00000000..3aa6fa15 Binary files /dev/null and b/campi_flegrei_example_all_times/20181209/01_cumulative_20141031_20181209.png differ diff --git a/campi_flegrei_example_all_times/20181209/02_incremental_20181203_20181209.png b/campi_flegrei_example_all_times/20181209/02_incremental_20181203_20181209.png new file mode 100644 index 00000000..be3dc1ae Binary files /dev/null and b/campi_flegrei_example_all_times/20181209/02_incremental_20181203_20181209.png differ diff --git a/campi_flegrei_example_all_times/20181209/03_reconstruction_20181203_20181209.png b/campi_flegrei_example_all_times/20181209/03_reconstruction_20181203_20181209.png new file mode 100644 index 00000000..9fad3bac Binary files /dev/null and b/campi_flegrei_example_all_times/20181209/03_reconstruction_20181203_20181209.png differ diff --git a/campi_flegrei_example_all_times/20181209/04_residual_20181203_20181209.png b/campi_flegrei_example_all_times/20181209/04_residual_20181203_20181209.png new file mode 100644 index 00000000..71794aa1 Binary files /dev/null and b/campi_flegrei_example_all_times/20181209/04_residual_20181203_20181209.png differ diff --git a/campi_flegrei_example_all_times/20181209/LiCSAlert_figure_with_108_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181209/LiCSAlert_figure_with_108_monitoring_interferograms.png new file mode 100644 index 00000000..9a0e4f9d Binary files /dev/null and b/campi_flegrei_example_all_times/20181209/LiCSAlert_figure_with_108_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181209/mask_status.png b/campi_flegrei_example_all_times/20181209/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181209/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181209/volcano_status.txt b/campi_flegrei_example_all_times/20181209/volcano_status.txt new file mode 100644 index 00000000..08b289fd --- /dev/null +++ b/campi_flegrei_example_all_times/20181209/volcano_status.txt @@ -0,0 +1,2 @@ +0.3908839562291157 +0.9917569151142586 diff --git a/campi_flegrei_example_all_times/20181215/01_cumulative_20141031_20181215.png b/campi_flegrei_example_all_times/20181215/01_cumulative_20141031_20181215.png new file mode 100644 index 00000000..2fedb469 Binary files /dev/null and b/campi_flegrei_example_all_times/20181215/01_cumulative_20141031_20181215.png differ diff --git a/campi_flegrei_example_all_times/20181215/02_incremental_20181209_20181215.png b/campi_flegrei_example_all_times/20181215/02_incremental_20181209_20181215.png new file mode 100644 index 00000000..d4c8b07f Binary files /dev/null and b/campi_flegrei_example_all_times/20181215/02_incremental_20181209_20181215.png differ diff --git a/campi_flegrei_example_all_times/20181215/03_reconstruction_20181209_20181215.png b/campi_flegrei_example_all_times/20181215/03_reconstruction_20181209_20181215.png new file mode 100644 index 00000000..270fdb68 Binary files /dev/null and b/campi_flegrei_example_all_times/20181215/03_reconstruction_20181209_20181215.png differ diff --git a/campi_flegrei_example_all_times/20181215/04_residual_20181209_20181215.png b/campi_flegrei_example_all_times/20181215/04_residual_20181209_20181215.png new file mode 100644 index 00000000..24cb5928 Binary files /dev/null and b/campi_flegrei_example_all_times/20181215/04_residual_20181209_20181215.png differ diff --git a/campi_flegrei_example_all_times/20181215/LiCSAlert_figure_with_109_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181215/LiCSAlert_figure_with_109_monitoring_interferograms.png new file mode 100644 index 00000000..1eb14d48 Binary files /dev/null and b/campi_flegrei_example_all_times/20181215/LiCSAlert_figure_with_109_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181215/mask_status.png b/campi_flegrei_example_all_times/20181215/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181215/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181215/volcano_status.txt b/campi_flegrei_example_all_times/20181215/volcano_status.txt new file mode 100644 index 00000000..677a09d4 --- /dev/null +++ b/campi_flegrei_example_all_times/20181215/volcano_status.txt @@ -0,0 +1,2 @@ +0.7298499046122461 +1.0057594422177873 diff --git a/campi_flegrei_example_all_times/20181221/01_cumulative_20141031_20181221.png b/campi_flegrei_example_all_times/20181221/01_cumulative_20141031_20181221.png new file mode 100644 index 00000000..8db63317 Binary files /dev/null and b/campi_flegrei_example_all_times/20181221/01_cumulative_20141031_20181221.png differ diff --git a/campi_flegrei_example_all_times/20181221/02_incremental_20181215_20181221.png b/campi_flegrei_example_all_times/20181221/02_incremental_20181215_20181221.png new file mode 100644 index 00000000..71b63b70 Binary files /dev/null and b/campi_flegrei_example_all_times/20181221/02_incremental_20181215_20181221.png differ diff --git a/campi_flegrei_example_all_times/20181221/03_reconstruction_20181215_20181221.png b/campi_flegrei_example_all_times/20181221/03_reconstruction_20181215_20181221.png new file mode 100644 index 00000000..b35d6c89 Binary files /dev/null and b/campi_flegrei_example_all_times/20181221/03_reconstruction_20181215_20181221.png differ diff --git a/campi_flegrei_example_all_times/20181221/04_residual_20181215_20181221.png b/campi_flegrei_example_all_times/20181221/04_residual_20181215_20181221.png new file mode 100644 index 00000000..033d17e2 Binary files /dev/null and b/campi_flegrei_example_all_times/20181221/04_residual_20181215_20181221.png differ diff --git a/campi_flegrei_example_all_times/20181221/LiCSAlert_figure_with_110_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181221/LiCSAlert_figure_with_110_monitoring_interferograms.png new file mode 100644 index 00000000..9d838eb9 Binary files /dev/null and b/campi_flegrei_example_all_times/20181221/LiCSAlert_figure_with_110_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181221/mask_status.png b/campi_flegrei_example_all_times/20181221/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181221/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181221/volcano_status.txt b/campi_flegrei_example_all_times/20181221/volcano_status.txt new file mode 100644 index 00000000..e943aeb5 --- /dev/null +++ b/campi_flegrei_example_all_times/20181221/volcano_status.txt @@ -0,0 +1,2 @@ +0.6130600543716008 +1.0913979327849248 diff --git a/campi_flegrei_example_all_times/20181227/01_cumulative_20141031_20181227.png b/campi_flegrei_example_all_times/20181227/01_cumulative_20141031_20181227.png new file mode 100644 index 00000000..8f483044 Binary files /dev/null and b/campi_flegrei_example_all_times/20181227/01_cumulative_20141031_20181227.png differ diff --git a/campi_flegrei_example_all_times/20181227/02_incremental_20181221_20181227.png b/campi_flegrei_example_all_times/20181227/02_incremental_20181221_20181227.png new file mode 100644 index 00000000..9e563cac Binary files /dev/null and b/campi_flegrei_example_all_times/20181227/02_incremental_20181221_20181227.png differ diff --git a/campi_flegrei_example_all_times/20181227/03_reconstruction_20181221_20181227.png b/campi_flegrei_example_all_times/20181227/03_reconstruction_20181221_20181227.png new file mode 100644 index 00000000..ebb956e4 Binary files /dev/null and b/campi_flegrei_example_all_times/20181227/03_reconstruction_20181221_20181227.png differ diff --git a/campi_flegrei_example_all_times/20181227/04_residual_20181221_20181227.png b/campi_flegrei_example_all_times/20181227/04_residual_20181221_20181227.png new file mode 100644 index 00000000..fdfdb90e Binary files /dev/null and b/campi_flegrei_example_all_times/20181227/04_residual_20181221_20181227.png differ diff --git a/campi_flegrei_example_all_times/20181227/LiCSAlert_figure_with_111_monitoring_interferograms.png b/campi_flegrei_example_all_times/20181227/LiCSAlert_figure_with_111_monitoring_interferograms.png new file mode 100644 index 00000000..3b14c4bb Binary files /dev/null and b/campi_flegrei_example_all_times/20181227/LiCSAlert_figure_with_111_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20181227/mask_status.png b/campi_flegrei_example_all_times/20181227/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20181227/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20181227/volcano_status.txt b/campi_flegrei_example_all_times/20181227/volcano_status.txt new file mode 100644 index 00000000..8a1fa8ad --- /dev/null +++ b/campi_flegrei_example_all_times/20181227/volcano_status.txt @@ -0,0 +1,2 @@ +0.4316222115167071 +0.9503770041163933 diff --git a/campi_flegrei_example_all_times/20190102/01_cumulative_20141031_20190102.png b/campi_flegrei_example_all_times/20190102/01_cumulative_20141031_20190102.png new file mode 100644 index 00000000..915e698b Binary files /dev/null and b/campi_flegrei_example_all_times/20190102/01_cumulative_20141031_20190102.png differ diff --git a/campi_flegrei_example_all_times/20190102/02_incremental_20181227_20190102.png b/campi_flegrei_example_all_times/20190102/02_incremental_20181227_20190102.png new file mode 100644 index 00000000..2f97412a Binary files /dev/null and b/campi_flegrei_example_all_times/20190102/02_incremental_20181227_20190102.png differ diff --git a/campi_flegrei_example_all_times/20190102/03_reconstruction_20181227_20190102.png b/campi_flegrei_example_all_times/20190102/03_reconstruction_20181227_20190102.png new file mode 100644 index 00000000..1b8f0fb2 Binary files /dev/null and b/campi_flegrei_example_all_times/20190102/03_reconstruction_20181227_20190102.png differ diff --git a/campi_flegrei_example_all_times/20190102/04_residual_20181227_20190102.png b/campi_flegrei_example_all_times/20190102/04_residual_20181227_20190102.png new file mode 100644 index 00000000..c9dbc51e Binary files /dev/null and b/campi_flegrei_example_all_times/20190102/04_residual_20181227_20190102.png differ diff --git a/campi_flegrei_example_all_times/20190102/LiCSAlert_figure_with_112_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190102/LiCSAlert_figure_with_112_monitoring_interferograms.png new file mode 100644 index 00000000..b27cd5d9 Binary files /dev/null and b/campi_flegrei_example_all_times/20190102/LiCSAlert_figure_with_112_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190102/mask_status.png b/campi_flegrei_example_all_times/20190102/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190102/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190102/volcano_status.txt b/campi_flegrei_example_all_times/20190102/volcano_status.txt new file mode 100644 index 00000000..ef0a6b96 --- /dev/null +++ b/campi_flegrei_example_all_times/20190102/volcano_status.txt @@ -0,0 +1,2 @@ +0.3182415332676513 +1.0230704536887332 diff --git a/campi_flegrei_example_all_times/20190108/01_cumulative_20141031_20190108.png b/campi_flegrei_example_all_times/20190108/01_cumulative_20141031_20190108.png new file mode 100644 index 00000000..aef0bf47 Binary files /dev/null and b/campi_flegrei_example_all_times/20190108/01_cumulative_20141031_20190108.png differ diff --git a/campi_flegrei_example_all_times/20190108/02_incremental_20190102_20190108.png b/campi_flegrei_example_all_times/20190108/02_incremental_20190102_20190108.png new file mode 100644 index 00000000..3837cbf5 Binary files /dev/null and b/campi_flegrei_example_all_times/20190108/02_incremental_20190102_20190108.png differ diff --git a/campi_flegrei_example_all_times/20190108/03_reconstruction_20190102_20190108.png b/campi_flegrei_example_all_times/20190108/03_reconstruction_20190102_20190108.png new file mode 100644 index 00000000..000e5430 Binary files /dev/null and b/campi_flegrei_example_all_times/20190108/03_reconstruction_20190102_20190108.png differ diff --git a/campi_flegrei_example_all_times/20190108/04_residual_20190102_20190108.png b/campi_flegrei_example_all_times/20190108/04_residual_20190102_20190108.png new file mode 100644 index 00000000..df7c2924 Binary files /dev/null and b/campi_flegrei_example_all_times/20190108/04_residual_20190102_20190108.png differ diff --git a/campi_flegrei_example_all_times/20190108/LiCSAlert_figure_with_113_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190108/LiCSAlert_figure_with_113_monitoring_interferograms.png new file mode 100644 index 00000000..f1b429b3 Binary files /dev/null and b/campi_flegrei_example_all_times/20190108/LiCSAlert_figure_with_113_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190108/mask_status.png b/campi_flegrei_example_all_times/20190108/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190108/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190108/volcano_status.txt b/campi_flegrei_example_all_times/20190108/volcano_status.txt new file mode 100644 index 00000000..a1447c04 --- /dev/null +++ b/campi_flegrei_example_all_times/20190108/volcano_status.txt @@ -0,0 +1,2 @@ +0.13825906703531982 +0.4864994372040851 diff --git a/campi_flegrei_example_all_times/20190114/01_cumulative_20141031_20190114.png b/campi_flegrei_example_all_times/20190114/01_cumulative_20141031_20190114.png new file mode 100644 index 00000000..5568d978 Binary files /dev/null and b/campi_flegrei_example_all_times/20190114/01_cumulative_20141031_20190114.png differ diff --git a/campi_flegrei_example_all_times/20190114/02_incremental_20190108_20190114.png b/campi_flegrei_example_all_times/20190114/02_incremental_20190108_20190114.png new file mode 100644 index 00000000..a4703f3d Binary files /dev/null and b/campi_flegrei_example_all_times/20190114/02_incremental_20190108_20190114.png differ diff --git a/campi_flegrei_example_all_times/20190114/03_reconstruction_20190108_20190114.png b/campi_flegrei_example_all_times/20190114/03_reconstruction_20190108_20190114.png new file mode 100644 index 00000000..e9cc1d9e Binary files /dev/null and b/campi_flegrei_example_all_times/20190114/03_reconstruction_20190108_20190114.png differ diff --git a/campi_flegrei_example_all_times/20190114/04_residual_20190108_20190114.png b/campi_flegrei_example_all_times/20190114/04_residual_20190108_20190114.png new file mode 100644 index 00000000..2d536103 Binary files /dev/null and b/campi_flegrei_example_all_times/20190114/04_residual_20190108_20190114.png differ diff --git a/campi_flegrei_example_all_times/20190114/LiCSAlert_figure_with_114_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190114/LiCSAlert_figure_with_114_monitoring_interferograms.png new file mode 100644 index 00000000..209ffae3 Binary files /dev/null and b/campi_flegrei_example_all_times/20190114/LiCSAlert_figure_with_114_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190114/mask_status.png b/campi_flegrei_example_all_times/20190114/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190114/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190114/volcano_status.txt b/campi_flegrei_example_all_times/20190114/volcano_status.txt new file mode 100644 index 00000000..540a150a --- /dev/null +++ b/campi_flegrei_example_all_times/20190114/volcano_status.txt @@ -0,0 +1,2 @@ +0.4933162159781888 +0.12831381975665307 diff --git a/campi_flegrei_example_all_times/20190120/01_cumulative_20141031_20190120.png b/campi_flegrei_example_all_times/20190120/01_cumulative_20141031_20190120.png new file mode 100644 index 00000000..d432d2ac Binary files /dev/null and b/campi_flegrei_example_all_times/20190120/01_cumulative_20141031_20190120.png differ diff --git a/campi_flegrei_example_all_times/20190120/02_incremental_20190114_20190120.png b/campi_flegrei_example_all_times/20190120/02_incremental_20190114_20190120.png new file mode 100644 index 00000000..9d0e3fd5 Binary files /dev/null and b/campi_flegrei_example_all_times/20190120/02_incremental_20190114_20190120.png differ diff --git a/campi_flegrei_example_all_times/20190120/03_reconstruction_20190114_20190120.png b/campi_flegrei_example_all_times/20190120/03_reconstruction_20190114_20190120.png new file mode 100644 index 00000000..99b4cfb8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190120/03_reconstruction_20190114_20190120.png differ diff --git a/campi_flegrei_example_all_times/20190120/04_residual_20190114_20190120.png b/campi_flegrei_example_all_times/20190120/04_residual_20190114_20190120.png new file mode 100644 index 00000000..c4fb1463 Binary files /dev/null and b/campi_flegrei_example_all_times/20190120/04_residual_20190114_20190120.png differ diff --git a/campi_flegrei_example_all_times/20190120/LiCSAlert_figure_with_115_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190120/LiCSAlert_figure_with_115_monitoring_interferograms.png new file mode 100644 index 00000000..16c54939 Binary files /dev/null and b/campi_flegrei_example_all_times/20190120/LiCSAlert_figure_with_115_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190120/mask_status.png b/campi_flegrei_example_all_times/20190120/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190120/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190120/volcano_status.txt b/campi_flegrei_example_all_times/20190120/volcano_status.txt new file mode 100644 index 00000000..425e9f99 --- /dev/null +++ b/campi_flegrei_example_all_times/20190120/volcano_status.txt @@ -0,0 +1,2 @@ +0.031234147295670013 +0.5443702829766821 diff --git a/campi_flegrei_example_all_times/20190126/01_cumulative_20141031_20190126.png b/campi_flegrei_example_all_times/20190126/01_cumulative_20141031_20190126.png new file mode 100644 index 00000000..779afbfc Binary files /dev/null and b/campi_flegrei_example_all_times/20190126/01_cumulative_20141031_20190126.png differ diff --git a/campi_flegrei_example_all_times/20190126/02_incremental_20190120_20190126.png b/campi_flegrei_example_all_times/20190126/02_incremental_20190120_20190126.png new file mode 100644 index 00000000..34b93f42 Binary files /dev/null and b/campi_flegrei_example_all_times/20190126/02_incremental_20190120_20190126.png differ diff --git a/campi_flegrei_example_all_times/20190126/03_reconstruction_20190120_20190126.png b/campi_flegrei_example_all_times/20190126/03_reconstruction_20190120_20190126.png new file mode 100644 index 00000000..a5334e6d Binary files /dev/null and b/campi_flegrei_example_all_times/20190126/03_reconstruction_20190120_20190126.png differ diff --git a/campi_flegrei_example_all_times/20190126/04_residual_20190120_20190126.png b/campi_flegrei_example_all_times/20190126/04_residual_20190120_20190126.png new file mode 100644 index 00000000..d9dbdd83 Binary files /dev/null and b/campi_flegrei_example_all_times/20190126/04_residual_20190120_20190126.png differ diff --git a/campi_flegrei_example_all_times/20190126/LiCSAlert_figure_with_116_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190126/LiCSAlert_figure_with_116_monitoring_interferograms.png new file mode 100644 index 00000000..271032b2 Binary files /dev/null and b/campi_flegrei_example_all_times/20190126/LiCSAlert_figure_with_116_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190126/mask_status.png b/campi_flegrei_example_all_times/20190126/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190126/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190126/volcano_status.txt b/campi_flegrei_example_all_times/20190126/volcano_status.txt new file mode 100644 index 00000000..c15429f1 --- /dev/null +++ b/campi_flegrei_example_all_times/20190126/volcano_status.txt @@ -0,0 +1,2 @@ +0.4690908483877574 +0.002301300048377604 diff --git a/campi_flegrei_example_all_times/20190201/01_cumulative_20141031_20190201.png b/campi_flegrei_example_all_times/20190201/01_cumulative_20141031_20190201.png new file mode 100644 index 00000000..b4c7ec59 Binary files /dev/null and b/campi_flegrei_example_all_times/20190201/01_cumulative_20141031_20190201.png differ diff --git a/campi_flegrei_example_all_times/20190201/02_incremental_20190126_20190201.png b/campi_flegrei_example_all_times/20190201/02_incremental_20190126_20190201.png new file mode 100644 index 00000000..bac15095 Binary files /dev/null and b/campi_flegrei_example_all_times/20190201/02_incremental_20190126_20190201.png differ diff --git a/campi_flegrei_example_all_times/20190201/03_reconstruction_20190126_20190201.png b/campi_flegrei_example_all_times/20190201/03_reconstruction_20190126_20190201.png new file mode 100644 index 00000000..4483a689 Binary files /dev/null and b/campi_flegrei_example_all_times/20190201/03_reconstruction_20190126_20190201.png differ diff --git a/campi_flegrei_example_all_times/20190201/04_residual_20190126_20190201.png b/campi_flegrei_example_all_times/20190201/04_residual_20190126_20190201.png new file mode 100644 index 00000000..bc3917d2 Binary files /dev/null and b/campi_flegrei_example_all_times/20190201/04_residual_20190126_20190201.png differ diff --git a/campi_flegrei_example_all_times/20190201/LiCSAlert_figure_with_117_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190201/LiCSAlert_figure_with_117_monitoring_interferograms.png new file mode 100644 index 00000000..52011bd0 Binary files /dev/null and b/campi_flegrei_example_all_times/20190201/LiCSAlert_figure_with_117_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190201/mask_status.png b/campi_flegrei_example_all_times/20190201/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190201/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190201/volcano_status.txt b/campi_flegrei_example_all_times/20190201/volcano_status.txt new file mode 100644 index 00000000..94bf4b2d --- /dev/null +++ b/campi_flegrei_example_all_times/20190201/volcano_status.txt @@ -0,0 +1,2 @@ +0.1975231995066133 +0.1388782132108317 diff --git a/campi_flegrei_example_all_times/20190207/01_cumulative_20141031_20190207.png b/campi_flegrei_example_all_times/20190207/01_cumulative_20141031_20190207.png new file mode 100644 index 00000000..18d199c8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190207/01_cumulative_20141031_20190207.png differ diff --git a/campi_flegrei_example_all_times/20190207/02_incremental_20190201_20190207.png b/campi_flegrei_example_all_times/20190207/02_incremental_20190201_20190207.png new file mode 100644 index 00000000..a9a4db7e Binary files /dev/null and b/campi_flegrei_example_all_times/20190207/02_incremental_20190201_20190207.png differ diff --git a/campi_flegrei_example_all_times/20190207/03_reconstruction_20190201_20190207.png b/campi_flegrei_example_all_times/20190207/03_reconstruction_20190201_20190207.png new file mode 100644 index 00000000..63a666ee Binary files /dev/null and b/campi_flegrei_example_all_times/20190207/03_reconstruction_20190201_20190207.png differ diff --git a/campi_flegrei_example_all_times/20190207/04_residual_20190201_20190207.png b/campi_flegrei_example_all_times/20190207/04_residual_20190201_20190207.png new file mode 100644 index 00000000..87e7313e Binary files /dev/null and b/campi_flegrei_example_all_times/20190207/04_residual_20190201_20190207.png differ diff --git a/campi_flegrei_example_all_times/20190207/LiCSAlert_figure_with_118_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190207/LiCSAlert_figure_with_118_monitoring_interferograms.png new file mode 100644 index 00000000..afcebb7a Binary files /dev/null and b/campi_flegrei_example_all_times/20190207/LiCSAlert_figure_with_118_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190207/mask_status.png b/campi_flegrei_example_all_times/20190207/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190207/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190207/volcano_status.txt b/campi_flegrei_example_all_times/20190207/volcano_status.txt new file mode 100644 index 00000000..153ac6de --- /dev/null +++ b/campi_flegrei_example_all_times/20190207/volcano_status.txt @@ -0,0 +1,2 @@ +0.5079424857144894 +0.30887968240910774 diff --git a/campi_flegrei_example_all_times/20190213/01_cumulative_20141031_20190213.png b/campi_flegrei_example_all_times/20190213/01_cumulative_20141031_20190213.png new file mode 100644 index 00000000..8dcc40c4 Binary files /dev/null and b/campi_flegrei_example_all_times/20190213/01_cumulative_20141031_20190213.png differ diff --git a/campi_flegrei_example_all_times/20190213/02_incremental_20190207_20190213.png b/campi_flegrei_example_all_times/20190213/02_incremental_20190207_20190213.png new file mode 100644 index 00000000..683b84a7 Binary files /dev/null and b/campi_flegrei_example_all_times/20190213/02_incremental_20190207_20190213.png differ diff --git a/campi_flegrei_example_all_times/20190213/03_reconstruction_20190207_20190213.png b/campi_flegrei_example_all_times/20190213/03_reconstruction_20190207_20190213.png new file mode 100644 index 00000000..634d5da9 Binary files /dev/null and b/campi_flegrei_example_all_times/20190213/03_reconstruction_20190207_20190213.png differ diff --git a/campi_flegrei_example_all_times/20190213/04_residual_20190207_20190213.png b/campi_flegrei_example_all_times/20190213/04_residual_20190207_20190213.png new file mode 100644 index 00000000..aea001e4 Binary files /dev/null and b/campi_flegrei_example_all_times/20190213/04_residual_20190207_20190213.png differ diff --git a/campi_flegrei_example_all_times/20190213/LiCSAlert_figure_with_119_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190213/LiCSAlert_figure_with_119_monitoring_interferograms.png new file mode 100644 index 00000000..32fa252f Binary files /dev/null and b/campi_flegrei_example_all_times/20190213/LiCSAlert_figure_with_119_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190213/mask_status.png b/campi_flegrei_example_all_times/20190213/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190213/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190213/volcano_status.txt b/campi_flegrei_example_all_times/20190213/volcano_status.txt new file mode 100644 index 00000000..921ae9df --- /dev/null +++ b/campi_flegrei_example_all_times/20190213/volcano_status.txt @@ -0,0 +1,2 @@ +0.05176901819464835 +2.533151033224113 diff --git a/campi_flegrei_example_all_times/20190225/01_cumulative_20141031_20190225.png b/campi_flegrei_example_all_times/20190225/01_cumulative_20141031_20190225.png new file mode 100644 index 00000000..940bd9b1 Binary files /dev/null and b/campi_flegrei_example_all_times/20190225/01_cumulative_20141031_20190225.png differ diff --git a/campi_flegrei_example_all_times/20190225/02_incremental_20190213_20190225.png b/campi_flegrei_example_all_times/20190225/02_incremental_20190213_20190225.png new file mode 100644 index 00000000..4f0797c7 Binary files /dev/null and b/campi_flegrei_example_all_times/20190225/02_incremental_20190213_20190225.png differ diff --git a/campi_flegrei_example_all_times/20190225/03_reconstruction_20190213_20190225.png b/campi_flegrei_example_all_times/20190225/03_reconstruction_20190213_20190225.png new file mode 100644 index 00000000..33d806ca Binary files /dev/null and b/campi_flegrei_example_all_times/20190225/03_reconstruction_20190213_20190225.png differ diff --git a/campi_flegrei_example_all_times/20190225/04_residual_20190213_20190225.png b/campi_flegrei_example_all_times/20190225/04_residual_20190213_20190225.png new file mode 100644 index 00000000..ea111d79 Binary files /dev/null and b/campi_flegrei_example_all_times/20190225/04_residual_20190213_20190225.png differ diff --git a/campi_flegrei_example_all_times/20190225/LiCSAlert_figure_with_120_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190225/LiCSAlert_figure_with_120_monitoring_interferograms.png new file mode 100644 index 00000000..49bfd7f7 Binary files /dev/null and b/campi_flegrei_example_all_times/20190225/LiCSAlert_figure_with_120_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190225/mask_status.png b/campi_flegrei_example_all_times/20190225/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190225/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190225/volcano_status.txt b/campi_flegrei_example_all_times/20190225/volcano_status.txt new file mode 100644 index 00000000..d28aa039 --- /dev/null +++ b/campi_flegrei_example_all_times/20190225/volcano_status.txt @@ -0,0 +1,2 @@ +1.2720594733054602 +3.161783006503208 diff --git a/campi_flegrei_example_all_times/20190303/01_cumulative_20141031_20190303.png b/campi_flegrei_example_all_times/20190303/01_cumulative_20141031_20190303.png new file mode 100644 index 00000000..6eeb5b51 Binary files /dev/null and b/campi_flegrei_example_all_times/20190303/01_cumulative_20141031_20190303.png differ diff --git a/campi_flegrei_example_all_times/20190303/02_incremental_20190225_20190303.png b/campi_flegrei_example_all_times/20190303/02_incremental_20190225_20190303.png new file mode 100644 index 00000000..51bf8793 Binary files /dev/null and b/campi_flegrei_example_all_times/20190303/02_incremental_20190225_20190303.png differ diff --git a/campi_flegrei_example_all_times/20190303/03_reconstruction_20190225_20190303.png b/campi_flegrei_example_all_times/20190303/03_reconstruction_20190225_20190303.png new file mode 100644 index 00000000..c9c12e87 Binary files /dev/null and b/campi_flegrei_example_all_times/20190303/03_reconstruction_20190225_20190303.png differ diff --git a/campi_flegrei_example_all_times/20190303/04_residual_20190225_20190303.png b/campi_flegrei_example_all_times/20190303/04_residual_20190225_20190303.png new file mode 100644 index 00000000..a504441a Binary files /dev/null and b/campi_flegrei_example_all_times/20190303/04_residual_20190225_20190303.png differ diff --git a/campi_flegrei_example_all_times/20190303/LiCSAlert_figure_with_121_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190303/LiCSAlert_figure_with_121_monitoring_interferograms.png new file mode 100644 index 00000000..c8bb1c61 Binary files /dev/null and b/campi_flegrei_example_all_times/20190303/LiCSAlert_figure_with_121_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190303/mask_status.png b/campi_flegrei_example_all_times/20190303/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190303/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190303/volcano_status.txt b/campi_flegrei_example_all_times/20190303/volcano_status.txt new file mode 100644 index 00000000..4eeeebfc --- /dev/null +++ b/campi_flegrei_example_all_times/20190303/volcano_status.txt @@ -0,0 +1,2 @@ +0.1410517739464182 +0.6530689331417135 diff --git a/campi_flegrei_example_all_times/20190309/01_cumulative_20141031_20190309.png b/campi_flegrei_example_all_times/20190309/01_cumulative_20141031_20190309.png new file mode 100644 index 00000000..d2daa5ee Binary files /dev/null and b/campi_flegrei_example_all_times/20190309/01_cumulative_20141031_20190309.png differ diff --git a/campi_flegrei_example_all_times/20190309/02_incremental_20190303_20190309.png b/campi_flegrei_example_all_times/20190309/02_incremental_20190303_20190309.png new file mode 100644 index 00000000..266a82ae Binary files /dev/null and b/campi_flegrei_example_all_times/20190309/02_incremental_20190303_20190309.png differ diff --git a/campi_flegrei_example_all_times/20190309/03_reconstruction_20190303_20190309.png b/campi_flegrei_example_all_times/20190309/03_reconstruction_20190303_20190309.png new file mode 100644 index 00000000..57fb902e Binary files /dev/null and b/campi_flegrei_example_all_times/20190309/03_reconstruction_20190303_20190309.png differ diff --git a/campi_flegrei_example_all_times/20190309/04_residual_20190303_20190309.png b/campi_flegrei_example_all_times/20190309/04_residual_20190303_20190309.png new file mode 100644 index 00000000..87626952 Binary files /dev/null and b/campi_flegrei_example_all_times/20190309/04_residual_20190303_20190309.png differ diff --git a/campi_flegrei_example_all_times/20190309/LiCSAlert_figure_with_122_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190309/LiCSAlert_figure_with_122_monitoring_interferograms.png new file mode 100644 index 00000000..010c2b59 Binary files /dev/null and b/campi_flegrei_example_all_times/20190309/LiCSAlert_figure_with_122_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190309/mask_status.png b/campi_flegrei_example_all_times/20190309/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190309/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190309/volcano_status.txt b/campi_flegrei_example_all_times/20190309/volcano_status.txt new file mode 100644 index 00000000..728bf582 --- /dev/null +++ b/campi_flegrei_example_all_times/20190309/volcano_status.txt @@ -0,0 +1,2 @@ +0.3108262368591571 +0.4075921105175253 diff --git a/campi_flegrei_example_all_times/20190321/01_cumulative_20141031_20190321.png b/campi_flegrei_example_all_times/20190321/01_cumulative_20141031_20190321.png new file mode 100644 index 00000000..22279e6b Binary files /dev/null and b/campi_flegrei_example_all_times/20190321/01_cumulative_20141031_20190321.png differ diff --git a/campi_flegrei_example_all_times/20190321/02_incremental_20190309_20190321.png b/campi_flegrei_example_all_times/20190321/02_incremental_20190309_20190321.png new file mode 100644 index 00000000..153638de Binary files /dev/null and b/campi_flegrei_example_all_times/20190321/02_incremental_20190309_20190321.png differ diff --git a/campi_flegrei_example_all_times/20190321/03_reconstruction_20190309_20190321.png b/campi_flegrei_example_all_times/20190321/03_reconstruction_20190309_20190321.png new file mode 100644 index 00000000..9c5d5a32 Binary files /dev/null and b/campi_flegrei_example_all_times/20190321/03_reconstruction_20190309_20190321.png differ diff --git a/campi_flegrei_example_all_times/20190321/04_residual_20190309_20190321.png b/campi_flegrei_example_all_times/20190321/04_residual_20190309_20190321.png new file mode 100644 index 00000000..3523c1db Binary files /dev/null and b/campi_flegrei_example_all_times/20190321/04_residual_20190309_20190321.png differ diff --git a/campi_flegrei_example_all_times/20190321/LiCSAlert_figure_with_123_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190321/LiCSAlert_figure_with_123_monitoring_interferograms.png new file mode 100644 index 00000000..ec6240ba Binary files /dev/null and b/campi_flegrei_example_all_times/20190321/LiCSAlert_figure_with_123_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190321/mask_status.png b/campi_flegrei_example_all_times/20190321/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190321/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190321/volcano_status.txt b/campi_flegrei_example_all_times/20190321/volcano_status.txt new file mode 100644 index 00000000..6cf3925a --- /dev/null +++ b/campi_flegrei_example_all_times/20190321/volcano_status.txt @@ -0,0 +1,2 @@ +0.9422685925026474 +0.30012022578738207 diff --git a/campi_flegrei_example_all_times/20190402/01_cumulative_20141031_20190402.png b/campi_flegrei_example_all_times/20190402/01_cumulative_20141031_20190402.png new file mode 100644 index 00000000..03a48e8d Binary files /dev/null and b/campi_flegrei_example_all_times/20190402/01_cumulative_20141031_20190402.png differ diff --git a/campi_flegrei_example_all_times/20190402/02_incremental_20190321_20190402.png b/campi_flegrei_example_all_times/20190402/02_incremental_20190321_20190402.png new file mode 100644 index 00000000..6360dc09 Binary files /dev/null and b/campi_flegrei_example_all_times/20190402/02_incremental_20190321_20190402.png differ diff --git a/campi_flegrei_example_all_times/20190402/03_reconstruction_20190321_20190402.png b/campi_flegrei_example_all_times/20190402/03_reconstruction_20190321_20190402.png new file mode 100644 index 00000000..b8f4dcaa Binary files /dev/null and b/campi_flegrei_example_all_times/20190402/03_reconstruction_20190321_20190402.png differ diff --git a/campi_flegrei_example_all_times/20190402/04_residual_20190321_20190402.png b/campi_flegrei_example_all_times/20190402/04_residual_20190321_20190402.png new file mode 100644 index 00000000..0c1b4552 Binary files /dev/null and b/campi_flegrei_example_all_times/20190402/04_residual_20190321_20190402.png differ diff --git a/campi_flegrei_example_all_times/20190402/LiCSAlert_figure_with_124_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190402/LiCSAlert_figure_with_124_monitoring_interferograms.png new file mode 100644 index 00000000..2ad4df8a Binary files /dev/null and b/campi_flegrei_example_all_times/20190402/LiCSAlert_figure_with_124_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190402/mask_status.png b/campi_flegrei_example_all_times/20190402/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190402/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190402/volcano_status.txt b/campi_flegrei_example_all_times/20190402/volcano_status.txt new file mode 100644 index 00000000..fbc11840 --- /dev/null +++ b/campi_flegrei_example_all_times/20190402/volcano_status.txt @@ -0,0 +1,2 @@ +1.4762212935394512 +0.6063153228159983 diff --git a/campi_flegrei_example_all_times/20190408/01_cumulative_20141031_20190408.png b/campi_flegrei_example_all_times/20190408/01_cumulative_20141031_20190408.png new file mode 100644 index 00000000..20484491 Binary files /dev/null and b/campi_flegrei_example_all_times/20190408/01_cumulative_20141031_20190408.png differ diff --git a/campi_flegrei_example_all_times/20190408/02_incremental_20190402_20190408.png b/campi_flegrei_example_all_times/20190408/02_incremental_20190402_20190408.png new file mode 100644 index 00000000..4b104aec Binary files /dev/null and b/campi_flegrei_example_all_times/20190408/02_incremental_20190402_20190408.png differ diff --git a/campi_flegrei_example_all_times/20190408/03_reconstruction_20190402_20190408.png b/campi_flegrei_example_all_times/20190408/03_reconstruction_20190402_20190408.png new file mode 100644 index 00000000..d2e71779 Binary files /dev/null and b/campi_flegrei_example_all_times/20190408/03_reconstruction_20190402_20190408.png differ diff --git a/campi_flegrei_example_all_times/20190408/04_residual_20190402_20190408.png b/campi_flegrei_example_all_times/20190408/04_residual_20190402_20190408.png new file mode 100644 index 00000000..565238e4 Binary files /dev/null and b/campi_flegrei_example_all_times/20190408/04_residual_20190402_20190408.png differ diff --git a/campi_flegrei_example_all_times/20190408/LiCSAlert_figure_with_125_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190408/LiCSAlert_figure_with_125_monitoring_interferograms.png new file mode 100644 index 00000000..50595c20 Binary files /dev/null and b/campi_flegrei_example_all_times/20190408/LiCSAlert_figure_with_125_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190408/mask_status.png b/campi_flegrei_example_all_times/20190408/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190408/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190408/volcano_status.txt b/campi_flegrei_example_all_times/20190408/volcano_status.txt new file mode 100644 index 00000000..9366e4e7 --- /dev/null +++ b/campi_flegrei_example_all_times/20190408/volcano_status.txt @@ -0,0 +1,2 @@ +1.8250291014450069 +0.7618958332643925 diff --git a/campi_flegrei_example_all_times/20190414/01_cumulative_20141031_20190414.png b/campi_flegrei_example_all_times/20190414/01_cumulative_20141031_20190414.png new file mode 100644 index 00000000..1d0f92c1 Binary files /dev/null and b/campi_flegrei_example_all_times/20190414/01_cumulative_20141031_20190414.png differ diff --git a/campi_flegrei_example_all_times/20190414/02_incremental_20190408_20190414.png b/campi_flegrei_example_all_times/20190414/02_incremental_20190408_20190414.png new file mode 100644 index 00000000..217e551e Binary files /dev/null and b/campi_flegrei_example_all_times/20190414/02_incremental_20190408_20190414.png differ diff --git a/campi_flegrei_example_all_times/20190414/03_reconstruction_20190408_20190414.png b/campi_flegrei_example_all_times/20190414/03_reconstruction_20190408_20190414.png new file mode 100644 index 00000000..0adf985d Binary files /dev/null and b/campi_flegrei_example_all_times/20190414/03_reconstruction_20190408_20190414.png differ diff --git a/campi_flegrei_example_all_times/20190414/04_residual_20190408_20190414.png b/campi_flegrei_example_all_times/20190414/04_residual_20190408_20190414.png new file mode 100644 index 00000000..c64a377f Binary files /dev/null and b/campi_flegrei_example_all_times/20190414/04_residual_20190408_20190414.png differ diff --git a/campi_flegrei_example_all_times/20190414/LiCSAlert_figure_with_126_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190414/LiCSAlert_figure_with_126_monitoring_interferograms.png new file mode 100644 index 00000000..757d045e Binary files /dev/null and b/campi_flegrei_example_all_times/20190414/LiCSAlert_figure_with_126_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190414/mask_status.png b/campi_flegrei_example_all_times/20190414/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190414/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190414/volcano_status.txt b/campi_flegrei_example_all_times/20190414/volcano_status.txt new file mode 100644 index 00000000..33822590 --- /dev/null +++ b/campi_flegrei_example_all_times/20190414/volcano_status.txt @@ -0,0 +1,2 @@ +0.32975983709753526 +0.28303839677076675 diff --git a/campi_flegrei_example_all_times/20190420/01_cumulative_20141031_20190420.png b/campi_flegrei_example_all_times/20190420/01_cumulative_20141031_20190420.png new file mode 100644 index 00000000..51f36387 Binary files /dev/null and b/campi_flegrei_example_all_times/20190420/01_cumulative_20141031_20190420.png differ diff --git a/campi_flegrei_example_all_times/20190420/02_incremental_20190414_20190420.png b/campi_flegrei_example_all_times/20190420/02_incremental_20190414_20190420.png new file mode 100644 index 00000000..a4c2d9b1 Binary files /dev/null and b/campi_flegrei_example_all_times/20190420/02_incremental_20190414_20190420.png differ diff --git a/campi_flegrei_example_all_times/20190420/03_reconstruction_20190414_20190420.png b/campi_flegrei_example_all_times/20190420/03_reconstruction_20190414_20190420.png new file mode 100644 index 00000000..4cc8a7a8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190420/03_reconstruction_20190414_20190420.png differ diff --git a/campi_flegrei_example_all_times/20190420/04_residual_20190414_20190420.png b/campi_flegrei_example_all_times/20190420/04_residual_20190414_20190420.png new file mode 100644 index 00000000..aa72d356 Binary files /dev/null and b/campi_flegrei_example_all_times/20190420/04_residual_20190414_20190420.png differ diff --git a/campi_flegrei_example_all_times/20190420/LiCSAlert_figure_with_127_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190420/LiCSAlert_figure_with_127_monitoring_interferograms.png new file mode 100644 index 00000000..cb10e3ad Binary files /dev/null and b/campi_flegrei_example_all_times/20190420/LiCSAlert_figure_with_127_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190420/mask_status.png b/campi_flegrei_example_all_times/20190420/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190420/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190420/volcano_status.txt b/campi_flegrei_example_all_times/20190420/volcano_status.txt new file mode 100644 index 00000000..742f4708 --- /dev/null +++ b/campi_flegrei_example_all_times/20190420/volcano_status.txt @@ -0,0 +1,2 @@ +1.57872260640086 +0.1152426960826063 diff --git a/campi_flegrei_example_all_times/20190426/01_cumulative_20141031_20190426.png b/campi_flegrei_example_all_times/20190426/01_cumulative_20141031_20190426.png new file mode 100644 index 00000000..a52585cf Binary files /dev/null and b/campi_flegrei_example_all_times/20190426/01_cumulative_20141031_20190426.png differ diff --git a/campi_flegrei_example_all_times/20190426/02_incremental_20190420_20190426.png b/campi_flegrei_example_all_times/20190426/02_incremental_20190420_20190426.png new file mode 100644 index 00000000..307ba79f Binary files /dev/null and b/campi_flegrei_example_all_times/20190426/02_incremental_20190420_20190426.png differ diff --git a/campi_flegrei_example_all_times/20190426/03_reconstruction_20190420_20190426.png b/campi_flegrei_example_all_times/20190426/03_reconstruction_20190420_20190426.png new file mode 100644 index 00000000..dadcb059 Binary files /dev/null and b/campi_flegrei_example_all_times/20190426/03_reconstruction_20190420_20190426.png differ diff --git a/campi_flegrei_example_all_times/20190426/04_residual_20190420_20190426.png b/campi_flegrei_example_all_times/20190426/04_residual_20190420_20190426.png new file mode 100644 index 00000000..98bc6298 Binary files /dev/null and b/campi_flegrei_example_all_times/20190426/04_residual_20190420_20190426.png differ diff --git a/campi_flegrei_example_all_times/20190426/LiCSAlert_figure_with_128_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190426/LiCSAlert_figure_with_128_monitoring_interferograms.png new file mode 100644 index 00000000..f4c18b51 Binary files /dev/null and b/campi_flegrei_example_all_times/20190426/LiCSAlert_figure_with_128_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190426/mask_status.png b/campi_flegrei_example_all_times/20190426/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190426/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190426/volcano_status.txt b/campi_flegrei_example_all_times/20190426/volcano_status.txt new file mode 100644 index 00000000..75f4ed82 --- /dev/null +++ b/campi_flegrei_example_all_times/20190426/volcano_status.txt @@ -0,0 +1,2 @@ +0.18949796046739253 +0.4823311433848134 diff --git a/campi_flegrei_example_all_times/20190502/01_cumulative_20141031_20190502.png b/campi_flegrei_example_all_times/20190502/01_cumulative_20141031_20190502.png new file mode 100644 index 00000000..5d60a8c5 Binary files /dev/null and b/campi_flegrei_example_all_times/20190502/01_cumulative_20141031_20190502.png differ diff --git a/campi_flegrei_example_all_times/20190502/02_incremental_20190426_20190502.png b/campi_flegrei_example_all_times/20190502/02_incremental_20190426_20190502.png new file mode 100644 index 00000000..ea91b287 Binary files /dev/null and b/campi_flegrei_example_all_times/20190502/02_incremental_20190426_20190502.png differ diff --git a/campi_flegrei_example_all_times/20190502/03_reconstruction_20190426_20190502.png b/campi_flegrei_example_all_times/20190502/03_reconstruction_20190426_20190502.png new file mode 100644 index 00000000..dc265524 Binary files /dev/null and b/campi_flegrei_example_all_times/20190502/03_reconstruction_20190426_20190502.png differ diff --git a/campi_flegrei_example_all_times/20190502/04_residual_20190426_20190502.png b/campi_flegrei_example_all_times/20190502/04_residual_20190426_20190502.png new file mode 100644 index 00000000..d5887c17 Binary files /dev/null and b/campi_flegrei_example_all_times/20190502/04_residual_20190426_20190502.png differ diff --git a/campi_flegrei_example_all_times/20190502/LiCSAlert_figure_with_129_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190502/LiCSAlert_figure_with_129_monitoring_interferograms.png new file mode 100644 index 00000000..8d41b549 Binary files /dev/null and b/campi_flegrei_example_all_times/20190502/LiCSAlert_figure_with_129_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190502/mask_status.png b/campi_flegrei_example_all_times/20190502/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190502/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190502/volcano_status.txt b/campi_flegrei_example_all_times/20190502/volcano_status.txt new file mode 100644 index 00000000..f48db5b9 --- /dev/null +++ b/campi_flegrei_example_all_times/20190502/volcano_status.txt @@ -0,0 +1,2 @@ +0.37925331390626305 +0.23980081509470488 diff --git a/campi_flegrei_example_all_times/20190508/01_cumulative_20141031_20190508.png b/campi_flegrei_example_all_times/20190508/01_cumulative_20141031_20190508.png new file mode 100644 index 00000000..0ca2d5df Binary files /dev/null and b/campi_flegrei_example_all_times/20190508/01_cumulative_20141031_20190508.png differ diff --git a/campi_flegrei_example_all_times/20190508/02_incremental_20190502_20190508.png b/campi_flegrei_example_all_times/20190508/02_incremental_20190502_20190508.png new file mode 100644 index 00000000..60d9bc7d Binary files /dev/null and b/campi_flegrei_example_all_times/20190508/02_incremental_20190502_20190508.png differ diff --git a/campi_flegrei_example_all_times/20190508/03_reconstruction_20190502_20190508.png b/campi_flegrei_example_all_times/20190508/03_reconstruction_20190502_20190508.png new file mode 100644 index 00000000..42a5591f Binary files /dev/null and b/campi_flegrei_example_all_times/20190508/03_reconstruction_20190502_20190508.png differ diff --git a/campi_flegrei_example_all_times/20190508/04_residual_20190502_20190508.png b/campi_flegrei_example_all_times/20190508/04_residual_20190502_20190508.png new file mode 100644 index 00000000..2eec1cff Binary files /dev/null and b/campi_flegrei_example_all_times/20190508/04_residual_20190502_20190508.png differ diff --git a/campi_flegrei_example_all_times/20190508/LiCSAlert_figure_with_130_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190508/LiCSAlert_figure_with_130_monitoring_interferograms.png new file mode 100644 index 00000000..2a04aad3 Binary files /dev/null and b/campi_flegrei_example_all_times/20190508/LiCSAlert_figure_with_130_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190508/mask_status.png b/campi_flegrei_example_all_times/20190508/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190508/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190508/volcano_status.txt b/campi_flegrei_example_all_times/20190508/volcano_status.txt new file mode 100644 index 00000000..48874eb0 --- /dev/null +++ b/campi_flegrei_example_all_times/20190508/volcano_status.txt @@ -0,0 +1,2 @@ +0.16543987768591012 +0.6696231885771284 diff --git a/campi_flegrei_example_all_times/20190520/01_cumulative_20141031_20190520.png b/campi_flegrei_example_all_times/20190520/01_cumulative_20141031_20190520.png new file mode 100644 index 00000000..b2a14df6 Binary files /dev/null and b/campi_flegrei_example_all_times/20190520/01_cumulative_20141031_20190520.png differ diff --git a/campi_flegrei_example_all_times/20190520/02_incremental_20190508_20190520.png b/campi_flegrei_example_all_times/20190520/02_incremental_20190508_20190520.png new file mode 100644 index 00000000..b6102b81 Binary files /dev/null and b/campi_flegrei_example_all_times/20190520/02_incremental_20190508_20190520.png differ diff --git a/campi_flegrei_example_all_times/20190520/03_reconstruction_20190508_20190520.png b/campi_flegrei_example_all_times/20190520/03_reconstruction_20190508_20190520.png new file mode 100644 index 00000000..207891b3 Binary files /dev/null and b/campi_flegrei_example_all_times/20190520/03_reconstruction_20190508_20190520.png differ diff --git a/campi_flegrei_example_all_times/20190520/04_residual_20190508_20190520.png b/campi_flegrei_example_all_times/20190520/04_residual_20190508_20190520.png new file mode 100644 index 00000000..7078a018 Binary files /dev/null and b/campi_flegrei_example_all_times/20190520/04_residual_20190508_20190520.png differ diff --git a/campi_flegrei_example_all_times/20190520/LiCSAlert_figure_with_131_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190520/LiCSAlert_figure_with_131_monitoring_interferograms.png new file mode 100644 index 00000000..32a561ad Binary files /dev/null and b/campi_flegrei_example_all_times/20190520/LiCSAlert_figure_with_131_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190520/mask_status.png b/campi_flegrei_example_all_times/20190520/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190520/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190520/volcano_status.txt b/campi_flegrei_example_all_times/20190520/volcano_status.txt new file mode 100644 index 00000000..5cabe32a --- /dev/null +++ b/campi_flegrei_example_all_times/20190520/volcano_status.txt @@ -0,0 +1,2 @@ +0.21541192546818883 +2.4158003958298013 diff --git a/campi_flegrei_example_all_times/20190526/01_cumulative_20141031_20190526.png b/campi_flegrei_example_all_times/20190526/01_cumulative_20141031_20190526.png new file mode 100644 index 00000000..78dfc768 Binary files /dev/null and b/campi_flegrei_example_all_times/20190526/01_cumulative_20141031_20190526.png differ diff --git a/campi_flegrei_example_all_times/20190526/02_incremental_20190520_20190526.png b/campi_flegrei_example_all_times/20190526/02_incremental_20190520_20190526.png new file mode 100644 index 00000000..a361d8c1 Binary files /dev/null and b/campi_flegrei_example_all_times/20190526/02_incremental_20190520_20190526.png differ diff --git a/campi_flegrei_example_all_times/20190526/03_reconstruction_20190520_20190526.png b/campi_flegrei_example_all_times/20190526/03_reconstruction_20190520_20190526.png new file mode 100644 index 00000000..b5401cbd Binary files /dev/null and b/campi_flegrei_example_all_times/20190526/03_reconstruction_20190520_20190526.png differ diff --git a/campi_flegrei_example_all_times/20190526/04_residual_20190520_20190526.png b/campi_flegrei_example_all_times/20190526/04_residual_20190520_20190526.png new file mode 100644 index 00000000..fae04b3f Binary files /dev/null and b/campi_flegrei_example_all_times/20190526/04_residual_20190520_20190526.png differ diff --git a/campi_flegrei_example_all_times/20190526/LiCSAlert_figure_with_132_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190526/LiCSAlert_figure_with_132_monitoring_interferograms.png new file mode 100644 index 00000000..992fc609 Binary files /dev/null and b/campi_flegrei_example_all_times/20190526/LiCSAlert_figure_with_132_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190526/mask_status.png b/campi_flegrei_example_all_times/20190526/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190526/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190526/volcano_status.txt b/campi_flegrei_example_all_times/20190526/volcano_status.txt new file mode 100644 index 00000000..9464ff39 --- /dev/null +++ b/campi_flegrei_example_all_times/20190526/volcano_status.txt @@ -0,0 +1,2 @@ +0.28255823977081507 +1.083130510352407 diff --git a/campi_flegrei_example_all_times/20190601/01_cumulative_20141031_20190601.png b/campi_flegrei_example_all_times/20190601/01_cumulative_20141031_20190601.png new file mode 100644 index 00000000..27a29e9c Binary files /dev/null and b/campi_flegrei_example_all_times/20190601/01_cumulative_20141031_20190601.png differ diff --git a/campi_flegrei_example_all_times/20190601/02_incremental_20190526_20190601.png b/campi_flegrei_example_all_times/20190601/02_incremental_20190526_20190601.png new file mode 100644 index 00000000..d8e6fdc4 Binary files /dev/null and b/campi_flegrei_example_all_times/20190601/02_incremental_20190526_20190601.png differ diff --git a/campi_flegrei_example_all_times/20190601/03_reconstruction_20190526_20190601.png b/campi_flegrei_example_all_times/20190601/03_reconstruction_20190526_20190601.png new file mode 100644 index 00000000..6fdfbcdd Binary files /dev/null and b/campi_flegrei_example_all_times/20190601/03_reconstruction_20190526_20190601.png differ diff --git a/campi_flegrei_example_all_times/20190601/04_residual_20190526_20190601.png b/campi_flegrei_example_all_times/20190601/04_residual_20190526_20190601.png new file mode 100644 index 00000000..43431e66 Binary files /dev/null and b/campi_flegrei_example_all_times/20190601/04_residual_20190526_20190601.png differ diff --git a/campi_flegrei_example_all_times/20190601/LiCSAlert_figure_with_133_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190601/LiCSAlert_figure_with_133_monitoring_interferograms.png new file mode 100644 index 00000000..217092f0 Binary files /dev/null and b/campi_flegrei_example_all_times/20190601/LiCSAlert_figure_with_133_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190601/mask_status.png b/campi_flegrei_example_all_times/20190601/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190601/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190601/volcano_status.txt b/campi_flegrei_example_all_times/20190601/volcano_status.txt new file mode 100644 index 00000000..cce8426b --- /dev/null +++ b/campi_flegrei_example_all_times/20190601/volcano_status.txt @@ -0,0 +1,2 @@ +0.39516281152376637 +0.6880243667317529 diff --git a/campi_flegrei_example_all_times/20190607/01_cumulative_20141031_20190607.png b/campi_flegrei_example_all_times/20190607/01_cumulative_20141031_20190607.png new file mode 100644 index 00000000..f2d7127e Binary files /dev/null and b/campi_flegrei_example_all_times/20190607/01_cumulative_20141031_20190607.png differ diff --git a/campi_flegrei_example_all_times/20190607/02_incremental_20190601_20190607.png b/campi_flegrei_example_all_times/20190607/02_incremental_20190601_20190607.png new file mode 100644 index 00000000..4c9b689b Binary files /dev/null and b/campi_flegrei_example_all_times/20190607/02_incremental_20190601_20190607.png differ diff --git a/campi_flegrei_example_all_times/20190607/03_reconstruction_20190601_20190607.png b/campi_flegrei_example_all_times/20190607/03_reconstruction_20190601_20190607.png new file mode 100644 index 00000000..c8227ce2 Binary files /dev/null and b/campi_flegrei_example_all_times/20190607/03_reconstruction_20190601_20190607.png differ diff --git a/campi_flegrei_example_all_times/20190607/04_residual_20190601_20190607.png b/campi_flegrei_example_all_times/20190607/04_residual_20190601_20190607.png new file mode 100644 index 00000000..c3f0976a Binary files /dev/null and b/campi_flegrei_example_all_times/20190607/04_residual_20190601_20190607.png differ diff --git a/campi_flegrei_example_all_times/20190607/LiCSAlert_figure_with_134_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190607/LiCSAlert_figure_with_134_monitoring_interferograms.png new file mode 100644 index 00000000..bcaa203d Binary files /dev/null and b/campi_flegrei_example_all_times/20190607/LiCSAlert_figure_with_134_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190607/mask_status.png b/campi_flegrei_example_all_times/20190607/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190607/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190607/volcano_status.txt b/campi_flegrei_example_all_times/20190607/volcano_status.txt new file mode 100644 index 00000000..b0931151 --- /dev/null +++ b/campi_flegrei_example_all_times/20190607/volcano_status.txt @@ -0,0 +1,2 @@ +0.17696208951613301 +0.4331905940658036 diff --git a/campi_flegrei_example_all_times/20190613/01_cumulative_20141031_20190613.png b/campi_flegrei_example_all_times/20190613/01_cumulative_20141031_20190613.png new file mode 100644 index 00000000..a6f9b04c Binary files /dev/null and b/campi_flegrei_example_all_times/20190613/01_cumulative_20141031_20190613.png differ diff --git a/campi_flegrei_example_all_times/20190613/02_incremental_20190607_20190613.png b/campi_flegrei_example_all_times/20190613/02_incremental_20190607_20190613.png new file mode 100644 index 00000000..37d76cb2 Binary files /dev/null and b/campi_flegrei_example_all_times/20190613/02_incremental_20190607_20190613.png differ diff --git a/campi_flegrei_example_all_times/20190613/03_reconstruction_20190607_20190613.png b/campi_flegrei_example_all_times/20190613/03_reconstruction_20190607_20190613.png new file mode 100644 index 00000000..42d8f181 Binary files /dev/null and b/campi_flegrei_example_all_times/20190613/03_reconstruction_20190607_20190613.png differ diff --git a/campi_flegrei_example_all_times/20190613/04_residual_20190607_20190613.png b/campi_flegrei_example_all_times/20190613/04_residual_20190607_20190613.png new file mode 100644 index 00000000..0365de4a Binary files /dev/null and b/campi_flegrei_example_all_times/20190613/04_residual_20190607_20190613.png differ diff --git a/campi_flegrei_example_all_times/20190613/LiCSAlert_figure_with_135_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190613/LiCSAlert_figure_with_135_monitoring_interferograms.png new file mode 100644 index 00000000..29bffa33 Binary files /dev/null and b/campi_flegrei_example_all_times/20190613/LiCSAlert_figure_with_135_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190613/mask_status.png b/campi_flegrei_example_all_times/20190613/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190613/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190613/volcano_status.txt b/campi_flegrei_example_all_times/20190613/volcano_status.txt new file mode 100644 index 00000000..66513849 --- /dev/null +++ b/campi_flegrei_example_all_times/20190613/volcano_status.txt @@ -0,0 +1,2 @@ +0.044000068548051274 +0.8908959131069072 diff --git a/campi_flegrei_example_all_times/20190625/01_cumulative_20141031_20190625.png b/campi_flegrei_example_all_times/20190625/01_cumulative_20141031_20190625.png new file mode 100644 index 00000000..f7e1854f Binary files /dev/null and b/campi_flegrei_example_all_times/20190625/01_cumulative_20141031_20190625.png differ diff --git a/campi_flegrei_example_all_times/20190625/02_incremental_20190613_20190625.png b/campi_flegrei_example_all_times/20190625/02_incremental_20190613_20190625.png new file mode 100644 index 00000000..780d1680 Binary files /dev/null and b/campi_flegrei_example_all_times/20190625/02_incremental_20190613_20190625.png differ diff --git a/campi_flegrei_example_all_times/20190625/03_reconstruction_20190613_20190625.png b/campi_flegrei_example_all_times/20190625/03_reconstruction_20190613_20190625.png new file mode 100644 index 00000000..f4490ec1 Binary files /dev/null and b/campi_flegrei_example_all_times/20190625/03_reconstruction_20190613_20190625.png differ diff --git a/campi_flegrei_example_all_times/20190625/04_residual_20190613_20190625.png b/campi_flegrei_example_all_times/20190625/04_residual_20190613_20190625.png new file mode 100644 index 00000000..37a68ef0 Binary files /dev/null and b/campi_flegrei_example_all_times/20190625/04_residual_20190613_20190625.png differ diff --git a/campi_flegrei_example_all_times/20190625/LiCSAlert_figure_with_136_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190625/LiCSAlert_figure_with_136_monitoring_interferograms.png new file mode 100644 index 00000000..a3c6cfcc Binary files /dev/null and b/campi_flegrei_example_all_times/20190625/LiCSAlert_figure_with_136_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190625/mask_status.png b/campi_flegrei_example_all_times/20190625/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190625/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190625/volcano_status.txt b/campi_flegrei_example_all_times/20190625/volcano_status.txt new file mode 100644 index 00000000..a611cd33 --- /dev/null +++ b/campi_flegrei_example_all_times/20190625/volcano_status.txt @@ -0,0 +1,2 @@ +0.6626111735976155 +0.8067652044289197 diff --git a/campi_flegrei_example_all_times/20190701/01_cumulative_20141031_20190701.png b/campi_flegrei_example_all_times/20190701/01_cumulative_20141031_20190701.png new file mode 100644 index 00000000..cd681220 Binary files /dev/null and b/campi_flegrei_example_all_times/20190701/01_cumulative_20141031_20190701.png differ diff --git a/campi_flegrei_example_all_times/20190701/02_incremental_20190625_20190701.png b/campi_flegrei_example_all_times/20190701/02_incremental_20190625_20190701.png new file mode 100644 index 00000000..8a7629f4 Binary files /dev/null and b/campi_flegrei_example_all_times/20190701/02_incremental_20190625_20190701.png differ diff --git a/campi_flegrei_example_all_times/20190701/03_reconstruction_20190625_20190701.png b/campi_flegrei_example_all_times/20190701/03_reconstruction_20190625_20190701.png new file mode 100644 index 00000000..0d386076 Binary files /dev/null and b/campi_flegrei_example_all_times/20190701/03_reconstruction_20190625_20190701.png differ diff --git a/campi_flegrei_example_all_times/20190701/04_residual_20190625_20190701.png b/campi_flegrei_example_all_times/20190701/04_residual_20190625_20190701.png new file mode 100644 index 00000000..ecc1dafa Binary files /dev/null and b/campi_flegrei_example_all_times/20190701/04_residual_20190625_20190701.png differ diff --git a/campi_flegrei_example_all_times/20190701/LiCSAlert_figure_with_137_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190701/LiCSAlert_figure_with_137_monitoring_interferograms.png new file mode 100644 index 00000000..37cbd990 Binary files /dev/null and b/campi_flegrei_example_all_times/20190701/LiCSAlert_figure_with_137_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190701/mask_status.png b/campi_flegrei_example_all_times/20190701/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190701/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190701/volcano_status.txt b/campi_flegrei_example_all_times/20190701/volcano_status.txt new file mode 100644 index 00000000..a163d55d --- /dev/null +++ b/campi_flegrei_example_all_times/20190701/volcano_status.txt @@ -0,0 +1,2 @@ +0.5534585607635708 +0.07148204762879398 diff --git a/campi_flegrei_example_all_times/20190707/01_cumulative_20141031_20190707.png b/campi_flegrei_example_all_times/20190707/01_cumulative_20141031_20190707.png new file mode 100644 index 00000000..2ade161f Binary files /dev/null and b/campi_flegrei_example_all_times/20190707/01_cumulative_20141031_20190707.png differ diff --git a/campi_flegrei_example_all_times/20190707/02_incremental_20190701_20190707.png b/campi_flegrei_example_all_times/20190707/02_incremental_20190701_20190707.png new file mode 100644 index 00000000..b2456d95 Binary files /dev/null and b/campi_flegrei_example_all_times/20190707/02_incremental_20190701_20190707.png differ diff --git a/campi_flegrei_example_all_times/20190707/03_reconstruction_20190701_20190707.png b/campi_flegrei_example_all_times/20190707/03_reconstruction_20190701_20190707.png new file mode 100644 index 00000000..158af9c7 Binary files /dev/null and b/campi_flegrei_example_all_times/20190707/03_reconstruction_20190701_20190707.png differ diff --git a/campi_flegrei_example_all_times/20190707/04_residual_20190701_20190707.png b/campi_flegrei_example_all_times/20190707/04_residual_20190701_20190707.png new file mode 100644 index 00000000..3820b0d7 Binary files /dev/null and b/campi_flegrei_example_all_times/20190707/04_residual_20190701_20190707.png differ diff --git a/campi_flegrei_example_all_times/20190707/LiCSAlert_figure_with_138_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190707/LiCSAlert_figure_with_138_monitoring_interferograms.png new file mode 100644 index 00000000..d94ec3fd Binary files /dev/null and b/campi_flegrei_example_all_times/20190707/LiCSAlert_figure_with_138_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190707/mask_status.png b/campi_flegrei_example_all_times/20190707/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190707/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190707/volcano_status.txt b/campi_flegrei_example_all_times/20190707/volcano_status.txt new file mode 100644 index 00000000..d3851625 --- /dev/null +++ b/campi_flegrei_example_all_times/20190707/volcano_status.txt @@ -0,0 +1,2 @@ +0.8712584853683923 +2.446441027398998 diff --git a/campi_flegrei_example_all_times/20190713/01_cumulative_20141031_20190713.png b/campi_flegrei_example_all_times/20190713/01_cumulative_20141031_20190713.png new file mode 100644 index 00000000..5ba08599 Binary files /dev/null and b/campi_flegrei_example_all_times/20190713/01_cumulative_20141031_20190713.png differ diff --git a/campi_flegrei_example_all_times/20190713/02_incremental_20190707_20190713.png b/campi_flegrei_example_all_times/20190713/02_incremental_20190707_20190713.png new file mode 100644 index 00000000..f2c9d55a Binary files /dev/null and b/campi_flegrei_example_all_times/20190713/02_incremental_20190707_20190713.png differ diff --git a/campi_flegrei_example_all_times/20190713/03_reconstruction_20190707_20190713.png b/campi_flegrei_example_all_times/20190713/03_reconstruction_20190707_20190713.png new file mode 100644 index 00000000..8a26dfc5 Binary files /dev/null and b/campi_flegrei_example_all_times/20190713/03_reconstruction_20190707_20190713.png differ diff --git a/campi_flegrei_example_all_times/20190713/04_residual_20190707_20190713.png b/campi_flegrei_example_all_times/20190713/04_residual_20190707_20190713.png new file mode 100644 index 00000000..ba9a45ad Binary files /dev/null and b/campi_flegrei_example_all_times/20190713/04_residual_20190707_20190713.png differ diff --git a/campi_flegrei_example_all_times/20190713/LiCSAlert_figure_with_139_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190713/LiCSAlert_figure_with_139_monitoring_interferograms.png new file mode 100644 index 00000000..0187726e Binary files /dev/null and b/campi_flegrei_example_all_times/20190713/LiCSAlert_figure_with_139_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190713/mask_status.png b/campi_flegrei_example_all_times/20190713/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190713/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190713/volcano_status.txt b/campi_flegrei_example_all_times/20190713/volcano_status.txt new file mode 100644 index 00000000..36d94b62 --- /dev/null +++ b/campi_flegrei_example_all_times/20190713/volcano_status.txt @@ -0,0 +1,2 @@ +0.593090209001915 +1.749709478122588 diff --git a/campi_flegrei_example_all_times/20190719/01_cumulative_20141031_20190719.png b/campi_flegrei_example_all_times/20190719/01_cumulative_20141031_20190719.png new file mode 100644 index 00000000..d9cdb05f Binary files /dev/null and b/campi_flegrei_example_all_times/20190719/01_cumulative_20141031_20190719.png differ diff --git a/campi_flegrei_example_all_times/20190719/02_incremental_20190713_20190719.png b/campi_flegrei_example_all_times/20190719/02_incremental_20190713_20190719.png new file mode 100644 index 00000000..beab714d Binary files /dev/null and b/campi_flegrei_example_all_times/20190719/02_incremental_20190713_20190719.png differ diff --git a/campi_flegrei_example_all_times/20190719/03_reconstruction_20190713_20190719.png b/campi_flegrei_example_all_times/20190719/03_reconstruction_20190713_20190719.png new file mode 100644 index 00000000..6aac6f09 Binary files /dev/null and b/campi_flegrei_example_all_times/20190719/03_reconstruction_20190713_20190719.png differ diff --git a/campi_flegrei_example_all_times/20190719/04_residual_20190713_20190719.png b/campi_flegrei_example_all_times/20190719/04_residual_20190713_20190719.png new file mode 100644 index 00000000..3f4764b8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190719/04_residual_20190713_20190719.png differ diff --git a/campi_flegrei_example_all_times/20190719/LiCSAlert_figure_with_140_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190719/LiCSAlert_figure_with_140_monitoring_interferograms.png new file mode 100644 index 00000000..73d737ed Binary files /dev/null and b/campi_flegrei_example_all_times/20190719/LiCSAlert_figure_with_140_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190719/mask_status.png b/campi_flegrei_example_all_times/20190719/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190719/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190719/volcano_status.txt b/campi_flegrei_example_all_times/20190719/volcano_status.txt new file mode 100644 index 00000000..7d9b007f --- /dev/null +++ b/campi_flegrei_example_all_times/20190719/volcano_status.txt @@ -0,0 +1,2 @@ +0.49958665727164925 +0.06741967428769753 diff --git a/campi_flegrei_example_all_times/20190725/01_cumulative_20141031_20190725.png b/campi_flegrei_example_all_times/20190725/01_cumulative_20141031_20190725.png new file mode 100644 index 00000000..a66568c0 Binary files /dev/null and b/campi_flegrei_example_all_times/20190725/01_cumulative_20141031_20190725.png differ diff --git a/campi_flegrei_example_all_times/20190725/02_incremental_20190719_20190725.png b/campi_flegrei_example_all_times/20190725/02_incremental_20190719_20190725.png new file mode 100644 index 00000000..f7f5a386 Binary files /dev/null and b/campi_flegrei_example_all_times/20190725/02_incremental_20190719_20190725.png differ diff --git a/campi_flegrei_example_all_times/20190725/03_reconstruction_20190719_20190725.png b/campi_flegrei_example_all_times/20190725/03_reconstruction_20190719_20190725.png new file mode 100644 index 00000000..2a4035ad Binary files /dev/null and b/campi_flegrei_example_all_times/20190725/03_reconstruction_20190719_20190725.png differ diff --git a/campi_flegrei_example_all_times/20190725/04_residual_20190719_20190725.png b/campi_flegrei_example_all_times/20190725/04_residual_20190719_20190725.png new file mode 100644 index 00000000..91a69e18 Binary files /dev/null and b/campi_flegrei_example_all_times/20190725/04_residual_20190719_20190725.png differ diff --git a/campi_flegrei_example_all_times/20190725/LiCSAlert_figure_with_141_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190725/LiCSAlert_figure_with_141_monitoring_interferograms.png new file mode 100644 index 00000000..f310c2c1 Binary files /dev/null and b/campi_flegrei_example_all_times/20190725/LiCSAlert_figure_with_141_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190725/mask_status.png b/campi_flegrei_example_all_times/20190725/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190725/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190725/volcano_status.txt b/campi_flegrei_example_all_times/20190725/volcano_status.txt new file mode 100644 index 00000000..3f695b05 --- /dev/null +++ b/campi_flegrei_example_all_times/20190725/volcano_status.txt @@ -0,0 +1,2 @@ +0.36847632717399725 +0.0812470267974804 diff --git a/campi_flegrei_example_all_times/20190731/01_cumulative_20141031_20190731.png b/campi_flegrei_example_all_times/20190731/01_cumulative_20141031_20190731.png new file mode 100644 index 00000000..64a8c070 Binary files /dev/null and b/campi_flegrei_example_all_times/20190731/01_cumulative_20141031_20190731.png differ diff --git a/campi_flegrei_example_all_times/20190731/02_incremental_20190725_20190731.png b/campi_flegrei_example_all_times/20190731/02_incremental_20190725_20190731.png new file mode 100644 index 00000000..6414991c Binary files /dev/null and b/campi_flegrei_example_all_times/20190731/02_incremental_20190725_20190731.png differ diff --git a/campi_flegrei_example_all_times/20190731/03_reconstruction_20190725_20190731.png b/campi_flegrei_example_all_times/20190731/03_reconstruction_20190725_20190731.png new file mode 100644 index 00000000..ffe93613 Binary files /dev/null and b/campi_flegrei_example_all_times/20190731/03_reconstruction_20190725_20190731.png differ diff --git a/campi_flegrei_example_all_times/20190731/04_residual_20190725_20190731.png b/campi_flegrei_example_all_times/20190731/04_residual_20190725_20190731.png new file mode 100644 index 00000000..560fb4fc Binary files /dev/null and b/campi_flegrei_example_all_times/20190731/04_residual_20190725_20190731.png differ diff --git a/campi_flegrei_example_all_times/20190731/LiCSAlert_figure_with_142_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190731/LiCSAlert_figure_with_142_monitoring_interferograms.png new file mode 100644 index 00000000..308fc71b Binary files /dev/null and b/campi_flegrei_example_all_times/20190731/LiCSAlert_figure_with_142_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190731/mask_status.png b/campi_flegrei_example_all_times/20190731/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190731/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190731/volcano_status.txt b/campi_flegrei_example_all_times/20190731/volcano_status.txt new file mode 100644 index 00000000..d845a1f8 --- /dev/null +++ b/campi_flegrei_example_all_times/20190731/volcano_status.txt @@ -0,0 +1,2 @@ +0.23186635146197565 +0.5033447038449239 diff --git a/campi_flegrei_example_all_times/20190806/01_cumulative_20141031_20190806.png b/campi_flegrei_example_all_times/20190806/01_cumulative_20141031_20190806.png new file mode 100644 index 00000000..b65ebb65 Binary files /dev/null and b/campi_flegrei_example_all_times/20190806/01_cumulative_20141031_20190806.png differ diff --git a/campi_flegrei_example_all_times/20190806/02_incremental_20190731_20190806.png b/campi_flegrei_example_all_times/20190806/02_incremental_20190731_20190806.png new file mode 100644 index 00000000..519e01db Binary files /dev/null and b/campi_flegrei_example_all_times/20190806/02_incremental_20190731_20190806.png differ diff --git a/campi_flegrei_example_all_times/20190806/03_reconstruction_20190731_20190806.png b/campi_flegrei_example_all_times/20190806/03_reconstruction_20190731_20190806.png new file mode 100644 index 00000000..357fbc60 Binary files /dev/null and b/campi_flegrei_example_all_times/20190806/03_reconstruction_20190731_20190806.png differ diff --git a/campi_flegrei_example_all_times/20190806/04_residual_20190731_20190806.png b/campi_flegrei_example_all_times/20190806/04_residual_20190731_20190806.png new file mode 100644 index 00000000..d987318a Binary files /dev/null and b/campi_flegrei_example_all_times/20190806/04_residual_20190731_20190806.png differ diff --git a/campi_flegrei_example_all_times/20190806/LiCSAlert_figure_with_143_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190806/LiCSAlert_figure_with_143_monitoring_interferograms.png new file mode 100644 index 00000000..9613c911 Binary files /dev/null and b/campi_flegrei_example_all_times/20190806/LiCSAlert_figure_with_143_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190806/mask_status.png b/campi_flegrei_example_all_times/20190806/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190806/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190806/volcano_status.txt b/campi_flegrei_example_all_times/20190806/volcano_status.txt new file mode 100644 index 00000000..c08ec7b1 --- /dev/null +++ b/campi_flegrei_example_all_times/20190806/volcano_status.txt @@ -0,0 +1,2 @@ +0.5981489292558699 +1.1411048233373238 diff --git a/campi_flegrei_example_all_times/20190812/01_cumulative_20141031_20190812.png b/campi_flegrei_example_all_times/20190812/01_cumulative_20141031_20190812.png new file mode 100644 index 00000000..17eee272 Binary files /dev/null and b/campi_flegrei_example_all_times/20190812/01_cumulative_20141031_20190812.png differ diff --git a/campi_flegrei_example_all_times/20190812/02_incremental_20190806_20190812.png b/campi_flegrei_example_all_times/20190812/02_incremental_20190806_20190812.png new file mode 100644 index 00000000..7079e626 Binary files /dev/null and b/campi_flegrei_example_all_times/20190812/02_incremental_20190806_20190812.png differ diff --git a/campi_flegrei_example_all_times/20190812/03_reconstruction_20190806_20190812.png b/campi_flegrei_example_all_times/20190812/03_reconstruction_20190806_20190812.png new file mode 100644 index 00000000..2f993dd7 Binary files /dev/null and b/campi_flegrei_example_all_times/20190812/03_reconstruction_20190806_20190812.png differ diff --git a/campi_flegrei_example_all_times/20190812/04_residual_20190806_20190812.png b/campi_flegrei_example_all_times/20190812/04_residual_20190806_20190812.png new file mode 100644 index 00000000..bda9cba9 Binary files /dev/null and b/campi_flegrei_example_all_times/20190812/04_residual_20190806_20190812.png differ diff --git a/campi_flegrei_example_all_times/20190812/LiCSAlert_figure_with_144_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190812/LiCSAlert_figure_with_144_monitoring_interferograms.png new file mode 100644 index 00000000..f2dc2f1e Binary files /dev/null and b/campi_flegrei_example_all_times/20190812/LiCSAlert_figure_with_144_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190812/mask_status.png b/campi_flegrei_example_all_times/20190812/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190812/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190812/volcano_status.txt b/campi_flegrei_example_all_times/20190812/volcano_status.txt new file mode 100644 index 00000000..0a7b584c --- /dev/null +++ b/campi_flegrei_example_all_times/20190812/volcano_status.txt @@ -0,0 +1,2 @@ +0.26352056080244785 +0.828280238230082 diff --git a/campi_flegrei_example_all_times/20190818/01_cumulative_20141031_20190818.png b/campi_flegrei_example_all_times/20190818/01_cumulative_20141031_20190818.png new file mode 100644 index 00000000..91287899 Binary files /dev/null and b/campi_flegrei_example_all_times/20190818/01_cumulative_20141031_20190818.png differ diff --git a/campi_flegrei_example_all_times/20190818/02_incremental_20190812_20190818.png b/campi_flegrei_example_all_times/20190818/02_incremental_20190812_20190818.png new file mode 100644 index 00000000..5f99875c Binary files /dev/null and b/campi_flegrei_example_all_times/20190818/02_incremental_20190812_20190818.png differ diff --git a/campi_flegrei_example_all_times/20190818/03_reconstruction_20190812_20190818.png b/campi_flegrei_example_all_times/20190818/03_reconstruction_20190812_20190818.png new file mode 100644 index 00000000..1da0d1cd Binary files /dev/null and b/campi_flegrei_example_all_times/20190818/03_reconstruction_20190812_20190818.png differ diff --git a/campi_flegrei_example_all_times/20190818/04_residual_20190812_20190818.png b/campi_flegrei_example_all_times/20190818/04_residual_20190812_20190818.png new file mode 100644 index 00000000..f6768d78 Binary files /dev/null and b/campi_flegrei_example_all_times/20190818/04_residual_20190812_20190818.png differ diff --git a/campi_flegrei_example_all_times/20190818/LiCSAlert_figure_with_145_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190818/LiCSAlert_figure_with_145_monitoring_interferograms.png new file mode 100644 index 00000000..c5710fc7 Binary files /dev/null and b/campi_flegrei_example_all_times/20190818/LiCSAlert_figure_with_145_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190818/mask_status.png b/campi_flegrei_example_all_times/20190818/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190818/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190818/volcano_status.txt b/campi_flegrei_example_all_times/20190818/volcano_status.txt new file mode 100644 index 00000000..c56bcf98 --- /dev/null +++ b/campi_flegrei_example_all_times/20190818/volcano_status.txt @@ -0,0 +1,2 @@ +0.5934718537130822 +0.6943534347952269 diff --git a/campi_flegrei_example_all_times/20190824/01_cumulative_20141031_20190824.png b/campi_flegrei_example_all_times/20190824/01_cumulative_20141031_20190824.png new file mode 100644 index 00000000..59f6c221 Binary files /dev/null and b/campi_flegrei_example_all_times/20190824/01_cumulative_20141031_20190824.png differ diff --git a/campi_flegrei_example_all_times/20190824/02_incremental_20190818_20190824.png b/campi_flegrei_example_all_times/20190824/02_incremental_20190818_20190824.png new file mode 100644 index 00000000..beb5e3dd Binary files /dev/null and b/campi_flegrei_example_all_times/20190824/02_incremental_20190818_20190824.png differ diff --git a/campi_flegrei_example_all_times/20190824/03_reconstruction_20190818_20190824.png b/campi_flegrei_example_all_times/20190824/03_reconstruction_20190818_20190824.png new file mode 100644 index 00000000..631e6303 Binary files /dev/null and b/campi_flegrei_example_all_times/20190824/03_reconstruction_20190818_20190824.png differ diff --git a/campi_flegrei_example_all_times/20190824/04_residual_20190818_20190824.png b/campi_flegrei_example_all_times/20190824/04_residual_20190818_20190824.png new file mode 100644 index 00000000..c7d2759d Binary files /dev/null and b/campi_flegrei_example_all_times/20190824/04_residual_20190818_20190824.png differ diff --git a/campi_flegrei_example_all_times/20190824/LiCSAlert_figure_with_146_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190824/LiCSAlert_figure_with_146_monitoring_interferograms.png new file mode 100644 index 00000000..f657be5c Binary files /dev/null and b/campi_flegrei_example_all_times/20190824/LiCSAlert_figure_with_146_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190824/mask_status.png b/campi_flegrei_example_all_times/20190824/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190824/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190824/volcano_status.txt b/campi_flegrei_example_all_times/20190824/volcano_status.txt new file mode 100644 index 00000000..0496b828 --- /dev/null +++ b/campi_flegrei_example_all_times/20190824/volcano_status.txt @@ -0,0 +1,2 @@ +0.6463450522764322 +0.5800634839108509 diff --git a/campi_flegrei_example_all_times/20190830/01_cumulative_20141031_20190830.png b/campi_flegrei_example_all_times/20190830/01_cumulative_20141031_20190830.png new file mode 100644 index 00000000..ff3da7a6 Binary files /dev/null and b/campi_flegrei_example_all_times/20190830/01_cumulative_20141031_20190830.png differ diff --git a/campi_flegrei_example_all_times/20190830/02_incremental_20190824_20190830.png b/campi_flegrei_example_all_times/20190830/02_incremental_20190824_20190830.png new file mode 100644 index 00000000..f851269d Binary files /dev/null and b/campi_flegrei_example_all_times/20190830/02_incremental_20190824_20190830.png differ diff --git a/campi_flegrei_example_all_times/20190830/03_reconstruction_20190824_20190830.png b/campi_flegrei_example_all_times/20190830/03_reconstruction_20190824_20190830.png new file mode 100644 index 00000000..6aee857e Binary files /dev/null and b/campi_flegrei_example_all_times/20190830/03_reconstruction_20190824_20190830.png differ diff --git a/campi_flegrei_example_all_times/20190830/04_residual_20190824_20190830.png b/campi_flegrei_example_all_times/20190830/04_residual_20190824_20190830.png new file mode 100644 index 00000000..2e3eb883 Binary files /dev/null and b/campi_flegrei_example_all_times/20190830/04_residual_20190824_20190830.png differ diff --git a/campi_flegrei_example_all_times/20190830/LiCSAlert_figure_with_147_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190830/LiCSAlert_figure_with_147_monitoring_interferograms.png new file mode 100644 index 00000000..9cf841cf Binary files /dev/null and b/campi_flegrei_example_all_times/20190830/LiCSAlert_figure_with_147_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190830/mask_status.png b/campi_flegrei_example_all_times/20190830/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190830/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190830/volcano_status.txt b/campi_flegrei_example_all_times/20190830/volcano_status.txt new file mode 100644 index 00000000..a7d29b6e --- /dev/null +++ b/campi_flegrei_example_all_times/20190830/volcano_status.txt @@ -0,0 +1,2 @@ +0.46417418613117 +0.7587765978914482 diff --git a/campi_flegrei_example_all_times/20190905/01_cumulative_20141031_20190905.png b/campi_flegrei_example_all_times/20190905/01_cumulative_20141031_20190905.png new file mode 100644 index 00000000..863cefa8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190905/01_cumulative_20141031_20190905.png differ diff --git a/campi_flegrei_example_all_times/20190905/02_incremental_20190830_20190905.png b/campi_flegrei_example_all_times/20190905/02_incremental_20190830_20190905.png new file mode 100644 index 00000000..409ee122 Binary files /dev/null and b/campi_flegrei_example_all_times/20190905/02_incremental_20190830_20190905.png differ diff --git a/campi_flegrei_example_all_times/20190905/03_reconstruction_20190830_20190905.png b/campi_flegrei_example_all_times/20190905/03_reconstruction_20190830_20190905.png new file mode 100644 index 00000000..0aafa81b Binary files /dev/null and b/campi_flegrei_example_all_times/20190905/03_reconstruction_20190830_20190905.png differ diff --git a/campi_flegrei_example_all_times/20190905/04_residual_20190830_20190905.png b/campi_flegrei_example_all_times/20190905/04_residual_20190830_20190905.png new file mode 100644 index 00000000..0a7c333b Binary files /dev/null and b/campi_flegrei_example_all_times/20190905/04_residual_20190830_20190905.png differ diff --git a/campi_flegrei_example_all_times/20190905/LiCSAlert_figure_with_148_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190905/LiCSAlert_figure_with_148_monitoring_interferograms.png new file mode 100644 index 00000000..213d2e69 Binary files /dev/null and b/campi_flegrei_example_all_times/20190905/LiCSAlert_figure_with_148_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190905/mask_status.png b/campi_flegrei_example_all_times/20190905/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190905/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190905/volcano_status.txt b/campi_flegrei_example_all_times/20190905/volcano_status.txt new file mode 100644 index 00000000..e7379db2 --- /dev/null +++ b/campi_flegrei_example_all_times/20190905/volcano_status.txt @@ -0,0 +1,2 @@ +0.4163103793844812 +0.4170237125959532 diff --git a/campi_flegrei_example_all_times/20190911/01_cumulative_20141031_20190911.png b/campi_flegrei_example_all_times/20190911/01_cumulative_20141031_20190911.png new file mode 100644 index 00000000..7b19738d Binary files /dev/null and b/campi_flegrei_example_all_times/20190911/01_cumulative_20141031_20190911.png differ diff --git a/campi_flegrei_example_all_times/20190911/02_incremental_20190905_20190911.png b/campi_flegrei_example_all_times/20190911/02_incremental_20190905_20190911.png new file mode 100644 index 00000000..277aa1ac Binary files /dev/null and b/campi_flegrei_example_all_times/20190911/02_incremental_20190905_20190911.png differ diff --git a/campi_flegrei_example_all_times/20190911/03_reconstruction_20190905_20190911.png b/campi_flegrei_example_all_times/20190911/03_reconstruction_20190905_20190911.png new file mode 100644 index 00000000..7c5dc952 Binary files /dev/null and b/campi_flegrei_example_all_times/20190911/03_reconstruction_20190905_20190911.png differ diff --git a/campi_flegrei_example_all_times/20190911/04_residual_20190905_20190911.png b/campi_flegrei_example_all_times/20190911/04_residual_20190905_20190911.png new file mode 100644 index 00000000..aa9ca149 Binary files /dev/null and b/campi_flegrei_example_all_times/20190911/04_residual_20190905_20190911.png differ diff --git a/campi_flegrei_example_all_times/20190911/LiCSAlert_figure_with_149_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190911/LiCSAlert_figure_with_149_monitoring_interferograms.png new file mode 100644 index 00000000..52522104 Binary files /dev/null and b/campi_flegrei_example_all_times/20190911/LiCSAlert_figure_with_149_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190911/mask_status.png b/campi_flegrei_example_all_times/20190911/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190911/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190911/volcano_status.txt b/campi_flegrei_example_all_times/20190911/volcano_status.txt new file mode 100644 index 00000000..b2620523 --- /dev/null +++ b/campi_flegrei_example_all_times/20190911/volcano_status.txt @@ -0,0 +1,2 @@ +0.42722972488194466 +0.3564878340328052 diff --git a/campi_flegrei_example_all_times/20190917/01_cumulative_20141031_20190917.png b/campi_flegrei_example_all_times/20190917/01_cumulative_20141031_20190917.png new file mode 100644 index 00000000..4b1f3a47 Binary files /dev/null and b/campi_flegrei_example_all_times/20190917/01_cumulative_20141031_20190917.png differ diff --git a/campi_flegrei_example_all_times/20190917/02_incremental_20190911_20190917.png b/campi_flegrei_example_all_times/20190917/02_incremental_20190911_20190917.png new file mode 100644 index 00000000..8765c997 Binary files /dev/null and b/campi_flegrei_example_all_times/20190917/02_incremental_20190911_20190917.png differ diff --git a/campi_flegrei_example_all_times/20190917/03_reconstruction_20190911_20190917.png b/campi_flegrei_example_all_times/20190917/03_reconstruction_20190911_20190917.png new file mode 100644 index 00000000..7a37697e Binary files /dev/null and b/campi_flegrei_example_all_times/20190917/03_reconstruction_20190911_20190917.png differ diff --git a/campi_flegrei_example_all_times/20190917/04_residual_20190911_20190917.png b/campi_flegrei_example_all_times/20190917/04_residual_20190911_20190917.png new file mode 100644 index 00000000..9f61fd7d Binary files /dev/null and b/campi_flegrei_example_all_times/20190917/04_residual_20190911_20190917.png differ diff --git a/campi_flegrei_example_all_times/20190917/LiCSAlert_figure_with_150_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190917/LiCSAlert_figure_with_150_monitoring_interferograms.png new file mode 100644 index 00000000..e0713804 Binary files /dev/null and b/campi_flegrei_example_all_times/20190917/LiCSAlert_figure_with_150_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190917/mask_status.png b/campi_flegrei_example_all_times/20190917/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190917/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190917/volcano_status.txt b/campi_flegrei_example_all_times/20190917/volcano_status.txt new file mode 100644 index 00000000..c8a3e25c --- /dev/null +++ b/campi_flegrei_example_all_times/20190917/volcano_status.txt @@ -0,0 +1,2 @@ +0.6466683146170229 +1.2546838139093448 diff --git a/campi_flegrei_example_all_times/20190923/01_cumulative_20141031_20190923.png b/campi_flegrei_example_all_times/20190923/01_cumulative_20141031_20190923.png new file mode 100644 index 00000000..af7ea7db Binary files /dev/null and b/campi_flegrei_example_all_times/20190923/01_cumulative_20141031_20190923.png differ diff --git a/campi_flegrei_example_all_times/20190923/02_incremental_20190917_20190923.png b/campi_flegrei_example_all_times/20190923/02_incremental_20190917_20190923.png new file mode 100644 index 00000000..2d61cb99 Binary files /dev/null and b/campi_flegrei_example_all_times/20190923/02_incremental_20190917_20190923.png differ diff --git a/campi_flegrei_example_all_times/20190923/03_reconstruction_20190917_20190923.png b/campi_flegrei_example_all_times/20190923/03_reconstruction_20190917_20190923.png new file mode 100644 index 00000000..31f384c5 Binary files /dev/null and b/campi_flegrei_example_all_times/20190923/03_reconstruction_20190917_20190923.png differ diff --git a/campi_flegrei_example_all_times/20190923/04_residual_20190917_20190923.png b/campi_flegrei_example_all_times/20190923/04_residual_20190917_20190923.png new file mode 100644 index 00000000..1a3923dd Binary files /dev/null and b/campi_flegrei_example_all_times/20190923/04_residual_20190917_20190923.png differ diff --git a/campi_flegrei_example_all_times/20190923/LiCSAlert_figure_with_151_monitoring_interferograms.png b/campi_flegrei_example_all_times/20190923/LiCSAlert_figure_with_151_monitoring_interferograms.png new file mode 100644 index 00000000..35037f39 Binary files /dev/null and b/campi_flegrei_example_all_times/20190923/LiCSAlert_figure_with_151_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20190923/mask_status.png b/campi_flegrei_example_all_times/20190923/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20190923/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20190923/volcano_status.txt b/campi_flegrei_example_all_times/20190923/volcano_status.txt new file mode 100644 index 00000000..a5494d04 --- /dev/null +++ b/campi_flegrei_example_all_times/20190923/volcano_status.txt @@ -0,0 +1,2 @@ +0.1897720453012105 +0.4968217784956517 diff --git a/campi_flegrei_example_all_times/20191005/01_cumulative_20141031_20191005.png b/campi_flegrei_example_all_times/20191005/01_cumulative_20141031_20191005.png new file mode 100644 index 00000000..96b583b9 Binary files /dev/null and b/campi_flegrei_example_all_times/20191005/01_cumulative_20141031_20191005.png differ diff --git a/campi_flegrei_example_all_times/20191005/02_incremental_20190923_20191005.png b/campi_flegrei_example_all_times/20191005/02_incremental_20190923_20191005.png new file mode 100644 index 00000000..3393bd37 Binary files /dev/null and b/campi_flegrei_example_all_times/20191005/02_incremental_20190923_20191005.png differ diff --git a/campi_flegrei_example_all_times/20191005/03_reconstruction_20190923_20191005.png b/campi_flegrei_example_all_times/20191005/03_reconstruction_20190923_20191005.png new file mode 100644 index 00000000..7ae95b8c Binary files /dev/null and b/campi_flegrei_example_all_times/20191005/03_reconstruction_20190923_20191005.png differ diff --git a/campi_flegrei_example_all_times/20191005/04_residual_20190923_20191005.png b/campi_flegrei_example_all_times/20191005/04_residual_20190923_20191005.png new file mode 100644 index 00000000..2e21046d Binary files /dev/null and b/campi_flegrei_example_all_times/20191005/04_residual_20190923_20191005.png differ diff --git a/campi_flegrei_example_all_times/20191005/LiCSAlert_figure_with_152_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191005/LiCSAlert_figure_with_152_monitoring_interferograms.png new file mode 100644 index 00000000..04b093c1 Binary files /dev/null and b/campi_flegrei_example_all_times/20191005/LiCSAlert_figure_with_152_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191005/mask_status.png b/campi_flegrei_example_all_times/20191005/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191005/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191005/volcano_status.txt b/campi_flegrei_example_all_times/20191005/volcano_status.txt new file mode 100644 index 00000000..77a39c27 --- /dev/null +++ b/campi_flegrei_example_all_times/20191005/volcano_status.txt @@ -0,0 +1,2 @@ +0.25012910236284225 +0.5523489781652697 diff --git a/campi_flegrei_example_all_times/20191011/01_cumulative_20141031_20191011.png b/campi_flegrei_example_all_times/20191011/01_cumulative_20141031_20191011.png new file mode 100644 index 00000000..5b3e2c51 Binary files /dev/null and b/campi_flegrei_example_all_times/20191011/01_cumulative_20141031_20191011.png differ diff --git a/campi_flegrei_example_all_times/20191011/02_incremental_20191005_20191011.png b/campi_flegrei_example_all_times/20191011/02_incremental_20191005_20191011.png new file mode 100644 index 00000000..553033db Binary files /dev/null and b/campi_flegrei_example_all_times/20191011/02_incremental_20191005_20191011.png differ diff --git a/campi_flegrei_example_all_times/20191011/03_reconstruction_20191005_20191011.png b/campi_flegrei_example_all_times/20191011/03_reconstruction_20191005_20191011.png new file mode 100644 index 00000000..8cdfed44 Binary files /dev/null and b/campi_flegrei_example_all_times/20191011/03_reconstruction_20191005_20191011.png differ diff --git a/campi_flegrei_example_all_times/20191011/04_residual_20191005_20191011.png b/campi_flegrei_example_all_times/20191011/04_residual_20191005_20191011.png new file mode 100644 index 00000000..c7c723af Binary files /dev/null and b/campi_flegrei_example_all_times/20191011/04_residual_20191005_20191011.png differ diff --git a/campi_flegrei_example_all_times/20191011/LiCSAlert_figure_with_153_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191011/LiCSAlert_figure_with_153_monitoring_interferograms.png new file mode 100644 index 00000000..2e204ba2 Binary files /dev/null and b/campi_flegrei_example_all_times/20191011/LiCSAlert_figure_with_153_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191011/mask_status.png b/campi_flegrei_example_all_times/20191011/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191011/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191011/volcano_status.txt b/campi_flegrei_example_all_times/20191011/volcano_status.txt new file mode 100644 index 00000000..24cf4fc8 --- /dev/null +++ b/campi_flegrei_example_all_times/20191011/volcano_status.txt @@ -0,0 +1,2 @@ +0.6016662234958572 +0.13457763567805756 diff --git a/campi_flegrei_example_all_times/20191017/01_cumulative_20141031_20191017.png b/campi_flegrei_example_all_times/20191017/01_cumulative_20141031_20191017.png new file mode 100644 index 00000000..31379bb8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191017/01_cumulative_20141031_20191017.png differ diff --git a/campi_flegrei_example_all_times/20191017/02_incremental_20191011_20191017.png b/campi_flegrei_example_all_times/20191017/02_incremental_20191011_20191017.png new file mode 100644 index 00000000..068412ba Binary files /dev/null and b/campi_flegrei_example_all_times/20191017/02_incremental_20191011_20191017.png differ diff --git a/campi_flegrei_example_all_times/20191017/03_reconstruction_20191011_20191017.png b/campi_flegrei_example_all_times/20191017/03_reconstruction_20191011_20191017.png new file mode 100644 index 00000000..db53fc19 Binary files /dev/null and b/campi_flegrei_example_all_times/20191017/03_reconstruction_20191011_20191017.png differ diff --git a/campi_flegrei_example_all_times/20191017/04_residual_20191011_20191017.png b/campi_flegrei_example_all_times/20191017/04_residual_20191011_20191017.png new file mode 100644 index 00000000..c0ce6a2a Binary files /dev/null and b/campi_flegrei_example_all_times/20191017/04_residual_20191011_20191017.png differ diff --git a/campi_flegrei_example_all_times/20191017/LiCSAlert_figure_with_154_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191017/LiCSAlert_figure_with_154_monitoring_interferograms.png new file mode 100644 index 00000000..9c2c283d Binary files /dev/null and b/campi_flegrei_example_all_times/20191017/LiCSAlert_figure_with_154_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191017/mask_status.png b/campi_flegrei_example_all_times/20191017/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191017/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191017/volcano_status.txt b/campi_flegrei_example_all_times/20191017/volcano_status.txt new file mode 100644 index 00000000..5a5909f2 --- /dev/null +++ b/campi_flegrei_example_all_times/20191017/volcano_status.txt @@ -0,0 +1,2 @@ +0.4007656694427444 +0.4659816071491263 diff --git a/campi_flegrei_example_all_times/20191023/01_cumulative_20141031_20191023.png b/campi_flegrei_example_all_times/20191023/01_cumulative_20141031_20191023.png new file mode 100644 index 00000000..7bba9cc6 Binary files /dev/null and b/campi_flegrei_example_all_times/20191023/01_cumulative_20141031_20191023.png differ diff --git a/campi_flegrei_example_all_times/20191023/02_incremental_20191017_20191023.png b/campi_flegrei_example_all_times/20191023/02_incremental_20191017_20191023.png new file mode 100644 index 00000000..ad10b41e Binary files /dev/null and b/campi_flegrei_example_all_times/20191023/02_incremental_20191017_20191023.png differ diff --git a/campi_flegrei_example_all_times/20191023/03_reconstruction_20191017_20191023.png b/campi_flegrei_example_all_times/20191023/03_reconstruction_20191017_20191023.png new file mode 100644 index 00000000..657b2a7a Binary files /dev/null and b/campi_flegrei_example_all_times/20191023/03_reconstruction_20191017_20191023.png differ diff --git a/campi_flegrei_example_all_times/20191023/04_residual_20191017_20191023.png b/campi_flegrei_example_all_times/20191023/04_residual_20191017_20191023.png new file mode 100644 index 00000000..eff0e97e Binary files /dev/null and b/campi_flegrei_example_all_times/20191023/04_residual_20191017_20191023.png differ diff --git a/campi_flegrei_example_all_times/20191023/LiCSAlert_figure_with_155_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191023/LiCSAlert_figure_with_155_monitoring_interferograms.png new file mode 100644 index 00000000..181c057d Binary files /dev/null and b/campi_flegrei_example_all_times/20191023/LiCSAlert_figure_with_155_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191023/mask_status.png b/campi_flegrei_example_all_times/20191023/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191023/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191023/volcano_status.txt b/campi_flegrei_example_all_times/20191023/volcano_status.txt new file mode 100644 index 00000000..7dd16597 --- /dev/null +++ b/campi_flegrei_example_all_times/20191023/volcano_status.txt @@ -0,0 +1,2 @@ +1.4493459897936019 +0.34887468287664125 diff --git a/campi_flegrei_example_all_times/20191029/01_cumulative_20141031_20191029.png b/campi_flegrei_example_all_times/20191029/01_cumulative_20141031_20191029.png new file mode 100644 index 00000000..20818d28 Binary files /dev/null and b/campi_flegrei_example_all_times/20191029/01_cumulative_20141031_20191029.png differ diff --git a/campi_flegrei_example_all_times/20191029/02_incremental_20191023_20191029.png b/campi_flegrei_example_all_times/20191029/02_incremental_20191023_20191029.png new file mode 100644 index 00000000..727af667 Binary files /dev/null and b/campi_flegrei_example_all_times/20191029/02_incremental_20191023_20191029.png differ diff --git a/campi_flegrei_example_all_times/20191029/03_reconstruction_20191023_20191029.png b/campi_flegrei_example_all_times/20191029/03_reconstruction_20191023_20191029.png new file mode 100644 index 00000000..6b58be15 Binary files /dev/null and b/campi_flegrei_example_all_times/20191029/03_reconstruction_20191023_20191029.png differ diff --git a/campi_flegrei_example_all_times/20191029/04_residual_20191023_20191029.png b/campi_flegrei_example_all_times/20191029/04_residual_20191023_20191029.png new file mode 100644 index 00000000..ae83188a Binary files /dev/null and b/campi_flegrei_example_all_times/20191029/04_residual_20191023_20191029.png differ diff --git a/campi_flegrei_example_all_times/20191029/LiCSAlert_figure_with_156_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191029/LiCSAlert_figure_with_156_monitoring_interferograms.png new file mode 100644 index 00000000..406f6e1e Binary files /dev/null and b/campi_flegrei_example_all_times/20191029/LiCSAlert_figure_with_156_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191029/mask_status.png b/campi_flegrei_example_all_times/20191029/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191029/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191029/volcano_status.txt b/campi_flegrei_example_all_times/20191029/volcano_status.txt new file mode 100644 index 00000000..a7076157 --- /dev/null +++ b/campi_flegrei_example_all_times/20191029/volcano_status.txt @@ -0,0 +1,2 @@ +0.15802599431672296 +0.5394928962603538 diff --git a/campi_flegrei_example_all_times/20191104/01_cumulative_20141031_20191104.png b/campi_flegrei_example_all_times/20191104/01_cumulative_20141031_20191104.png new file mode 100644 index 00000000..4586e7df Binary files /dev/null and b/campi_flegrei_example_all_times/20191104/01_cumulative_20141031_20191104.png differ diff --git a/campi_flegrei_example_all_times/20191104/02_incremental_20191029_20191104.png b/campi_flegrei_example_all_times/20191104/02_incremental_20191029_20191104.png new file mode 100644 index 00000000..d91a4f34 Binary files /dev/null and b/campi_flegrei_example_all_times/20191104/02_incremental_20191029_20191104.png differ diff --git a/campi_flegrei_example_all_times/20191104/03_reconstruction_20191029_20191104.png b/campi_flegrei_example_all_times/20191104/03_reconstruction_20191029_20191104.png new file mode 100644 index 00000000..e10ba53d Binary files /dev/null and b/campi_flegrei_example_all_times/20191104/03_reconstruction_20191029_20191104.png differ diff --git a/campi_flegrei_example_all_times/20191104/04_residual_20191029_20191104.png b/campi_flegrei_example_all_times/20191104/04_residual_20191029_20191104.png new file mode 100644 index 00000000..cb6bcc33 Binary files /dev/null and b/campi_flegrei_example_all_times/20191104/04_residual_20191029_20191104.png differ diff --git a/campi_flegrei_example_all_times/20191104/LiCSAlert_figure_with_157_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191104/LiCSAlert_figure_with_157_monitoring_interferograms.png new file mode 100644 index 00000000..51c1243b Binary files /dev/null and b/campi_flegrei_example_all_times/20191104/LiCSAlert_figure_with_157_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191104/mask_status.png b/campi_flegrei_example_all_times/20191104/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191104/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191104/volcano_status.txt b/campi_flegrei_example_all_times/20191104/volcano_status.txt new file mode 100644 index 00000000..abf1176a --- /dev/null +++ b/campi_flegrei_example_all_times/20191104/volcano_status.txt @@ -0,0 +1,2 @@ +2.283796945689387 +1.0766121602063194 diff --git a/campi_flegrei_example_all_times/20191116/01_cumulative_20141031_20191116.png b/campi_flegrei_example_all_times/20191116/01_cumulative_20141031_20191116.png new file mode 100644 index 00000000..28f1807d Binary files /dev/null and b/campi_flegrei_example_all_times/20191116/01_cumulative_20141031_20191116.png differ diff --git a/campi_flegrei_example_all_times/20191116/02_incremental_20191104_20191116.png b/campi_flegrei_example_all_times/20191116/02_incremental_20191104_20191116.png new file mode 100644 index 00000000..b7dd028e Binary files /dev/null and b/campi_flegrei_example_all_times/20191116/02_incremental_20191104_20191116.png differ diff --git a/campi_flegrei_example_all_times/20191116/03_reconstruction_20191104_20191116.png b/campi_flegrei_example_all_times/20191116/03_reconstruction_20191104_20191116.png new file mode 100644 index 00000000..3510fc67 Binary files /dev/null and b/campi_flegrei_example_all_times/20191116/03_reconstruction_20191104_20191116.png differ diff --git a/campi_flegrei_example_all_times/20191116/04_residual_20191104_20191116.png b/campi_flegrei_example_all_times/20191116/04_residual_20191104_20191116.png new file mode 100644 index 00000000..43811488 Binary files /dev/null and b/campi_flegrei_example_all_times/20191116/04_residual_20191104_20191116.png differ diff --git a/campi_flegrei_example_all_times/20191116/LiCSAlert_figure_with_158_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191116/LiCSAlert_figure_with_158_monitoring_interferograms.png new file mode 100644 index 00000000..d7cbdb23 Binary files /dev/null and b/campi_flegrei_example_all_times/20191116/LiCSAlert_figure_with_158_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191116/mask_status.png b/campi_flegrei_example_all_times/20191116/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191116/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191116/volcano_status.txt b/campi_flegrei_example_all_times/20191116/volcano_status.txt new file mode 100644 index 00000000..0daa4d91 --- /dev/null +++ b/campi_flegrei_example_all_times/20191116/volcano_status.txt @@ -0,0 +1,2 @@ +2.471926075426673 +3.381274000739247 diff --git a/campi_flegrei_example_all_times/20191122/01_cumulative_20141031_20191122.png b/campi_flegrei_example_all_times/20191122/01_cumulative_20141031_20191122.png new file mode 100644 index 00000000..aea7ab46 Binary files /dev/null and b/campi_flegrei_example_all_times/20191122/01_cumulative_20141031_20191122.png differ diff --git a/campi_flegrei_example_all_times/20191122/02_incremental_20191116_20191122.png b/campi_flegrei_example_all_times/20191122/02_incremental_20191116_20191122.png new file mode 100644 index 00000000..26fafb03 Binary files /dev/null and b/campi_flegrei_example_all_times/20191122/02_incremental_20191116_20191122.png differ diff --git a/campi_flegrei_example_all_times/20191122/03_reconstruction_20191116_20191122.png b/campi_flegrei_example_all_times/20191122/03_reconstruction_20191116_20191122.png new file mode 100644 index 00000000..edf4ffc2 Binary files /dev/null and b/campi_flegrei_example_all_times/20191122/03_reconstruction_20191116_20191122.png differ diff --git a/campi_flegrei_example_all_times/20191122/04_residual_20191116_20191122.png b/campi_flegrei_example_all_times/20191122/04_residual_20191116_20191122.png new file mode 100644 index 00000000..af6a5fd6 Binary files /dev/null and b/campi_flegrei_example_all_times/20191122/04_residual_20191116_20191122.png differ diff --git a/campi_flegrei_example_all_times/20191122/LiCSAlert_figure_with_159_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191122/LiCSAlert_figure_with_159_monitoring_interferograms.png new file mode 100644 index 00000000..8fbac71f Binary files /dev/null and b/campi_flegrei_example_all_times/20191122/LiCSAlert_figure_with_159_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191122/mask_status.png b/campi_flegrei_example_all_times/20191122/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191122/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191122/volcano_status.txt b/campi_flegrei_example_all_times/20191122/volcano_status.txt new file mode 100644 index 00000000..6b072012 --- /dev/null +++ b/campi_flegrei_example_all_times/20191122/volcano_status.txt @@ -0,0 +1,2 @@ +1.8470353675164957 +0.3513940651497717 diff --git a/campi_flegrei_example_all_times/20191128/01_cumulative_20141031_20191128.png b/campi_flegrei_example_all_times/20191128/01_cumulative_20141031_20191128.png new file mode 100644 index 00000000..5de59dc9 Binary files /dev/null and b/campi_flegrei_example_all_times/20191128/01_cumulative_20141031_20191128.png differ diff --git a/campi_flegrei_example_all_times/20191128/02_incremental_20191122_20191128.png b/campi_flegrei_example_all_times/20191128/02_incremental_20191122_20191128.png new file mode 100644 index 00000000..12b6a31e Binary files /dev/null and b/campi_flegrei_example_all_times/20191128/02_incremental_20191122_20191128.png differ diff --git a/campi_flegrei_example_all_times/20191128/03_reconstruction_20191122_20191128.png b/campi_flegrei_example_all_times/20191128/03_reconstruction_20191122_20191128.png new file mode 100644 index 00000000..cedbe9d0 Binary files /dev/null and b/campi_flegrei_example_all_times/20191128/03_reconstruction_20191122_20191128.png differ diff --git a/campi_flegrei_example_all_times/20191128/04_residual_20191122_20191128.png b/campi_flegrei_example_all_times/20191128/04_residual_20191122_20191128.png new file mode 100644 index 00000000..be94b28f Binary files /dev/null and b/campi_flegrei_example_all_times/20191128/04_residual_20191122_20191128.png differ diff --git a/campi_flegrei_example_all_times/20191128/LiCSAlert_figure_with_160_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191128/LiCSAlert_figure_with_160_monitoring_interferograms.png new file mode 100644 index 00000000..f1e35643 Binary files /dev/null and b/campi_flegrei_example_all_times/20191128/LiCSAlert_figure_with_160_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191128/mask_status.png b/campi_flegrei_example_all_times/20191128/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191128/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191128/volcano_status.txt b/campi_flegrei_example_all_times/20191128/volcano_status.txt new file mode 100644 index 00000000..628bb40a --- /dev/null +++ b/campi_flegrei_example_all_times/20191128/volcano_status.txt @@ -0,0 +1,2 @@ +0.7331069363374355 +8.500141896140386 diff --git a/campi_flegrei_example_all_times/20191204/01_cumulative_20141031_20191204.png b/campi_flegrei_example_all_times/20191204/01_cumulative_20141031_20191204.png new file mode 100644 index 00000000..63277c2b Binary files /dev/null and b/campi_flegrei_example_all_times/20191204/01_cumulative_20141031_20191204.png differ diff --git a/campi_flegrei_example_all_times/20191204/02_incremental_20191128_20191204.png b/campi_flegrei_example_all_times/20191204/02_incremental_20191128_20191204.png new file mode 100644 index 00000000..ac778c72 Binary files /dev/null and b/campi_flegrei_example_all_times/20191204/02_incremental_20191128_20191204.png differ diff --git a/campi_flegrei_example_all_times/20191204/03_reconstruction_20191128_20191204.png b/campi_flegrei_example_all_times/20191204/03_reconstruction_20191128_20191204.png new file mode 100644 index 00000000..3792449d Binary files /dev/null and b/campi_flegrei_example_all_times/20191204/03_reconstruction_20191128_20191204.png differ diff --git a/campi_flegrei_example_all_times/20191204/04_residual_20191128_20191204.png b/campi_flegrei_example_all_times/20191204/04_residual_20191128_20191204.png new file mode 100644 index 00000000..be5d090b Binary files /dev/null and b/campi_flegrei_example_all_times/20191204/04_residual_20191128_20191204.png differ diff --git a/campi_flegrei_example_all_times/20191204/LiCSAlert_figure_with_161_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191204/LiCSAlert_figure_with_161_monitoring_interferograms.png new file mode 100644 index 00000000..611725b8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191204/LiCSAlert_figure_with_161_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191204/mask_status.png b/campi_flegrei_example_all_times/20191204/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191204/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191204/volcano_status.txt b/campi_flegrei_example_all_times/20191204/volcano_status.txt new file mode 100644 index 00000000..d557fcec --- /dev/null +++ b/campi_flegrei_example_all_times/20191204/volcano_status.txt @@ -0,0 +1,2 @@ +1.7217275745795169 +1.3965784648856117 diff --git a/campi_flegrei_example_all_times/20191210/01_cumulative_20141031_20191210.png b/campi_flegrei_example_all_times/20191210/01_cumulative_20141031_20191210.png new file mode 100644 index 00000000..0a92cf36 Binary files /dev/null and b/campi_flegrei_example_all_times/20191210/01_cumulative_20141031_20191210.png differ diff --git a/campi_flegrei_example_all_times/20191210/02_incremental_20191204_20191210.png b/campi_flegrei_example_all_times/20191210/02_incremental_20191204_20191210.png new file mode 100644 index 00000000..5de59c2c Binary files /dev/null and b/campi_flegrei_example_all_times/20191210/02_incremental_20191204_20191210.png differ diff --git a/campi_flegrei_example_all_times/20191210/03_reconstruction_20191204_20191210.png b/campi_flegrei_example_all_times/20191210/03_reconstruction_20191204_20191210.png new file mode 100644 index 00000000..d6f1738f Binary files /dev/null and b/campi_flegrei_example_all_times/20191210/03_reconstruction_20191204_20191210.png differ diff --git a/campi_flegrei_example_all_times/20191210/04_residual_20191204_20191210.png b/campi_flegrei_example_all_times/20191210/04_residual_20191204_20191210.png new file mode 100644 index 00000000..bc979678 Binary files /dev/null and b/campi_flegrei_example_all_times/20191210/04_residual_20191204_20191210.png differ diff --git a/campi_flegrei_example_all_times/20191210/LiCSAlert_figure_with_162_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191210/LiCSAlert_figure_with_162_monitoring_interferograms.png new file mode 100644 index 00000000..d327c968 Binary files /dev/null and b/campi_flegrei_example_all_times/20191210/LiCSAlert_figure_with_162_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191210/mask_status.png b/campi_flegrei_example_all_times/20191210/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191210/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191210/volcano_status.txt b/campi_flegrei_example_all_times/20191210/volcano_status.txt new file mode 100644 index 00000000..013e78ee --- /dev/null +++ b/campi_flegrei_example_all_times/20191210/volcano_status.txt @@ -0,0 +1,2 @@ +1.3746131567601312 +0.9699834704526675 diff --git a/campi_flegrei_example_all_times/20191216/01_cumulative_20141031_20191216.png b/campi_flegrei_example_all_times/20191216/01_cumulative_20141031_20191216.png new file mode 100644 index 00000000..a986b8ff Binary files /dev/null and b/campi_flegrei_example_all_times/20191216/01_cumulative_20141031_20191216.png differ diff --git a/campi_flegrei_example_all_times/20191216/02_incremental_20191210_20191216.png b/campi_flegrei_example_all_times/20191216/02_incremental_20191210_20191216.png new file mode 100644 index 00000000..2061fe25 Binary files /dev/null and b/campi_flegrei_example_all_times/20191216/02_incremental_20191210_20191216.png differ diff --git a/campi_flegrei_example_all_times/20191216/03_reconstruction_20191210_20191216.png b/campi_flegrei_example_all_times/20191216/03_reconstruction_20191210_20191216.png new file mode 100644 index 00000000..5a446cb7 Binary files /dev/null and b/campi_flegrei_example_all_times/20191216/03_reconstruction_20191210_20191216.png differ diff --git a/campi_flegrei_example_all_times/20191216/04_residual_20191210_20191216.png b/campi_flegrei_example_all_times/20191216/04_residual_20191210_20191216.png new file mode 100644 index 00000000..eadb8d92 Binary files /dev/null and b/campi_flegrei_example_all_times/20191216/04_residual_20191210_20191216.png differ diff --git a/campi_flegrei_example_all_times/20191216/LiCSAlert_figure_with_163_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191216/LiCSAlert_figure_with_163_monitoring_interferograms.png new file mode 100644 index 00000000..f37cebce Binary files /dev/null and b/campi_flegrei_example_all_times/20191216/LiCSAlert_figure_with_163_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191216/mask_status.png b/campi_flegrei_example_all_times/20191216/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191216/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191216/volcano_status.txt b/campi_flegrei_example_all_times/20191216/volcano_status.txt new file mode 100644 index 00000000..948ade7b --- /dev/null +++ b/campi_flegrei_example_all_times/20191216/volcano_status.txt @@ -0,0 +1,2 @@ +0.591904234655962 +0.6753072968861883 diff --git a/campi_flegrei_example_all_times/20191222/01_cumulative_20141031_20191222.png b/campi_flegrei_example_all_times/20191222/01_cumulative_20141031_20191222.png new file mode 100644 index 00000000..999b6a37 Binary files /dev/null and b/campi_flegrei_example_all_times/20191222/01_cumulative_20141031_20191222.png differ diff --git a/campi_flegrei_example_all_times/20191222/02_incremental_20191216_20191222.png b/campi_flegrei_example_all_times/20191222/02_incremental_20191216_20191222.png new file mode 100644 index 00000000..83d3a483 Binary files /dev/null and b/campi_flegrei_example_all_times/20191222/02_incremental_20191216_20191222.png differ diff --git a/campi_flegrei_example_all_times/20191222/03_reconstruction_20191216_20191222.png b/campi_flegrei_example_all_times/20191222/03_reconstruction_20191216_20191222.png new file mode 100644 index 00000000..59b32d1c Binary files /dev/null and b/campi_flegrei_example_all_times/20191222/03_reconstruction_20191216_20191222.png differ diff --git a/campi_flegrei_example_all_times/20191222/04_residual_20191216_20191222.png b/campi_flegrei_example_all_times/20191222/04_residual_20191216_20191222.png new file mode 100644 index 00000000..24b25de9 Binary files /dev/null and b/campi_flegrei_example_all_times/20191222/04_residual_20191216_20191222.png differ diff --git a/campi_flegrei_example_all_times/20191222/LiCSAlert_figure_with_164_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191222/LiCSAlert_figure_with_164_monitoring_interferograms.png new file mode 100644 index 00000000..6b3ee482 Binary files /dev/null and b/campi_flegrei_example_all_times/20191222/LiCSAlert_figure_with_164_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191222/mask_status.png b/campi_flegrei_example_all_times/20191222/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191222/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191222/volcano_status.txt b/campi_flegrei_example_all_times/20191222/volcano_status.txt new file mode 100644 index 00000000..60bce056 --- /dev/null +++ b/campi_flegrei_example_all_times/20191222/volcano_status.txt @@ -0,0 +1,2 @@ +2.117354660376321 +2.9358474129802867 diff --git a/campi_flegrei_example_all_times/20191228/01_cumulative_20141031_20191228.png b/campi_flegrei_example_all_times/20191228/01_cumulative_20141031_20191228.png new file mode 100644 index 00000000..a4141fb0 Binary files /dev/null and b/campi_flegrei_example_all_times/20191228/01_cumulative_20141031_20191228.png differ diff --git a/campi_flegrei_example_all_times/20191228/02_incremental_20191222_20191228.png b/campi_flegrei_example_all_times/20191228/02_incremental_20191222_20191228.png new file mode 100644 index 00000000..e944f195 Binary files /dev/null and b/campi_flegrei_example_all_times/20191228/02_incremental_20191222_20191228.png differ diff --git a/campi_flegrei_example_all_times/20191228/03_reconstruction_20191222_20191228.png b/campi_flegrei_example_all_times/20191228/03_reconstruction_20191222_20191228.png new file mode 100644 index 00000000..6f8c4d4c Binary files /dev/null and b/campi_flegrei_example_all_times/20191228/03_reconstruction_20191222_20191228.png differ diff --git a/campi_flegrei_example_all_times/20191228/04_residual_20191222_20191228.png b/campi_flegrei_example_all_times/20191228/04_residual_20191222_20191228.png new file mode 100644 index 00000000..1e7ef373 Binary files /dev/null and b/campi_flegrei_example_all_times/20191228/04_residual_20191222_20191228.png differ diff --git a/campi_flegrei_example_all_times/20191228/LiCSAlert_figure_with_165_monitoring_interferograms.png b/campi_flegrei_example_all_times/20191228/LiCSAlert_figure_with_165_monitoring_interferograms.png new file mode 100644 index 00000000..ab842456 Binary files /dev/null and b/campi_flegrei_example_all_times/20191228/LiCSAlert_figure_with_165_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20191228/mask_status.png b/campi_flegrei_example_all_times/20191228/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20191228/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20191228/volcano_status.txt b/campi_flegrei_example_all_times/20191228/volcano_status.txt new file mode 100644 index 00000000..a7fb05ed --- /dev/null +++ b/campi_flegrei_example_all_times/20191228/volcano_status.txt @@ -0,0 +1,2 @@ +1.1044437078772438 +1.2925659000268914 diff --git a/campi_flegrei_example_all_times/20200103/01_cumulative_20141031_20200103.png b/campi_flegrei_example_all_times/20200103/01_cumulative_20141031_20200103.png new file mode 100644 index 00000000..58e44088 Binary files /dev/null and b/campi_flegrei_example_all_times/20200103/01_cumulative_20141031_20200103.png differ diff --git a/campi_flegrei_example_all_times/20200103/02_incremental_20191228_20200103.png b/campi_flegrei_example_all_times/20200103/02_incremental_20191228_20200103.png new file mode 100644 index 00000000..f3beb8c4 Binary files /dev/null and b/campi_flegrei_example_all_times/20200103/02_incremental_20191228_20200103.png differ diff --git a/campi_flegrei_example_all_times/20200103/03_reconstruction_20191228_20200103.png b/campi_flegrei_example_all_times/20200103/03_reconstruction_20191228_20200103.png new file mode 100644 index 00000000..95b989ba Binary files /dev/null and b/campi_flegrei_example_all_times/20200103/03_reconstruction_20191228_20200103.png differ diff --git a/campi_flegrei_example_all_times/20200103/04_residual_20191228_20200103.png b/campi_flegrei_example_all_times/20200103/04_residual_20191228_20200103.png new file mode 100644 index 00000000..1862adbd Binary files /dev/null and b/campi_flegrei_example_all_times/20200103/04_residual_20191228_20200103.png differ diff --git a/campi_flegrei_example_all_times/20200103/LiCSAlert_figure_with_166_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200103/LiCSAlert_figure_with_166_monitoring_interferograms.png new file mode 100644 index 00000000..471fb771 Binary files /dev/null and b/campi_flegrei_example_all_times/20200103/LiCSAlert_figure_with_166_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200103/mask_status.png b/campi_flegrei_example_all_times/20200103/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200103/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200103/volcano_status.txt b/campi_flegrei_example_all_times/20200103/volcano_status.txt new file mode 100644 index 00000000..6a342506 --- /dev/null +++ b/campi_flegrei_example_all_times/20200103/volcano_status.txt @@ -0,0 +1,2 @@ +0.5522238650237971 +1.6784304443159004 diff --git a/campi_flegrei_example_all_times/20200109/01_cumulative_20141031_20200109.png b/campi_flegrei_example_all_times/20200109/01_cumulative_20141031_20200109.png new file mode 100644 index 00000000..eed095ca Binary files /dev/null and b/campi_flegrei_example_all_times/20200109/01_cumulative_20141031_20200109.png differ diff --git a/campi_flegrei_example_all_times/20200109/02_incremental_20200103_20200109.png b/campi_flegrei_example_all_times/20200109/02_incremental_20200103_20200109.png new file mode 100644 index 00000000..2cfd99b6 Binary files /dev/null and b/campi_flegrei_example_all_times/20200109/02_incremental_20200103_20200109.png differ diff --git a/campi_flegrei_example_all_times/20200109/03_reconstruction_20200103_20200109.png b/campi_flegrei_example_all_times/20200109/03_reconstruction_20200103_20200109.png new file mode 100644 index 00000000..d1b467d9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200109/03_reconstruction_20200103_20200109.png differ diff --git a/campi_flegrei_example_all_times/20200109/04_residual_20200103_20200109.png b/campi_flegrei_example_all_times/20200109/04_residual_20200103_20200109.png new file mode 100644 index 00000000..9588b466 Binary files /dev/null and b/campi_flegrei_example_all_times/20200109/04_residual_20200103_20200109.png differ diff --git a/campi_flegrei_example_all_times/20200109/LiCSAlert_figure_with_167_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200109/LiCSAlert_figure_with_167_monitoring_interferograms.png new file mode 100644 index 00000000..66cba8b5 Binary files /dev/null and b/campi_flegrei_example_all_times/20200109/LiCSAlert_figure_with_167_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200109/mask_status.png b/campi_flegrei_example_all_times/20200109/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200109/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200109/volcano_status.txt b/campi_flegrei_example_all_times/20200109/volcano_status.txt new file mode 100644 index 00000000..a6a8a6ba --- /dev/null +++ b/campi_flegrei_example_all_times/20200109/volcano_status.txt @@ -0,0 +1,2 @@ +0.8109410304164171 +1.8767712958968936 diff --git a/campi_flegrei_example_all_times/20200115/01_cumulative_20141031_20200115.png b/campi_flegrei_example_all_times/20200115/01_cumulative_20141031_20200115.png new file mode 100644 index 00000000..58e753e0 Binary files /dev/null and b/campi_flegrei_example_all_times/20200115/01_cumulative_20141031_20200115.png differ diff --git a/campi_flegrei_example_all_times/20200115/02_incremental_20200109_20200115.png b/campi_flegrei_example_all_times/20200115/02_incremental_20200109_20200115.png new file mode 100644 index 00000000..0ab622c8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200115/02_incremental_20200109_20200115.png differ diff --git a/campi_flegrei_example_all_times/20200115/03_reconstruction_20200109_20200115.png b/campi_flegrei_example_all_times/20200115/03_reconstruction_20200109_20200115.png new file mode 100644 index 00000000..e7910147 Binary files /dev/null and b/campi_flegrei_example_all_times/20200115/03_reconstruction_20200109_20200115.png differ diff --git a/campi_flegrei_example_all_times/20200115/04_residual_20200109_20200115.png b/campi_flegrei_example_all_times/20200115/04_residual_20200109_20200115.png new file mode 100644 index 00000000..429f12eb Binary files /dev/null and b/campi_flegrei_example_all_times/20200115/04_residual_20200109_20200115.png differ diff --git a/campi_flegrei_example_all_times/20200115/LiCSAlert_figure_with_168_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200115/LiCSAlert_figure_with_168_monitoring_interferograms.png new file mode 100644 index 00000000..a2d6cd40 Binary files /dev/null and b/campi_flegrei_example_all_times/20200115/LiCSAlert_figure_with_168_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200115/mask_status.png b/campi_flegrei_example_all_times/20200115/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200115/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200115/volcano_status.txt b/campi_flegrei_example_all_times/20200115/volcano_status.txt new file mode 100644 index 00000000..0440c94b --- /dev/null +++ b/campi_flegrei_example_all_times/20200115/volcano_status.txt @@ -0,0 +1,2 @@ +0.03392647068412863 +2.1623201786631645 diff --git a/campi_flegrei_example_all_times/20200121/01_cumulative_20141031_20200121.png b/campi_flegrei_example_all_times/20200121/01_cumulative_20141031_20200121.png new file mode 100644 index 00000000..8ae366c9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200121/01_cumulative_20141031_20200121.png differ diff --git a/campi_flegrei_example_all_times/20200121/02_incremental_20200115_20200121.png b/campi_flegrei_example_all_times/20200121/02_incremental_20200115_20200121.png new file mode 100644 index 00000000..e29420ee Binary files /dev/null and b/campi_flegrei_example_all_times/20200121/02_incremental_20200115_20200121.png differ diff --git a/campi_flegrei_example_all_times/20200121/03_reconstruction_20200115_20200121.png b/campi_flegrei_example_all_times/20200121/03_reconstruction_20200115_20200121.png new file mode 100644 index 00000000..58bf6943 Binary files /dev/null and b/campi_flegrei_example_all_times/20200121/03_reconstruction_20200115_20200121.png differ diff --git a/campi_flegrei_example_all_times/20200121/04_residual_20200115_20200121.png b/campi_flegrei_example_all_times/20200121/04_residual_20200115_20200121.png new file mode 100644 index 00000000..59c5e1af Binary files /dev/null and b/campi_flegrei_example_all_times/20200121/04_residual_20200115_20200121.png differ diff --git a/campi_flegrei_example_all_times/20200121/LiCSAlert_figure_with_169_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200121/LiCSAlert_figure_with_169_monitoring_interferograms.png new file mode 100644 index 00000000..8d0109b4 Binary files /dev/null and b/campi_flegrei_example_all_times/20200121/LiCSAlert_figure_with_169_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200121/mask_status.png b/campi_flegrei_example_all_times/20200121/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200121/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200121/volcano_status.txt b/campi_flegrei_example_all_times/20200121/volcano_status.txt new file mode 100644 index 00000000..92500e68 --- /dev/null +++ b/campi_flegrei_example_all_times/20200121/volcano_status.txt @@ -0,0 +1,2 @@ +0.41782669209774437 +1.5364215536139034 diff --git a/campi_flegrei_example_all_times/20200127/01_cumulative_20141031_20200127.png b/campi_flegrei_example_all_times/20200127/01_cumulative_20141031_20200127.png new file mode 100644 index 00000000..c24c61e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200127/01_cumulative_20141031_20200127.png differ diff --git a/campi_flegrei_example_all_times/20200127/02_incremental_20200121_20200127.png b/campi_flegrei_example_all_times/20200127/02_incremental_20200121_20200127.png new file mode 100644 index 00000000..7818ef9f Binary files /dev/null and b/campi_flegrei_example_all_times/20200127/02_incremental_20200121_20200127.png differ diff --git a/campi_flegrei_example_all_times/20200127/03_reconstruction_20200121_20200127.png b/campi_flegrei_example_all_times/20200127/03_reconstruction_20200121_20200127.png new file mode 100644 index 00000000..c8b474aa Binary files /dev/null and b/campi_flegrei_example_all_times/20200127/03_reconstruction_20200121_20200127.png differ diff --git a/campi_flegrei_example_all_times/20200127/04_residual_20200121_20200127.png b/campi_flegrei_example_all_times/20200127/04_residual_20200121_20200127.png new file mode 100644 index 00000000..b1cae5cf Binary files /dev/null and b/campi_flegrei_example_all_times/20200127/04_residual_20200121_20200127.png differ diff --git a/campi_flegrei_example_all_times/20200127/LiCSAlert_figure_with_170_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200127/LiCSAlert_figure_with_170_monitoring_interferograms.png new file mode 100644 index 00000000..0793c4cc Binary files /dev/null and b/campi_flegrei_example_all_times/20200127/LiCSAlert_figure_with_170_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200127/mask_status.png b/campi_flegrei_example_all_times/20200127/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200127/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200127/volcano_status.txt b/campi_flegrei_example_all_times/20200127/volcano_status.txt new file mode 100644 index 00000000..c388b2c4 --- /dev/null +++ b/campi_flegrei_example_all_times/20200127/volcano_status.txt @@ -0,0 +1,2 @@ +0.24536550434635393 +1.5292610808508613 diff --git a/campi_flegrei_example_all_times/20200202/01_cumulative_20141031_20200202.png b/campi_flegrei_example_all_times/20200202/01_cumulative_20141031_20200202.png new file mode 100644 index 00000000..898d63b9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200202/01_cumulative_20141031_20200202.png differ diff --git a/campi_flegrei_example_all_times/20200202/02_incremental_20200127_20200202.png b/campi_flegrei_example_all_times/20200202/02_incremental_20200127_20200202.png new file mode 100644 index 00000000..dd7974cb Binary files /dev/null and b/campi_flegrei_example_all_times/20200202/02_incremental_20200127_20200202.png differ diff --git a/campi_flegrei_example_all_times/20200202/03_reconstruction_20200127_20200202.png b/campi_flegrei_example_all_times/20200202/03_reconstruction_20200127_20200202.png new file mode 100644 index 00000000..6a04be40 Binary files /dev/null and b/campi_flegrei_example_all_times/20200202/03_reconstruction_20200127_20200202.png differ diff --git a/campi_flegrei_example_all_times/20200202/04_residual_20200127_20200202.png b/campi_flegrei_example_all_times/20200202/04_residual_20200127_20200202.png new file mode 100644 index 00000000..acb4acdc Binary files /dev/null and b/campi_flegrei_example_all_times/20200202/04_residual_20200127_20200202.png differ diff --git a/campi_flegrei_example_all_times/20200202/LiCSAlert_figure_with_171_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200202/LiCSAlert_figure_with_171_monitoring_interferograms.png new file mode 100644 index 00000000..8b373a22 Binary files /dev/null and b/campi_flegrei_example_all_times/20200202/LiCSAlert_figure_with_171_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200202/mask_status.png b/campi_flegrei_example_all_times/20200202/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200202/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200202/volcano_status.txt b/campi_flegrei_example_all_times/20200202/volcano_status.txt new file mode 100644 index 00000000..ef4c28fe --- /dev/null +++ b/campi_flegrei_example_all_times/20200202/volcano_status.txt @@ -0,0 +1,2 @@ +0.6801956200668702 +0.6580673651131942 diff --git a/campi_flegrei_example_all_times/20200208/01_cumulative_20141031_20200208.png b/campi_flegrei_example_all_times/20200208/01_cumulative_20141031_20200208.png new file mode 100644 index 00000000..54f15c5a Binary files /dev/null and b/campi_flegrei_example_all_times/20200208/01_cumulative_20141031_20200208.png differ diff --git a/campi_flegrei_example_all_times/20200208/02_incremental_20200202_20200208.png b/campi_flegrei_example_all_times/20200208/02_incremental_20200202_20200208.png new file mode 100644 index 00000000..06b0a3ab Binary files /dev/null and b/campi_flegrei_example_all_times/20200208/02_incremental_20200202_20200208.png differ diff --git a/campi_flegrei_example_all_times/20200208/03_reconstruction_20200202_20200208.png b/campi_flegrei_example_all_times/20200208/03_reconstruction_20200202_20200208.png new file mode 100644 index 00000000..3cc7c131 Binary files /dev/null and b/campi_flegrei_example_all_times/20200208/03_reconstruction_20200202_20200208.png differ diff --git a/campi_flegrei_example_all_times/20200208/04_residual_20200202_20200208.png b/campi_flegrei_example_all_times/20200208/04_residual_20200202_20200208.png new file mode 100644 index 00000000..81747dd3 Binary files /dev/null and b/campi_flegrei_example_all_times/20200208/04_residual_20200202_20200208.png differ diff --git a/campi_flegrei_example_all_times/20200208/LiCSAlert_figure_with_172_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200208/LiCSAlert_figure_with_172_monitoring_interferograms.png new file mode 100644 index 00000000..f1225eb0 Binary files /dev/null and b/campi_flegrei_example_all_times/20200208/LiCSAlert_figure_with_172_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200208/mask_status.png b/campi_flegrei_example_all_times/20200208/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200208/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200208/volcano_status.txt b/campi_flegrei_example_all_times/20200208/volcano_status.txt new file mode 100644 index 00000000..b13d691d --- /dev/null +++ b/campi_flegrei_example_all_times/20200208/volcano_status.txt @@ -0,0 +1,2 @@ +0.04896131009871775 +1.2966252817542483 diff --git a/campi_flegrei_example_all_times/20200214/01_cumulative_20141031_20200214.png b/campi_flegrei_example_all_times/20200214/01_cumulative_20141031_20200214.png new file mode 100644 index 00000000..1fe67943 Binary files /dev/null and b/campi_flegrei_example_all_times/20200214/01_cumulative_20141031_20200214.png differ diff --git a/campi_flegrei_example_all_times/20200214/02_incremental_20200208_20200214.png b/campi_flegrei_example_all_times/20200214/02_incremental_20200208_20200214.png new file mode 100644 index 00000000..4eff6934 Binary files /dev/null and b/campi_flegrei_example_all_times/20200214/02_incremental_20200208_20200214.png differ diff --git a/campi_flegrei_example_all_times/20200214/03_reconstruction_20200208_20200214.png b/campi_flegrei_example_all_times/20200214/03_reconstruction_20200208_20200214.png new file mode 100644 index 00000000..6aafe5ce Binary files /dev/null and b/campi_flegrei_example_all_times/20200214/03_reconstruction_20200208_20200214.png differ diff --git a/campi_flegrei_example_all_times/20200214/04_residual_20200208_20200214.png b/campi_flegrei_example_all_times/20200214/04_residual_20200208_20200214.png new file mode 100644 index 00000000..cc7905e9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200214/04_residual_20200208_20200214.png differ diff --git a/campi_flegrei_example_all_times/20200214/LiCSAlert_figure_with_173_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200214/LiCSAlert_figure_with_173_monitoring_interferograms.png new file mode 100644 index 00000000..127d0ed4 Binary files /dev/null and b/campi_flegrei_example_all_times/20200214/LiCSAlert_figure_with_173_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200214/mask_status.png b/campi_flegrei_example_all_times/20200214/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200214/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200214/volcano_status.txt b/campi_flegrei_example_all_times/20200214/volcano_status.txt new file mode 100644 index 00000000..aa8d8781 --- /dev/null +++ b/campi_flegrei_example_all_times/20200214/volcano_status.txt @@ -0,0 +1,2 @@ +0.672163323404145 +1.6815936145215422 diff --git a/campi_flegrei_example_all_times/20200220/01_cumulative_20141031_20200220.png b/campi_flegrei_example_all_times/20200220/01_cumulative_20141031_20200220.png new file mode 100644 index 00000000..a145d063 Binary files /dev/null and b/campi_flegrei_example_all_times/20200220/01_cumulative_20141031_20200220.png differ diff --git a/campi_flegrei_example_all_times/20200220/02_incremental_20200214_20200220.png b/campi_flegrei_example_all_times/20200220/02_incremental_20200214_20200220.png new file mode 100644 index 00000000..9fe0653d Binary files /dev/null and b/campi_flegrei_example_all_times/20200220/02_incremental_20200214_20200220.png differ diff --git a/campi_flegrei_example_all_times/20200220/03_reconstruction_20200214_20200220.png b/campi_flegrei_example_all_times/20200220/03_reconstruction_20200214_20200220.png new file mode 100644 index 00000000..21159ef4 Binary files /dev/null and b/campi_flegrei_example_all_times/20200220/03_reconstruction_20200214_20200220.png differ diff --git a/campi_flegrei_example_all_times/20200220/04_residual_20200214_20200220.png b/campi_flegrei_example_all_times/20200220/04_residual_20200214_20200220.png new file mode 100644 index 00000000..f9e47e0a Binary files /dev/null and b/campi_flegrei_example_all_times/20200220/04_residual_20200214_20200220.png differ diff --git a/campi_flegrei_example_all_times/20200220/LiCSAlert_figure_with_174_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200220/LiCSAlert_figure_with_174_monitoring_interferograms.png new file mode 100644 index 00000000..95fd3a11 Binary files /dev/null and b/campi_flegrei_example_all_times/20200220/LiCSAlert_figure_with_174_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200220/mask_status.png b/campi_flegrei_example_all_times/20200220/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200220/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200220/volcano_status.txt b/campi_flegrei_example_all_times/20200220/volcano_status.txt new file mode 100644 index 00000000..542b2434 --- /dev/null +++ b/campi_flegrei_example_all_times/20200220/volcano_status.txt @@ -0,0 +1,2 @@ +0.16871407454620715 +0.08914264182758262 diff --git a/campi_flegrei_example_all_times/20200226/01_cumulative_20141031_20200226.png b/campi_flegrei_example_all_times/20200226/01_cumulative_20141031_20200226.png new file mode 100644 index 00000000..62ee5fbf Binary files /dev/null and b/campi_flegrei_example_all_times/20200226/01_cumulative_20141031_20200226.png differ diff --git a/campi_flegrei_example_all_times/20200226/02_incremental_20200220_20200226.png b/campi_flegrei_example_all_times/20200226/02_incremental_20200220_20200226.png new file mode 100644 index 00000000..8473f571 Binary files /dev/null and b/campi_flegrei_example_all_times/20200226/02_incremental_20200220_20200226.png differ diff --git a/campi_flegrei_example_all_times/20200226/03_reconstruction_20200220_20200226.png b/campi_flegrei_example_all_times/20200226/03_reconstruction_20200220_20200226.png new file mode 100644 index 00000000..68219e08 Binary files /dev/null and b/campi_flegrei_example_all_times/20200226/03_reconstruction_20200220_20200226.png differ diff --git a/campi_flegrei_example_all_times/20200226/04_residual_20200220_20200226.png b/campi_flegrei_example_all_times/20200226/04_residual_20200220_20200226.png new file mode 100644 index 00000000..f45db5ac Binary files /dev/null and b/campi_flegrei_example_all_times/20200226/04_residual_20200220_20200226.png differ diff --git a/campi_flegrei_example_all_times/20200226/LiCSAlert_figure_with_175_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200226/LiCSAlert_figure_with_175_monitoring_interferograms.png new file mode 100644 index 00000000..eb8999db Binary files /dev/null and b/campi_flegrei_example_all_times/20200226/LiCSAlert_figure_with_175_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200226/mask_status.png b/campi_flegrei_example_all_times/20200226/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200226/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200226/volcano_status.txt b/campi_flegrei_example_all_times/20200226/volcano_status.txt new file mode 100644 index 00000000..87d15c7e --- /dev/null +++ b/campi_flegrei_example_all_times/20200226/volcano_status.txt @@ -0,0 +1,2 @@ +0.4740361654514156 +1.0092980807391403 diff --git a/campi_flegrei_example_all_times/20200303/01_cumulative_20141031_20200303.png b/campi_flegrei_example_all_times/20200303/01_cumulative_20141031_20200303.png new file mode 100644 index 00000000..ceb8cccc Binary files /dev/null and b/campi_flegrei_example_all_times/20200303/01_cumulative_20141031_20200303.png differ diff --git a/campi_flegrei_example_all_times/20200303/02_incremental_20200226_20200303.png b/campi_flegrei_example_all_times/20200303/02_incremental_20200226_20200303.png new file mode 100644 index 00000000..b930f84c Binary files /dev/null and b/campi_flegrei_example_all_times/20200303/02_incremental_20200226_20200303.png differ diff --git a/campi_flegrei_example_all_times/20200303/03_reconstruction_20200226_20200303.png b/campi_flegrei_example_all_times/20200303/03_reconstruction_20200226_20200303.png new file mode 100644 index 00000000..cff56060 Binary files /dev/null and b/campi_flegrei_example_all_times/20200303/03_reconstruction_20200226_20200303.png differ diff --git a/campi_flegrei_example_all_times/20200303/04_residual_20200226_20200303.png b/campi_flegrei_example_all_times/20200303/04_residual_20200226_20200303.png new file mode 100644 index 00000000..da80a127 Binary files /dev/null and b/campi_flegrei_example_all_times/20200303/04_residual_20200226_20200303.png differ diff --git a/campi_flegrei_example_all_times/20200303/LiCSAlert_figure_with_176_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200303/LiCSAlert_figure_with_176_monitoring_interferograms.png new file mode 100644 index 00000000..d0b184c9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200303/LiCSAlert_figure_with_176_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200303/mask_status.png b/campi_flegrei_example_all_times/20200303/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200303/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200303/volcano_status.txt b/campi_flegrei_example_all_times/20200303/volcano_status.txt new file mode 100644 index 00000000..0db1c32c --- /dev/null +++ b/campi_flegrei_example_all_times/20200303/volcano_status.txt @@ -0,0 +1,2 @@ +0.3702245842991496 +1.6266817675777026 diff --git a/campi_flegrei_example_all_times/20200309/01_cumulative_20141031_20200309.png b/campi_flegrei_example_all_times/20200309/01_cumulative_20141031_20200309.png new file mode 100644 index 00000000..1134bb40 Binary files /dev/null and b/campi_flegrei_example_all_times/20200309/01_cumulative_20141031_20200309.png differ diff --git a/campi_flegrei_example_all_times/20200309/02_incremental_20200303_20200309.png b/campi_flegrei_example_all_times/20200309/02_incremental_20200303_20200309.png new file mode 100644 index 00000000..9e4b8e35 Binary files /dev/null and b/campi_flegrei_example_all_times/20200309/02_incremental_20200303_20200309.png differ diff --git a/campi_flegrei_example_all_times/20200309/03_reconstruction_20200303_20200309.png b/campi_flegrei_example_all_times/20200309/03_reconstruction_20200303_20200309.png new file mode 100644 index 00000000..7a2bf373 Binary files /dev/null and b/campi_flegrei_example_all_times/20200309/03_reconstruction_20200303_20200309.png differ diff --git a/campi_flegrei_example_all_times/20200309/04_residual_20200303_20200309.png b/campi_flegrei_example_all_times/20200309/04_residual_20200303_20200309.png new file mode 100644 index 00000000..43a883cf Binary files /dev/null and b/campi_flegrei_example_all_times/20200309/04_residual_20200303_20200309.png differ diff --git a/campi_flegrei_example_all_times/20200309/LiCSAlert_figure_with_177_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200309/LiCSAlert_figure_with_177_monitoring_interferograms.png new file mode 100644 index 00000000..69f88590 Binary files /dev/null and b/campi_flegrei_example_all_times/20200309/LiCSAlert_figure_with_177_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200309/mask_status.png b/campi_flegrei_example_all_times/20200309/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200309/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200309/volcano_status.txt b/campi_flegrei_example_all_times/20200309/volcano_status.txt new file mode 100644 index 00000000..7f8b03a9 --- /dev/null +++ b/campi_flegrei_example_all_times/20200309/volcano_status.txt @@ -0,0 +1,2 @@ +0.7219820610872948 +0.3868526138570648 diff --git a/campi_flegrei_example_all_times/20200315/01_cumulative_20141031_20200315.png b/campi_flegrei_example_all_times/20200315/01_cumulative_20141031_20200315.png new file mode 100644 index 00000000..4bd00776 Binary files /dev/null and b/campi_flegrei_example_all_times/20200315/01_cumulative_20141031_20200315.png differ diff --git a/campi_flegrei_example_all_times/20200315/02_incremental_20200309_20200315.png b/campi_flegrei_example_all_times/20200315/02_incremental_20200309_20200315.png new file mode 100644 index 00000000..79e0c0ef Binary files /dev/null and b/campi_flegrei_example_all_times/20200315/02_incremental_20200309_20200315.png differ diff --git a/campi_flegrei_example_all_times/20200315/03_reconstruction_20200309_20200315.png b/campi_flegrei_example_all_times/20200315/03_reconstruction_20200309_20200315.png new file mode 100644 index 00000000..2ada84be Binary files /dev/null and b/campi_flegrei_example_all_times/20200315/03_reconstruction_20200309_20200315.png differ diff --git a/campi_flegrei_example_all_times/20200315/04_residual_20200309_20200315.png b/campi_flegrei_example_all_times/20200315/04_residual_20200309_20200315.png new file mode 100644 index 00000000..85cb3deb Binary files /dev/null and b/campi_flegrei_example_all_times/20200315/04_residual_20200309_20200315.png differ diff --git a/campi_flegrei_example_all_times/20200315/LiCSAlert_figure_with_178_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200315/LiCSAlert_figure_with_178_monitoring_interferograms.png new file mode 100644 index 00000000..1e32850a Binary files /dev/null and b/campi_flegrei_example_all_times/20200315/LiCSAlert_figure_with_178_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200315/mask_status.png b/campi_flegrei_example_all_times/20200315/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200315/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200315/volcano_status.txt b/campi_flegrei_example_all_times/20200315/volcano_status.txt new file mode 100644 index 00000000..45d82727 --- /dev/null +++ b/campi_flegrei_example_all_times/20200315/volcano_status.txt @@ -0,0 +1,2 @@ +0.1998835891695322 +0.5768842210526303 diff --git a/campi_flegrei_example_all_times/20200321/01_cumulative_20141031_20200321.png b/campi_flegrei_example_all_times/20200321/01_cumulative_20141031_20200321.png new file mode 100644 index 00000000..d8883eda Binary files /dev/null and b/campi_flegrei_example_all_times/20200321/01_cumulative_20141031_20200321.png differ diff --git a/campi_flegrei_example_all_times/20200321/02_incremental_20200315_20200321.png b/campi_flegrei_example_all_times/20200321/02_incremental_20200315_20200321.png new file mode 100644 index 00000000..46d92aa4 Binary files /dev/null and b/campi_flegrei_example_all_times/20200321/02_incremental_20200315_20200321.png differ diff --git a/campi_flegrei_example_all_times/20200321/03_reconstruction_20200315_20200321.png b/campi_flegrei_example_all_times/20200321/03_reconstruction_20200315_20200321.png new file mode 100644 index 00000000..b8eabc2c Binary files /dev/null and b/campi_flegrei_example_all_times/20200321/03_reconstruction_20200315_20200321.png differ diff --git a/campi_flegrei_example_all_times/20200321/04_residual_20200315_20200321.png b/campi_flegrei_example_all_times/20200321/04_residual_20200315_20200321.png new file mode 100644 index 00000000..d0881365 Binary files /dev/null and b/campi_flegrei_example_all_times/20200321/04_residual_20200315_20200321.png differ diff --git a/campi_flegrei_example_all_times/20200321/LiCSAlert_figure_with_179_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200321/LiCSAlert_figure_with_179_monitoring_interferograms.png new file mode 100644 index 00000000..96bdeaf4 Binary files /dev/null and b/campi_flegrei_example_all_times/20200321/LiCSAlert_figure_with_179_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200321/mask_status.png b/campi_flegrei_example_all_times/20200321/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200321/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200321/volcano_status.txt b/campi_flegrei_example_all_times/20200321/volcano_status.txt new file mode 100644 index 00000000..24f73a4d --- /dev/null +++ b/campi_flegrei_example_all_times/20200321/volcano_status.txt @@ -0,0 +1,2 @@ +1.2310067139315428 +0.08040879180819704 diff --git a/campi_flegrei_example_all_times/20200402/01_cumulative_20141031_20200402.png b/campi_flegrei_example_all_times/20200402/01_cumulative_20141031_20200402.png new file mode 100644 index 00000000..b63a43a1 Binary files /dev/null and b/campi_flegrei_example_all_times/20200402/01_cumulative_20141031_20200402.png differ diff --git a/campi_flegrei_example_all_times/20200402/02_incremental_20200321_20200402.png b/campi_flegrei_example_all_times/20200402/02_incremental_20200321_20200402.png new file mode 100644 index 00000000..c52ceb28 Binary files /dev/null and b/campi_flegrei_example_all_times/20200402/02_incremental_20200321_20200402.png differ diff --git a/campi_flegrei_example_all_times/20200402/03_reconstruction_20200321_20200402.png b/campi_flegrei_example_all_times/20200402/03_reconstruction_20200321_20200402.png new file mode 100644 index 00000000..bcba4e01 Binary files /dev/null and b/campi_flegrei_example_all_times/20200402/03_reconstruction_20200321_20200402.png differ diff --git a/campi_flegrei_example_all_times/20200402/04_residual_20200321_20200402.png b/campi_flegrei_example_all_times/20200402/04_residual_20200321_20200402.png new file mode 100644 index 00000000..acb68714 Binary files /dev/null and b/campi_flegrei_example_all_times/20200402/04_residual_20200321_20200402.png differ diff --git a/campi_flegrei_example_all_times/20200402/LiCSAlert_figure_with_180_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200402/LiCSAlert_figure_with_180_monitoring_interferograms.png new file mode 100644 index 00000000..fdf032b7 Binary files /dev/null and b/campi_flegrei_example_all_times/20200402/LiCSAlert_figure_with_180_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200402/mask_status.png b/campi_flegrei_example_all_times/20200402/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200402/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200402/volcano_status.txt b/campi_flegrei_example_all_times/20200402/volcano_status.txt new file mode 100644 index 00000000..9eee925d --- /dev/null +++ b/campi_flegrei_example_all_times/20200402/volcano_status.txt @@ -0,0 +1,2 @@ +0.15309775679340776 +0.1929295082886495 diff --git a/campi_flegrei_example_all_times/20200408/01_cumulative_20141031_20200408.png b/campi_flegrei_example_all_times/20200408/01_cumulative_20141031_20200408.png new file mode 100644 index 00000000..fb4831d7 Binary files /dev/null and b/campi_flegrei_example_all_times/20200408/01_cumulative_20141031_20200408.png differ diff --git a/campi_flegrei_example_all_times/20200408/02_incremental_20200402_20200408.png b/campi_flegrei_example_all_times/20200408/02_incremental_20200402_20200408.png new file mode 100644 index 00000000..28bf3baa Binary files /dev/null and b/campi_flegrei_example_all_times/20200408/02_incremental_20200402_20200408.png differ diff --git a/campi_flegrei_example_all_times/20200408/03_reconstruction_20200402_20200408.png b/campi_flegrei_example_all_times/20200408/03_reconstruction_20200402_20200408.png new file mode 100644 index 00000000..bf5814e9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200408/03_reconstruction_20200402_20200408.png differ diff --git a/campi_flegrei_example_all_times/20200408/04_residual_20200402_20200408.png b/campi_flegrei_example_all_times/20200408/04_residual_20200402_20200408.png new file mode 100644 index 00000000..e262e1bd Binary files /dev/null and b/campi_flegrei_example_all_times/20200408/04_residual_20200402_20200408.png differ diff --git a/campi_flegrei_example_all_times/20200408/LiCSAlert_figure_with_181_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200408/LiCSAlert_figure_with_181_monitoring_interferograms.png new file mode 100644 index 00000000..49958449 Binary files /dev/null and b/campi_flegrei_example_all_times/20200408/LiCSAlert_figure_with_181_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200408/mask_status.png b/campi_flegrei_example_all_times/20200408/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200408/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200408/volcano_status.txt b/campi_flegrei_example_all_times/20200408/volcano_status.txt new file mode 100644 index 00000000..d8df2752 --- /dev/null +++ b/campi_flegrei_example_all_times/20200408/volcano_status.txt @@ -0,0 +1,2 @@ +0.6474600488926382 +0.1706916779616117 diff --git a/campi_flegrei_example_all_times/20200414/01_cumulative_20141031_20200414.png b/campi_flegrei_example_all_times/20200414/01_cumulative_20141031_20200414.png new file mode 100644 index 00000000..b4ab2736 Binary files /dev/null and b/campi_flegrei_example_all_times/20200414/01_cumulative_20141031_20200414.png differ diff --git a/campi_flegrei_example_all_times/20200414/02_incremental_20200408_20200414.png b/campi_flegrei_example_all_times/20200414/02_incremental_20200408_20200414.png new file mode 100644 index 00000000..2a225f7a Binary files /dev/null and b/campi_flegrei_example_all_times/20200414/02_incremental_20200408_20200414.png differ diff --git a/campi_flegrei_example_all_times/20200414/03_reconstruction_20200408_20200414.png b/campi_flegrei_example_all_times/20200414/03_reconstruction_20200408_20200414.png new file mode 100644 index 00000000..5e7d2165 Binary files /dev/null and b/campi_flegrei_example_all_times/20200414/03_reconstruction_20200408_20200414.png differ diff --git a/campi_flegrei_example_all_times/20200414/04_residual_20200408_20200414.png b/campi_flegrei_example_all_times/20200414/04_residual_20200408_20200414.png new file mode 100644 index 00000000..6f9a793c Binary files /dev/null and b/campi_flegrei_example_all_times/20200414/04_residual_20200408_20200414.png differ diff --git a/campi_flegrei_example_all_times/20200414/LiCSAlert_figure_with_182_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200414/LiCSAlert_figure_with_182_monitoring_interferograms.png new file mode 100644 index 00000000..9f178065 Binary files /dev/null and b/campi_flegrei_example_all_times/20200414/LiCSAlert_figure_with_182_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200414/mask_status.png b/campi_flegrei_example_all_times/20200414/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200414/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200414/volcano_status.txt b/campi_flegrei_example_all_times/20200414/volcano_status.txt new file mode 100644 index 00000000..8d546e8e --- /dev/null +++ b/campi_flegrei_example_all_times/20200414/volcano_status.txt @@ -0,0 +1,2 @@ +0.14358941157308483 +0.3834996272725356 diff --git a/campi_flegrei_example_all_times/20200420/01_cumulative_20141031_20200420.png b/campi_flegrei_example_all_times/20200420/01_cumulative_20141031_20200420.png new file mode 100644 index 00000000..2796ceb8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200420/01_cumulative_20141031_20200420.png differ diff --git a/campi_flegrei_example_all_times/20200420/02_incremental_20200414_20200420.png b/campi_flegrei_example_all_times/20200420/02_incremental_20200414_20200420.png new file mode 100644 index 00000000..fc358c27 Binary files /dev/null and b/campi_flegrei_example_all_times/20200420/02_incremental_20200414_20200420.png differ diff --git a/campi_flegrei_example_all_times/20200420/03_reconstruction_20200414_20200420.png b/campi_flegrei_example_all_times/20200420/03_reconstruction_20200414_20200420.png new file mode 100644 index 00000000..2a1c67c0 Binary files /dev/null and b/campi_flegrei_example_all_times/20200420/03_reconstruction_20200414_20200420.png differ diff --git a/campi_flegrei_example_all_times/20200420/04_residual_20200414_20200420.png b/campi_flegrei_example_all_times/20200420/04_residual_20200414_20200420.png new file mode 100644 index 00000000..0f198b71 Binary files /dev/null and b/campi_flegrei_example_all_times/20200420/04_residual_20200414_20200420.png differ diff --git a/campi_flegrei_example_all_times/20200420/LiCSAlert_figure_with_183_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200420/LiCSAlert_figure_with_183_monitoring_interferograms.png new file mode 100644 index 00000000..691557ef Binary files /dev/null and b/campi_flegrei_example_all_times/20200420/LiCSAlert_figure_with_183_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200420/mask_status.png b/campi_flegrei_example_all_times/20200420/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200420/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200420/volcano_status.txt b/campi_flegrei_example_all_times/20200420/volcano_status.txt new file mode 100644 index 00000000..f3d593f5 --- /dev/null +++ b/campi_flegrei_example_all_times/20200420/volcano_status.txt @@ -0,0 +1,2 @@ +1.9130903253596379 +0.3673686897948037 diff --git a/campi_flegrei_example_all_times/20200426/01_cumulative_20141031_20200426.png b/campi_flegrei_example_all_times/20200426/01_cumulative_20141031_20200426.png new file mode 100644 index 00000000..822695c6 Binary files /dev/null and b/campi_flegrei_example_all_times/20200426/01_cumulative_20141031_20200426.png differ diff --git a/campi_flegrei_example_all_times/20200426/02_incremental_20200420_20200426.png b/campi_flegrei_example_all_times/20200426/02_incremental_20200420_20200426.png new file mode 100644 index 00000000..a6cd00b0 Binary files /dev/null and b/campi_flegrei_example_all_times/20200426/02_incremental_20200420_20200426.png differ diff --git a/campi_flegrei_example_all_times/20200426/03_reconstruction_20200420_20200426.png b/campi_flegrei_example_all_times/20200426/03_reconstruction_20200420_20200426.png new file mode 100644 index 00000000..b5543892 Binary files /dev/null and b/campi_flegrei_example_all_times/20200426/03_reconstruction_20200420_20200426.png differ diff --git a/campi_flegrei_example_all_times/20200426/04_residual_20200420_20200426.png b/campi_flegrei_example_all_times/20200426/04_residual_20200420_20200426.png new file mode 100644 index 00000000..57e77b52 Binary files /dev/null and b/campi_flegrei_example_all_times/20200426/04_residual_20200420_20200426.png differ diff --git a/campi_flegrei_example_all_times/20200426/LiCSAlert_figure_with_184_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200426/LiCSAlert_figure_with_184_monitoring_interferograms.png new file mode 100644 index 00000000..8303bebc Binary files /dev/null and b/campi_flegrei_example_all_times/20200426/LiCSAlert_figure_with_184_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200426/mask_status.png b/campi_flegrei_example_all_times/20200426/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200426/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200426/volcano_status.txt b/campi_flegrei_example_all_times/20200426/volcano_status.txt new file mode 100644 index 00000000..8a59d201 --- /dev/null +++ b/campi_flegrei_example_all_times/20200426/volcano_status.txt @@ -0,0 +1,2 @@ +0.204369639945889 +0.4047979337942236 diff --git a/campi_flegrei_example_all_times/20200502/01_cumulative_20141031_20200502.png b/campi_flegrei_example_all_times/20200502/01_cumulative_20141031_20200502.png new file mode 100644 index 00000000..8db20493 Binary files /dev/null and b/campi_flegrei_example_all_times/20200502/01_cumulative_20141031_20200502.png differ diff --git a/campi_flegrei_example_all_times/20200502/02_incremental_20200426_20200502.png b/campi_flegrei_example_all_times/20200502/02_incremental_20200426_20200502.png new file mode 100644 index 00000000..4a3d2a92 Binary files /dev/null and b/campi_flegrei_example_all_times/20200502/02_incremental_20200426_20200502.png differ diff --git a/campi_flegrei_example_all_times/20200502/03_reconstruction_20200426_20200502.png b/campi_flegrei_example_all_times/20200502/03_reconstruction_20200426_20200502.png new file mode 100644 index 00000000..8cf636ab Binary files /dev/null and b/campi_flegrei_example_all_times/20200502/03_reconstruction_20200426_20200502.png differ diff --git a/campi_flegrei_example_all_times/20200502/04_residual_20200426_20200502.png b/campi_flegrei_example_all_times/20200502/04_residual_20200426_20200502.png new file mode 100644 index 00000000..7b0884a3 Binary files /dev/null and b/campi_flegrei_example_all_times/20200502/04_residual_20200426_20200502.png differ diff --git a/campi_flegrei_example_all_times/20200502/LiCSAlert_figure_with_185_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200502/LiCSAlert_figure_with_185_monitoring_interferograms.png new file mode 100644 index 00000000..dd49afd2 Binary files /dev/null and b/campi_flegrei_example_all_times/20200502/LiCSAlert_figure_with_185_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200502/mask_status.png b/campi_flegrei_example_all_times/20200502/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200502/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200502/volcano_status.txt b/campi_flegrei_example_all_times/20200502/volcano_status.txt new file mode 100644 index 00000000..0d85abc5 --- /dev/null +++ b/campi_flegrei_example_all_times/20200502/volcano_status.txt @@ -0,0 +1,2 @@ +0.20407322845872025 +0.5977944568296278 diff --git a/campi_flegrei_example_all_times/20200508/01_cumulative_20141031_20200508.png b/campi_flegrei_example_all_times/20200508/01_cumulative_20141031_20200508.png new file mode 100644 index 00000000..b2c1ee36 Binary files /dev/null and b/campi_flegrei_example_all_times/20200508/01_cumulative_20141031_20200508.png differ diff --git a/campi_flegrei_example_all_times/20200508/02_incremental_20200502_20200508.png b/campi_flegrei_example_all_times/20200508/02_incremental_20200502_20200508.png new file mode 100644 index 00000000..e8250b19 Binary files /dev/null and b/campi_flegrei_example_all_times/20200508/02_incremental_20200502_20200508.png differ diff --git a/campi_flegrei_example_all_times/20200508/03_reconstruction_20200502_20200508.png b/campi_flegrei_example_all_times/20200508/03_reconstruction_20200502_20200508.png new file mode 100644 index 00000000..1607e3b6 Binary files /dev/null and b/campi_flegrei_example_all_times/20200508/03_reconstruction_20200502_20200508.png differ diff --git a/campi_flegrei_example_all_times/20200508/04_residual_20200502_20200508.png b/campi_flegrei_example_all_times/20200508/04_residual_20200502_20200508.png new file mode 100644 index 00000000..608ffd1c Binary files /dev/null and b/campi_flegrei_example_all_times/20200508/04_residual_20200502_20200508.png differ diff --git a/campi_flegrei_example_all_times/20200508/LiCSAlert_figure_with_186_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200508/LiCSAlert_figure_with_186_monitoring_interferograms.png new file mode 100644 index 00000000..bb5d8d97 Binary files /dev/null and b/campi_flegrei_example_all_times/20200508/LiCSAlert_figure_with_186_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200508/mask_status.png b/campi_flegrei_example_all_times/20200508/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200508/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200508/volcano_status.txt b/campi_flegrei_example_all_times/20200508/volcano_status.txt new file mode 100644 index 00000000..e37ce34b --- /dev/null +++ b/campi_flegrei_example_all_times/20200508/volcano_status.txt @@ -0,0 +1,2 @@ +0.09537754352183687 +0.09611028391788051 diff --git a/campi_flegrei_example_all_times/20200514/01_cumulative_20141031_20200514.png b/campi_flegrei_example_all_times/20200514/01_cumulative_20141031_20200514.png new file mode 100644 index 00000000..9ce8f1f8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200514/01_cumulative_20141031_20200514.png differ diff --git a/campi_flegrei_example_all_times/20200514/02_incremental_20200508_20200514.png b/campi_flegrei_example_all_times/20200514/02_incremental_20200508_20200514.png new file mode 100644 index 00000000..2c545e3a Binary files /dev/null and b/campi_flegrei_example_all_times/20200514/02_incremental_20200508_20200514.png differ diff --git a/campi_flegrei_example_all_times/20200514/03_reconstruction_20200508_20200514.png b/campi_flegrei_example_all_times/20200514/03_reconstruction_20200508_20200514.png new file mode 100644 index 00000000..f67158e0 Binary files /dev/null and b/campi_flegrei_example_all_times/20200514/03_reconstruction_20200508_20200514.png differ diff --git a/campi_flegrei_example_all_times/20200514/04_residual_20200508_20200514.png b/campi_flegrei_example_all_times/20200514/04_residual_20200508_20200514.png new file mode 100644 index 00000000..b23efb1f Binary files /dev/null and b/campi_flegrei_example_all_times/20200514/04_residual_20200508_20200514.png differ diff --git a/campi_flegrei_example_all_times/20200514/LiCSAlert_figure_with_187_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200514/LiCSAlert_figure_with_187_monitoring_interferograms.png new file mode 100644 index 00000000..97c25559 Binary files /dev/null and b/campi_flegrei_example_all_times/20200514/LiCSAlert_figure_with_187_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200514/mask_status.png b/campi_flegrei_example_all_times/20200514/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200514/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200514/volcano_status.txt b/campi_flegrei_example_all_times/20200514/volcano_status.txt new file mode 100644 index 00000000..6efddbdb --- /dev/null +++ b/campi_flegrei_example_all_times/20200514/volcano_status.txt @@ -0,0 +1,2 @@ +0.5595365003979041 +1.4324667447044892 diff --git a/campi_flegrei_example_all_times/20200520/01_cumulative_20141031_20200520.png b/campi_flegrei_example_all_times/20200520/01_cumulative_20141031_20200520.png new file mode 100644 index 00000000..67fcab54 Binary files /dev/null and b/campi_flegrei_example_all_times/20200520/01_cumulative_20141031_20200520.png differ diff --git a/campi_flegrei_example_all_times/20200520/02_incremental_20200514_20200520.png b/campi_flegrei_example_all_times/20200520/02_incremental_20200514_20200520.png new file mode 100644 index 00000000..4e8313b3 Binary files /dev/null and b/campi_flegrei_example_all_times/20200520/02_incremental_20200514_20200520.png differ diff --git a/campi_flegrei_example_all_times/20200520/03_reconstruction_20200514_20200520.png b/campi_flegrei_example_all_times/20200520/03_reconstruction_20200514_20200520.png new file mode 100644 index 00000000..89427d35 Binary files /dev/null and b/campi_flegrei_example_all_times/20200520/03_reconstruction_20200514_20200520.png differ diff --git a/campi_flegrei_example_all_times/20200520/04_residual_20200514_20200520.png b/campi_flegrei_example_all_times/20200520/04_residual_20200514_20200520.png new file mode 100644 index 00000000..da4c1f0b Binary files /dev/null and b/campi_flegrei_example_all_times/20200520/04_residual_20200514_20200520.png differ diff --git a/campi_flegrei_example_all_times/20200520/LiCSAlert_figure_with_188_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200520/LiCSAlert_figure_with_188_monitoring_interferograms.png new file mode 100644 index 00000000..087688c2 Binary files /dev/null and b/campi_flegrei_example_all_times/20200520/LiCSAlert_figure_with_188_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200520/mask_status.png b/campi_flegrei_example_all_times/20200520/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200520/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200520/volcano_status.txt b/campi_flegrei_example_all_times/20200520/volcano_status.txt new file mode 100644 index 00000000..56b49731 --- /dev/null +++ b/campi_flegrei_example_all_times/20200520/volcano_status.txt @@ -0,0 +1,2 @@ +0.7202818069288429 +1.9384655542747706 diff --git a/campi_flegrei_example_all_times/20200526/01_cumulative_20141031_20200526.png b/campi_flegrei_example_all_times/20200526/01_cumulative_20141031_20200526.png new file mode 100644 index 00000000..bd31b7da Binary files /dev/null and b/campi_flegrei_example_all_times/20200526/01_cumulative_20141031_20200526.png differ diff --git a/campi_flegrei_example_all_times/20200526/02_incremental_20200520_20200526.png b/campi_flegrei_example_all_times/20200526/02_incremental_20200520_20200526.png new file mode 100644 index 00000000..6425e106 Binary files /dev/null and b/campi_flegrei_example_all_times/20200526/02_incremental_20200520_20200526.png differ diff --git a/campi_flegrei_example_all_times/20200526/03_reconstruction_20200520_20200526.png b/campi_flegrei_example_all_times/20200526/03_reconstruction_20200520_20200526.png new file mode 100644 index 00000000..794b8ef2 Binary files /dev/null and b/campi_flegrei_example_all_times/20200526/03_reconstruction_20200520_20200526.png differ diff --git a/campi_flegrei_example_all_times/20200526/04_residual_20200520_20200526.png b/campi_flegrei_example_all_times/20200526/04_residual_20200520_20200526.png new file mode 100644 index 00000000..c86488c8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200526/04_residual_20200520_20200526.png differ diff --git a/campi_flegrei_example_all_times/20200526/LiCSAlert_figure_with_189_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200526/LiCSAlert_figure_with_189_monitoring_interferograms.png new file mode 100644 index 00000000..a2295dab Binary files /dev/null and b/campi_flegrei_example_all_times/20200526/LiCSAlert_figure_with_189_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200526/mask_status.png b/campi_flegrei_example_all_times/20200526/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200526/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200526/volcano_status.txt b/campi_flegrei_example_all_times/20200526/volcano_status.txt new file mode 100644 index 00000000..56f611fc --- /dev/null +++ b/campi_flegrei_example_all_times/20200526/volcano_status.txt @@ -0,0 +1,2 @@ +0.9560764939612844 +1.2898035810761086 diff --git a/campi_flegrei_example_all_times/20200601/01_cumulative_20141031_20200601.png b/campi_flegrei_example_all_times/20200601/01_cumulative_20141031_20200601.png new file mode 100644 index 00000000..82f9b6da Binary files /dev/null and b/campi_flegrei_example_all_times/20200601/01_cumulative_20141031_20200601.png differ diff --git a/campi_flegrei_example_all_times/20200601/02_incremental_20200526_20200601.png b/campi_flegrei_example_all_times/20200601/02_incremental_20200526_20200601.png new file mode 100644 index 00000000..026f86bf Binary files /dev/null and b/campi_flegrei_example_all_times/20200601/02_incremental_20200526_20200601.png differ diff --git a/campi_flegrei_example_all_times/20200601/03_reconstruction_20200526_20200601.png b/campi_flegrei_example_all_times/20200601/03_reconstruction_20200526_20200601.png new file mode 100644 index 00000000..121bfb0f Binary files /dev/null and b/campi_flegrei_example_all_times/20200601/03_reconstruction_20200526_20200601.png differ diff --git a/campi_flegrei_example_all_times/20200601/04_residual_20200526_20200601.png b/campi_flegrei_example_all_times/20200601/04_residual_20200526_20200601.png new file mode 100644 index 00000000..c7bccc72 Binary files /dev/null and b/campi_flegrei_example_all_times/20200601/04_residual_20200526_20200601.png differ diff --git a/campi_flegrei_example_all_times/20200601/LiCSAlert_figure_with_190_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200601/LiCSAlert_figure_with_190_monitoring_interferograms.png new file mode 100644 index 00000000..893e3602 Binary files /dev/null and b/campi_flegrei_example_all_times/20200601/LiCSAlert_figure_with_190_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200601/mask_status.png b/campi_flegrei_example_all_times/20200601/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200601/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200601/volcano_status.txt b/campi_flegrei_example_all_times/20200601/volcano_status.txt new file mode 100644 index 00000000..6392a650 --- /dev/null +++ b/campi_flegrei_example_all_times/20200601/volcano_status.txt @@ -0,0 +1,2 @@ +1.8734082253938418 +0.2260052788904289 diff --git a/campi_flegrei_example_all_times/20200607/01_cumulative_20141031_20200607.png b/campi_flegrei_example_all_times/20200607/01_cumulative_20141031_20200607.png new file mode 100644 index 00000000..d5293b4a Binary files /dev/null and b/campi_flegrei_example_all_times/20200607/01_cumulative_20141031_20200607.png differ diff --git a/campi_flegrei_example_all_times/20200607/02_incremental_20200601_20200607.png b/campi_flegrei_example_all_times/20200607/02_incremental_20200601_20200607.png new file mode 100644 index 00000000..4d495dcb Binary files /dev/null and b/campi_flegrei_example_all_times/20200607/02_incremental_20200601_20200607.png differ diff --git a/campi_flegrei_example_all_times/20200607/03_reconstruction_20200601_20200607.png b/campi_flegrei_example_all_times/20200607/03_reconstruction_20200601_20200607.png new file mode 100644 index 00000000..35ead3b6 Binary files /dev/null and b/campi_flegrei_example_all_times/20200607/03_reconstruction_20200601_20200607.png differ diff --git a/campi_flegrei_example_all_times/20200607/04_residual_20200601_20200607.png b/campi_flegrei_example_all_times/20200607/04_residual_20200601_20200607.png new file mode 100644 index 00000000..00ff66c0 Binary files /dev/null and b/campi_flegrei_example_all_times/20200607/04_residual_20200601_20200607.png differ diff --git a/campi_flegrei_example_all_times/20200607/LiCSAlert_figure_with_191_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200607/LiCSAlert_figure_with_191_monitoring_interferograms.png new file mode 100644 index 00000000..1671cdb0 Binary files /dev/null and b/campi_flegrei_example_all_times/20200607/LiCSAlert_figure_with_191_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200607/mask_status.png b/campi_flegrei_example_all_times/20200607/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200607/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200607/volcano_status.txt b/campi_flegrei_example_all_times/20200607/volcano_status.txt new file mode 100644 index 00000000..36b0883a --- /dev/null +++ b/campi_flegrei_example_all_times/20200607/volcano_status.txt @@ -0,0 +1,2 @@ +0.23828497728883702 +0.36157176984349854 diff --git a/campi_flegrei_example_all_times/20200613/01_cumulative_20141031_20200613.png b/campi_flegrei_example_all_times/20200613/01_cumulative_20141031_20200613.png new file mode 100644 index 00000000..a1c195d9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200613/01_cumulative_20141031_20200613.png differ diff --git a/campi_flegrei_example_all_times/20200613/02_incremental_20200607_20200613.png b/campi_flegrei_example_all_times/20200613/02_incremental_20200607_20200613.png new file mode 100644 index 00000000..79c73ad5 Binary files /dev/null and b/campi_flegrei_example_all_times/20200613/02_incremental_20200607_20200613.png differ diff --git a/campi_flegrei_example_all_times/20200613/03_reconstruction_20200607_20200613.png b/campi_flegrei_example_all_times/20200613/03_reconstruction_20200607_20200613.png new file mode 100644 index 00000000..3fa4e392 Binary files /dev/null and b/campi_flegrei_example_all_times/20200613/03_reconstruction_20200607_20200613.png differ diff --git a/campi_flegrei_example_all_times/20200613/04_residual_20200607_20200613.png b/campi_flegrei_example_all_times/20200613/04_residual_20200607_20200613.png new file mode 100644 index 00000000..91e59878 Binary files /dev/null and b/campi_flegrei_example_all_times/20200613/04_residual_20200607_20200613.png differ diff --git a/campi_flegrei_example_all_times/20200613/LiCSAlert_figure_with_192_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200613/LiCSAlert_figure_with_192_monitoring_interferograms.png new file mode 100644 index 00000000..fa2cf929 Binary files /dev/null and b/campi_flegrei_example_all_times/20200613/LiCSAlert_figure_with_192_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200613/mask_status.png b/campi_flegrei_example_all_times/20200613/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200613/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200613/volcano_status.txt b/campi_flegrei_example_all_times/20200613/volcano_status.txt new file mode 100644 index 00000000..03a10d05 --- /dev/null +++ b/campi_flegrei_example_all_times/20200613/volcano_status.txt @@ -0,0 +1,2 @@ +0.3599921926886714 +0.4609535252984056 diff --git a/campi_flegrei_example_all_times/20200619/01_cumulative_20141031_20200619.png b/campi_flegrei_example_all_times/20200619/01_cumulative_20141031_20200619.png new file mode 100644 index 00000000..99b41f8a Binary files /dev/null and b/campi_flegrei_example_all_times/20200619/01_cumulative_20141031_20200619.png differ diff --git a/campi_flegrei_example_all_times/20200619/02_incremental_20200613_20200619.png b/campi_flegrei_example_all_times/20200619/02_incremental_20200613_20200619.png new file mode 100644 index 00000000..5a3a7608 Binary files /dev/null and b/campi_flegrei_example_all_times/20200619/02_incremental_20200613_20200619.png differ diff --git a/campi_flegrei_example_all_times/20200619/03_reconstruction_20200613_20200619.png b/campi_flegrei_example_all_times/20200619/03_reconstruction_20200613_20200619.png new file mode 100644 index 00000000..fa76ef13 Binary files /dev/null and b/campi_flegrei_example_all_times/20200619/03_reconstruction_20200613_20200619.png differ diff --git a/campi_flegrei_example_all_times/20200619/04_residual_20200613_20200619.png b/campi_flegrei_example_all_times/20200619/04_residual_20200613_20200619.png new file mode 100644 index 00000000..f26fb84b Binary files /dev/null and b/campi_flegrei_example_all_times/20200619/04_residual_20200613_20200619.png differ diff --git a/campi_flegrei_example_all_times/20200619/LiCSAlert_figure_with_193_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200619/LiCSAlert_figure_with_193_monitoring_interferograms.png new file mode 100644 index 00000000..0ac3aee9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200619/LiCSAlert_figure_with_193_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200619/mask_status.png b/campi_flegrei_example_all_times/20200619/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200619/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200619/volcano_status.txt b/campi_flegrei_example_all_times/20200619/volcano_status.txt new file mode 100644 index 00000000..fd925029 --- /dev/null +++ b/campi_flegrei_example_all_times/20200619/volcano_status.txt @@ -0,0 +1,2 @@ +0.13072104232275428 +0.7471703988026915 diff --git a/campi_flegrei_example_all_times/20200625/01_cumulative_20141031_20200625.png b/campi_flegrei_example_all_times/20200625/01_cumulative_20141031_20200625.png new file mode 100644 index 00000000..4137f2d7 Binary files /dev/null and b/campi_flegrei_example_all_times/20200625/01_cumulative_20141031_20200625.png differ diff --git a/campi_flegrei_example_all_times/20200625/02_incremental_20200619_20200625.png b/campi_flegrei_example_all_times/20200625/02_incremental_20200619_20200625.png new file mode 100644 index 00000000..5abd447e Binary files /dev/null and b/campi_flegrei_example_all_times/20200625/02_incremental_20200619_20200625.png differ diff --git a/campi_flegrei_example_all_times/20200625/03_reconstruction_20200619_20200625.png b/campi_flegrei_example_all_times/20200625/03_reconstruction_20200619_20200625.png new file mode 100644 index 00000000..faa4d64f Binary files /dev/null and b/campi_flegrei_example_all_times/20200625/03_reconstruction_20200619_20200625.png differ diff --git a/campi_flegrei_example_all_times/20200625/04_residual_20200619_20200625.png b/campi_flegrei_example_all_times/20200625/04_residual_20200619_20200625.png new file mode 100644 index 00000000..85a7f7c4 Binary files /dev/null and b/campi_flegrei_example_all_times/20200625/04_residual_20200619_20200625.png differ diff --git a/campi_flegrei_example_all_times/20200625/LiCSAlert_figure_with_194_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200625/LiCSAlert_figure_with_194_monitoring_interferograms.png new file mode 100644 index 00000000..7e6f3dae Binary files /dev/null and b/campi_flegrei_example_all_times/20200625/LiCSAlert_figure_with_194_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200625/mask_status.png b/campi_flegrei_example_all_times/20200625/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200625/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200625/volcano_status.txt b/campi_flegrei_example_all_times/20200625/volcano_status.txt new file mode 100644 index 00000000..db39edb1 --- /dev/null +++ b/campi_flegrei_example_all_times/20200625/volcano_status.txt @@ -0,0 +1,2 @@ +0.8580189145377394 +0.9689467186121249 diff --git a/campi_flegrei_example_all_times/20200701/01_cumulative_20141031_20200701.png b/campi_flegrei_example_all_times/20200701/01_cumulative_20141031_20200701.png new file mode 100644 index 00000000..8c30f681 Binary files /dev/null and b/campi_flegrei_example_all_times/20200701/01_cumulative_20141031_20200701.png differ diff --git a/campi_flegrei_example_all_times/20200701/02_incremental_20200625_20200701.png b/campi_flegrei_example_all_times/20200701/02_incremental_20200625_20200701.png new file mode 100644 index 00000000..5117b53f Binary files /dev/null and b/campi_flegrei_example_all_times/20200701/02_incremental_20200625_20200701.png differ diff --git a/campi_flegrei_example_all_times/20200701/03_reconstruction_20200625_20200701.png b/campi_flegrei_example_all_times/20200701/03_reconstruction_20200625_20200701.png new file mode 100644 index 00000000..9d7187b5 Binary files /dev/null and b/campi_flegrei_example_all_times/20200701/03_reconstruction_20200625_20200701.png differ diff --git a/campi_flegrei_example_all_times/20200701/04_residual_20200625_20200701.png b/campi_flegrei_example_all_times/20200701/04_residual_20200625_20200701.png new file mode 100644 index 00000000..bd576137 Binary files /dev/null and b/campi_flegrei_example_all_times/20200701/04_residual_20200625_20200701.png differ diff --git a/campi_flegrei_example_all_times/20200701/LiCSAlert_figure_with_195_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200701/LiCSAlert_figure_with_195_monitoring_interferograms.png new file mode 100644 index 00000000..f6eb4b05 Binary files /dev/null and b/campi_flegrei_example_all_times/20200701/LiCSAlert_figure_with_195_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200701/mask_status.png b/campi_flegrei_example_all_times/20200701/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200701/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200701/volcano_status.txt b/campi_flegrei_example_all_times/20200701/volcano_status.txt new file mode 100644 index 00000000..b6c8b798 --- /dev/null +++ b/campi_flegrei_example_all_times/20200701/volcano_status.txt @@ -0,0 +1,2 @@ +1.4265328395553218 +0.16586638454584968 diff --git a/campi_flegrei_example_all_times/20200707/01_cumulative_20141031_20200707.png b/campi_flegrei_example_all_times/20200707/01_cumulative_20141031_20200707.png new file mode 100644 index 00000000..31a757c8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200707/01_cumulative_20141031_20200707.png differ diff --git a/campi_flegrei_example_all_times/20200707/02_incremental_20200701_20200707.png b/campi_flegrei_example_all_times/20200707/02_incremental_20200701_20200707.png new file mode 100644 index 00000000..7c27b369 Binary files /dev/null and b/campi_flegrei_example_all_times/20200707/02_incremental_20200701_20200707.png differ diff --git a/campi_flegrei_example_all_times/20200707/03_reconstruction_20200701_20200707.png b/campi_flegrei_example_all_times/20200707/03_reconstruction_20200701_20200707.png new file mode 100644 index 00000000..7561865a Binary files /dev/null and b/campi_flegrei_example_all_times/20200707/03_reconstruction_20200701_20200707.png differ diff --git a/campi_flegrei_example_all_times/20200707/04_residual_20200701_20200707.png b/campi_flegrei_example_all_times/20200707/04_residual_20200701_20200707.png new file mode 100644 index 00000000..a0d69dc4 Binary files /dev/null and b/campi_flegrei_example_all_times/20200707/04_residual_20200701_20200707.png differ diff --git a/campi_flegrei_example_all_times/20200707/LiCSAlert_figure_with_196_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200707/LiCSAlert_figure_with_196_monitoring_interferograms.png new file mode 100644 index 00000000..0e2b56ad Binary files /dev/null and b/campi_flegrei_example_all_times/20200707/LiCSAlert_figure_with_196_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200707/mask_status.png b/campi_flegrei_example_all_times/20200707/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200707/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200707/volcano_status.txt b/campi_flegrei_example_all_times/20200707/volcano_status.txt new file mode 100644 index 00000000..24fb2fb4 --- /dev/null +++ b/campi_flegrei_example_all_times/20200707/volcano_status.txt @@ -0,0 +1,2 @@ +0.40824471732663037 +0.2486999509536948 diff --git a/campi_flegrei_example_all_times/20200713/01_cumulative_20141031_20200713.png b/campi_flegrei_example_all_times/20200713/01_cumulative_20141031_20200713.png new file mode 100644 index 00000000..75060a28 Binary files /dev/null and b/campi_flegrei_example_all_times/20200713/01_cumulative_20141031_20200713.png differ diff --git a/campi_flegrei_example_all_times/20200713/02_incremental_20200707_20200713.png b/campi_flegrei_example_all_times/20200713/02_incremental_20200707_20200713.png new file mode 100644 index 00000000..15af3ae8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200713/02_incremental_20200707_20200713.png differ diff --git a/campi_flegrei_example_all_times/20200713/03_reconstruction_20200707_20200713.png b/campi_flegrei_example_all_times/20200713/03_reconstruction_20200707_20200713.png new file mode 100644 index 00000000..e718372c Binary files /dev/null and b/campi_flegrei_example_all_times/20200713/03_reconstruction_20200707_20200713.png differ diff --git a/campi_flegrei_example_all_times/20200713/04_residual_20200707_20200713.png b/campi_flegrei_example_all_times/20200713/04_residual_20200707_20200713.png new file mode 100644 index 00000000..f7a24fce Binary files /dev/null and b/campi_flegrei_example_all_times/20200713/04_residual_20200707_20200713.png differ diff --git a/campi_flegrei_example_all_times/20200713/LiCSAlert_figure_with_197_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200713/LiCSAlert_figure_with_197_monitoring_interferograms.png new file mode 100644 index 00000000..99a9f144 Binary files /dev/null and b/campi_flegrei_example_all_times/20200713/LiCSAlert_figure_with_197_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200713/mask_status.png b/campi_flegrei_example_all_times/20200713/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200713/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200713/volcano_status.txt b/campi_flegrei_example_all_times/20200713/volcano_status.txt new file mode 100644 index 00000000..72d1d38a --- /dev/null +++ b/campi_flegrei_example_all_times/20200713/volcano_status.txt @@ -0,0 +1,2 @@ +1.250111367383787 +0.670156309049913 diff --git a/campi_flegrei_example_all_times/20200719/01_cumulative_20141031_20200719.png b/campi_flegrei_example_all_times/20200719/01_cumulative_20141031_20200719.png new file mode 100644 index 00000000..b1393b17 Binary files /dev/null and b/campi_flegrei_example_all_times/20200719/01_cumulative_20141031_20200719.png differ diff --git a/campi_flegrei_example_all_times/20200719/02_incremental_20200713_20200719.png b/campi_flegrei_example_all_times/20200719/02_incremental_20200713_20200719.png new file mode 100644 index 00000000..ddf789ea Binary files /dev/null and b/campi_flegrei_example_all_times/20200719/02_incremental_20200713_20200719.png differ diff --git a/campi_flegrei_example_all_times/20200719/03_reconstruction_20200713_20200719.png b/campi_flegrei_example_all_times/20200719/03_reconstruction_20200713_20200719.png new file mode 100644 index 00000000..316d2ee8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200719/03_reconstruction_20200713_20200719.png differ diff --git a/campi_flegrei_example_all_times/20200719/04_residual_20200713_20200719.png b/campi_flegrei_example_all_times/20200719/04_residual_20200713_20200719.png new file mode 100644 index 00000000..b050b3e3 Binary files /dev/null and b/campi_flegrei_example_all_times/20200719/04_residual_20200713_20200719.png differ diff --git a/campi_flegrei_example_all_times/20200719/LiCSAlert_figure_with_198_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200719/LiCSAlert_figure_with_198_monitoring_interferograms.png new file mode 100644 index 00000000..dd98f411 Binary files /dev/null and b/campi_flegrei_example_all_times/20200719/LiCSAlert_figure_with_198_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200719/mask_status.png b/campi_flegrei_example_all_times/20200719/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200719/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200719/volcano_status.txt b/campi_flegrei_example_all_times/20200719/volcano_status.txt new file mode 100644 index 00000000..fe431949 --- /dev/null +++ b/campi_flegrei_example_all_times/20200719/volcano_status.txt @@ -0,0 +1,2 @@ +0.2583138203440891 +0.3337991525952608 diff --git a/campi_flegrei_example_all_times/20200725/01_cumulative_20141031_20200725.png b/campi_flegrei_example_all_times/20200725/01_cumulative_20141031_20200725.png new file mode 100644 index 00000000..6e0e10f1 Binary files /dev/null and b/campi_flegrei_example_all_times/20200725/01_cumulative_20141031_20200725.png differ diff --git a/campi_flegrei_example_all_times/20200725/02_incremental_20200719_20200725.png b/campi_flegrei_example_all_times/20200725/02_incremental_20200719_20200725.png new file mode 100644 index 00000000..54c5194a Binary files /dev/null and b/campi_flegrei_example_all_times/20200725/02_incremental_20200719_20200725.png differ diff --git a/campi_flegrei_example_all_times/20200725/03_reconstruction_20200719_20200725.png b/campi_flegrei_example_all_times/20200725/03_reconstruction_20200719_20200725.png new file mode 100644 index 00000000..2bd7c8f8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200725/03_reconstruction_20200719_20200725.png differ diff --git a/campi_flegrei_example_all_times/20200725/04_residual_20200719_20200725.png b/campi_flegrei_example_all_times/20200725/04_residual_20200719_20200725.png new file mode 100644 index 00000000..e43d481d Binary files /dev/null and b/campi_flegrei_example_all_times/20200725/04_residual_20200719_20200725.png differ diff --git a/campi_flegrei_example_all_times/20200725/LiCSAlert_figure_with_199_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200725/LiCSAlert_figure_with_199_monitoring_interferograms.png new file mode 100644 index 00000000..318d8317 Binary files /dev/null and b/campi_flegrei_example_all_times/20200725/LiCSAlert_figure_with_199_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200725/mask_status.png b/campi_flegrei_example_all_times/20200725/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200725/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200725/volcano_status.txt b/campi_flegrei_example_all_times/20200725/volcano_status.txt new file mode 100644 index 00000000..c5d9805e --- /dev/null +++ b/campi_flegrei_example_all_times/20200725/volcano_status.txt @@ -0,0 +1,2 @@ +0.23828122780522099 +0.7426295349688978 diff --git a/campi_flegrei_example_all_times/20200731/01_cumulative_20141031_20200731.png b/campi_flegrei_example_all_times/20200731/01_cumulative_20141031_20200731.png new file mode 100644 index 00000000..eb8f0bf1 Binary files /dev/null and b/campi_flegrei_example_all_times/20200731/01_cumulative_20141031_20200731.png differ diff --git a/campi_flegrei_example_all_times/20200731/02_incremental_20200725_20200731.png b/campi_flegrei_example_all_times/20200731/02_incremental_20200725_20200731.png new file mode 100644 index 00000000..83425992 Binary files /dev/null and b/campi_flegrei_example_all_times/20200731/02_incremental_20200725_20200731.png differ diff --git a/campi_flegrei_example_all_times/20200731/03_reconstruction_20200725_20200731.png b/campi_flegrei_example_all_times/20200731/03_reconstruction_20200725_20200731.png new file mode 100644 index 00000000..9edb6028 Binary files /dev/null and b/campi_flegrei_example_all_times/20200731/03_reconstruction_20200725_20200731.png differ diff --git a/campi_flegrei_example_all_times/20200731/04_residual_20200725_20200731.png b/campi_flegrei_example_all_times/20200731/04_residual_20200725_20200731.png new file mode 100644 index 00000000..689b6019 Binary files /dev/null and b/campi_flegrei_example_all_times/20200731/04_residual_20200725_20200731.png differ diff --git a/campi_flegrei_example_all_times/20200731/LiCSAlert_figure_with_200_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200731/LiCSAlert_figure_with_200_monitoring_interferograms.png new file mode 100644 index 00000000..b16f12d0 Binary files /dev/null and b/campi_flegrei_example_all_times/20200731/LiCSAlert_figure_with_200_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200731/mask_status.png b/campi_flegrei_example_all_times/20200731/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200731/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200731/volcano_status.txt b/campi_flegrei_example_all_times/20200731/volcano_status.txt new file mode 100644 index 00000000..fdd22d0b --- /dev/null +++ b/campi_flegrei_example_all_times/20200731/volcano_status.txt @@ -0,0 +1,2 @@ +2.083197443768336 +0.8330884490409619 diff --git a/campi_flegrei_example_all_times/20200806/01_cumulative_20141031_20200806.png b/campi_flegrei_example_all_times/20200806/01_cumulative_20141031_20200806.png new file mode 100644 index 00000000..036ae311 Binary files /dev/null and b/campi_flegrei_example_all_times/20200806/01_cumulative_20141031_20200806.png differ diff --git a/campi_flegrei_example_all_times/20200806/02_incremental_20200731_20200806.png b/campi_flegrei_example_all_times/20200806/02_incremental_20200731_20200806.png new file mode 100644 index 00000000..0e697cac Binary files /dev/null and b/campi_flegrei_example_all_times/20200806/02_incremental_20200731_20200806.png differ diff --git a/campi_flegrei_example_all_times/20200806/03_reconstruction_20200731_20200806.png b/campi_flegrei_example_all_times/20200806/03_reconstruction_20200731_20200806.png new file mode 100644 index 00000000..2dfd249d Binary files /dev/null and b/campi_flegrei_example_all_times/20200806/03_reconstruction_20200731_20200806.png differ diff --git a/campi_flegrei_example_all_times/20200806/04_residual_20200731_20200806.png b/campi_flegrei_example_all_times/20200806/04_residual_20200731_20200806.png new file mode 100644 index 00000000..a37b0a4f Binary files /dev/null and b/campi_flegrei_example_all_times/20200806/04_residual_20200731_20200806.png differ diff --git a/campi_flegrei_example_all_times/20200806/LiCSAlert_figure_with_201_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200806/LiCSAlert_figure_with_201_monitoring_interferograms.png new file mode 100644 index 00000000..f12095c0 Binary files /dev/null and b/campi_flegrei_example_all_times/20200806/LiCSAlert_figure_with_201_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200806/mask_status.png b/campi_flegrei_example_all_times/20200806/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200806/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200806/volcano_status.txt b/campi_flegrei_example_all_times/20200806/volcano_status.txt new file mode 100644 index 00000000..74997489 --- /dev/null +++ b/campi_flegrei_example_all_times/20200806/volcano_status.txt @@ -0,0 +1,2 @@ +0.7874608090780478 +0.49882629626786645 diff --git a/campi_flegrei_example_all_times/20200812/01_cumulative_20141031_20200812.png b/campi_flegrei_example_all_times/20200812/01_cumulative_20141031_20200812.png new file mode 100644 index 00000000..9e46ef4d Binary files /dev/null and b/campi_flegrei_example_all_times/20200812/01_cumulative_20141031_20200812.png differ diff --git a/campi_flegrei_example_all_times/20200812/02_incremental_20200806_20200812.png b/campi_flegrei_example_all_times/20200812/02_incremental_20200806_20200812.png new file mode 100644 index 00000000..289e99b5 Binary files /dev/null and b/campi_flegrei_example_all_times/20200812/02_incremental_20200806_20200812.png differ diff --git a/campi_flegrei_example_all_times/20200812/03_reconstruction_20200806_20200812.png b/campi_flegrei_example_all_times/20200812/03_reconstruction_20200806_20200812.png new file mode 100644 index 00000000..ad688108 Binary files /dev/null and b/campi_flegrei_example_all_times/20200812/03_reconstruction_20200806_20200812.png differ diff --git a/campi_flegrei_example_all_times/20200812/04_residual_20200806_20200812.png b/campi_flegrei_example_all_times/20200812/04_residual_20200806_20200812.png new file mode 100644 index 00000000..befaa53d Binary files /dev/null and b/campi_flegrei_example_all_times/20200812/04_residual_20200806_20200812.png differ diff --git a/campi_flegrei_example_all_times/20200812/LiCSAlert_figure_with_202_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200812/LiCSAlert_figure_with_202_monitoring_interferograms.png new file mode 100644 index 00000000..5e471cf9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200812/LiCSAlert_figure_with_202_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200812/mask_status.png b/campi_flegrei_example_all_times/20200812/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200812/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200812/volcano_status.txt b/campi_flegrei_example_all_times/20200812/volcano_status.txt new file mode 100644 index 00000000..c277e57b --- /dev/null +++ b/campi_flegrei_example_all_times/20200812/volcano_status.txt @@ -0,0 +1,2 @@ +0.27449129553191265 +0.4625831608312714 diff --git a/campi_flegrei_example_all_times/20200818/01_cumulative_20141031_20200818.png b/campi_flegrei_example_all_times/20200818/01_cumulative_20141031_20200818.png new file mode 100644 index 00000000..249667d2 Binary files /dev/null and b/campi_flegrei_example_all_times/20200818/01_cumulative_20141031_20200818.png differ diff --git a/campi_flegrei_example_all_times/20200818/02_incremental_20200812_20200818.png b/campi_flegrei_example_all_times/20200818/02_incremental_20200812_20200818.png new file mode 100644 index 00000000..e720e220 Binary files /dev/null and b/campi_flegrei_example_all_times/20200818/02_incremental_20200812_20200818.png differ diff --git a/campi_flegrei_example_all_times/20200818/03_reconstruction_20200812_20200818.png b/campi_flegrei_example_all_times/20200818/03_reconstruction_20200812_20200818.png new file mode 100644 index 00000000..e8bd48bb Binary files /dev/null and b/campi_flegrei_example_all_times/20200818/03_reconstruction_20200812_20200818.png differ diff --git a/campi_flegrei_example_all_times/20200818/04_residual_20200812_20200818.png b/campi_flegrei_example_all_times/20200818/04_residual_20200812_20200818.png new file mode 100644 index 00000000..2ecb24ba Binary files /dev/null and b/campi_flegrei_example_all_times/20200818/04_residual_20200812_20200818.png differ diff --git a/campi_flegrei_example_all_times/20200818/LiCSAlert_figure_with_203_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200818/LiCSAlert_figure_with_203_monitoring_interferograms.png new file mode 100644 index 00000000..44923144 Binary files /dev/null and b/campi_flegrei_example_all_times/20200818/LiCSAlert_figure_with_203_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200818/mask_status.png b/campi_flegrei_example_all_times/20200818/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200818/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200818/volcano_status.txt b/campi_flegrei_example_all_times/20200818/volcano_status.txt new file mode 100644 index 00000000..693b362b --- /dev/null +++ b/campi_flegrei_example_all_times/20200818/volcano_status.txt @@ -0,0 +1,2 @@ +0.9431754777047201 +0.6524883315395452 diff --git a/campi_flegrei_example_all_times/20200824/01_cumulative_20141031_20200824.png b/campi_flegrei_example_all_times/20200824/01_cumulative_20141031_20200824.png new file mode 100644 index 00000000..8920749d Binary files /dev/null and b/campi_flegrei_example_all_times/20200824/01_cumulative_20141031_20200824.png differ diff --git a/campi_flegrei_example_all_times/20200824/02_incremental_20200818_20200824.png b/campi_flegrei_example_all_times/20200824/02_incremental_20200818_20200824.png new file mode 100644 index 00000000..dee74770 Binary files /dev/null and b/campi_flegrei_example_all_times/20200824/02_incremental_20200818_20200824.png differ diff --git a/campi_flegrei_example_all_times/20200824/03_reconstruction_20200818_20200824.png b/campi_flegrei_example_all_times/20200824/03_reconstruction_20200818_20200824.png new file mode 100644 index 00000000..db9a9774 Binary files /dev/null and b/campi_flegrei_example_all_times/20200824/03_reconstruction_20200818_20200824.png differ diff --git a/campi_flegrei_example_all_times/20200824/04_residual_20200818_20200824.png b/campi_flegrei_example_all_times/20200824/04_residual_20200818_20200824.png new file mode 100644 index 00000000..7da7dccd Binary files /dev/null and b/campi_flegrei_example_all_times/20200824/04_residual_20200818_20200824.png differ diff --git a/campi_flegrei_example_all_times/20200824/LiCSAlert_figure_with_204_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200824/LiCSAlert_figure_with_204_monitoring_interferograms.png new file mode 100644 index 00000000..7beeab0f Binary files /dev/null and b/campi_flegrei_example_all_times/20200824/LiCSAlert_figure_with_204_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200824/mask_status.png b/campi_flegrei_example_all_times/20200824/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200824/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200824/volcano_status.txt b/campi_flegrei_example_all_times/20200824/volcano_status.txt new file mode 100644 index 00000000..a48eba2d --- /dev/null +++ b/campi_flegrei_example_all_times/20200824/volcano_status.txt @@ -0,0 +1,2 @@ +0.8262359501080939 +0.6658924302211389 diff --git a/campi_flegrei_example_all_times/20200830/01_cumulative_20141031_20200830.png b/campi_flegrei_example_all_times/20200830/01_cumulative_20141031_20200830.png new file mode 100644 index 00000000..250f790d Binary files /dev/null and b/campi_flegrei_example_all_times/20200830/01_cumulative_20141031_20200830.png differ diff --git a/campi_flegrei_example_all_times/20200830/02_incremental_20200824_20200830.png b/campi_flegrei_example_all_times/20200830/02_incremental_20200824_20200830.png new file mode 100644 index 00000000..eb01510c Binary files /dev/null and b/campi_flegrei_example_all_times/20200830/02_incremental_20200824_20200830.png differ diff --git a/campi_flegrei_example_all_times/20200830/03_reconstruction_20200824_20200830.png b/campi_flegrei_example_all_times/20200830/03_reconstruction_20200824_20200830.png new file mode 100644 index 00000000..95a5984c Binary files /dev/null and b/campi_flegrei_example_all_times/20200830/03_reconstruction_20200824_20200830.png differ diff --git a/campi_flegrei_example_all_times/20200830/04_residual_20200824_20200830.png b/campi_flegrei_example_all_times/20200830/04_residual_20200824_20200830.png new file mode 100644 index 00000000..d41d88a9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200830/04_residual_20200824_20200830.png differ diff --git a/campi_flegrei_example_all_times/20200830/LiCSAlert_figure_with_205_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200830/LiCSAlert_figure_with_205_monitoring_interferograms.png new file mode 100644 index 00000000..08cd7061 Binary files /dev/null and b/campi_flegrei_example_all_times/20200830/LiCSAlert_figure_with_205_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200830/mask_status.png b/campi_flegrei_example_all_times/20200830/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200830/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200830/volcano_status.txt b/campi_flegrei_example_all_times/20200830/volcano_status.txt new file mode 100644 index 00000000..f0ef9c12 --- /dev/null +++ b/campi_flegrei_example_all_times/20200830/volcano_status.txt @@ -0,0 +1,2 @@ +0.8736913607486633 +0.8515196150049319 diff --git a/campi_flegrei_example_all_times/20200905/01_cumulative_20141031_20200905.png b/campi_flegrei_example_all_times/20200905/01_cumulative_20141031_20200905.png new file mode 100644 index 00000000..dad8100f Binary files /dev/null and b/campi_flegrei_example_all_times/20200905/01_cumulative_20141031_20200905.png differ diff --git a/campi_flegrei_example_all_times/20200905/02_incremental_20200830_20200905.png b/campi_flegrei_example_all_times/20200905/02_incremental_20200830_20200905.png new file mode 100644 index 00000000..8d7fee77 Binary files /dev/null and b/campi_flegrei_example_all_times/20200905/02_incremental_20200830_20200905.png differ diff --git a/campi_flegrei_example_all_times/20200905/03_reconstruction_20200830_20200905.png b/campi_flegrei_example_all_times/20200905/03_reconstruction_20200830_20200905.png new file mode 100644 index 00000000..03cd44c5 Binary files /dev/null and b/campi_flegrei_example_all_times/20200905/03_reconstruction_20200830_20200905.png differ diff --git a/campi_flegrei_example_all_times/20200905/04_residual_20200830_20200905.png b/campi_flegrei_example_all_times/20200905/04_residual_20200830_20200905.png new file mode 100644 index 00000000..d23f3243 Binary files /dev/null and b/campi_flegrei_example_all_times/20200905/04_residual_20200830_20200905.png differ diff --git a/campi_flegrei_example_all_times/20200905/LiCSAlert_figure_with_206_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200905/LiCSAlert_figure_with_206_monitoring_interferograms.png new file mode 100644 index 00000000..4c287a20 Binary files /dev/null and b/campi_flegrei_example_all_times/20200905/LiCSAlert_figure_with_206_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200905/mask_status.png b/campi_flegrei_example_all_times/20200905/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200905/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200905/volcano_status.txt b/campi_flegrei_example_all_times/20200905/volcano_status.txt new file mode 100644 index 00000000..39e663d0 --- /dev/null +++ b/campi_flegrei_example_all_times/20200905/volcano_status.txt @@ -0,0 +1,2 @@ +1.2539201927155454 +0.1879387806699043 diff --git a/campi_flegrei_example_all_times/20200911/01_cumulative_20141031_20200911.png b/campi_flegrei_example_all_times/20200911/01_cumulative_20141031_20200911.png new file mode 100644 index 00000000..07c8bde1 Binary files /dev/null and b/campi_flegrei_example_all_times/20200911/01_cumulative_20141031_20200911.png differ diff --git a/campi_flegrei_example_all_times/20200911/02_incremental_20200905_20200911.png b/campi_flegrei_example_all_times/20200911/02_incremental_20200905_20200911.png new file mode 100644 index 00000000..8b2dc334 Binary files /dev/null and b/campi_flegrei_example_all_times/20200911/02_incremental_20200905_20200911.png differ diff --git a/campi_flegrei_example_all_times/20200911/03_reconstruction_20200905_20200911.png b/campi_flegrei_example_all_times/20200911/03_reconstruction_20200905_20200911.png new file mode 100644 index 00000000..81f0c838 Binary files /dev/null and b/campi_flegrei_example_all_times/20200911/03_reconstruction_20200905_20200911.png differ diff --git a/campi_flegrei_example_all_times/20200911/04_residual_20200905_20200911.png b/campi_flegrei_example_all_times/20200911/04_residual_20200905_20200911.png new file mode 100644 index 00000000..c7da8248 Binary files /dev/null and b/campi_flegrei_example_all_times/20200911/04_residual_20200905_20200911.png differ diff --git a/campi_flegrei_example_all_times/20200911/LiCSAlert_figure_with_207_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200911/LiCSAlert_figure_with_207_monitoring_interferograms.png new file mode 100644 index 00000000..f5b4acad Binary files /dev/null and b/campi_flegrei_example_all_times/20200911/LiCSAlert_figure_with_207_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200911/mask_status.png b/campi_flegrei_example_all_times/20200911/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200911/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200911/volcano_status.txt b/campi_flegrei_example_all_times/20200911/volcano_status.txt new file mode 100644 index 00000000..cc7865ad --- /dev/null +++ b/campi_flegrei_example_all_times/20200911/volcano_status.txt @@ -0,0 +1,2 @@ +0.01681845557187028 +1.3841443928425545 diff --git a/campi_flegrei_example_all_times/20200917/01_cumulative_20141031_20200917.png b/campi_flegrei_example_all_times/20200917/01_cumulative_20141031_20200917.png new file mode 100644 index 00000000..caf7bfa3 Binary files /dev/null and b/campi_flegrei_example_all_times/20200917/01_cumulative_20141031_20200917.png differ diff --git a/campi_flegrei_example_all_times/20200917/02_incremental_20200911_20200917.png b/campi_flegrei_example_all_times/20200917/02_incremental_20200911_20200917.png new file mode 100644 index 00000000..1ceb720f Binary files /dev/null and b/campi_flegrei_example_all_times/20200917/02_incremental_20200911_20200917.png differ diff --git a/campi_flegrei_example_all_times/20200917/03_reconstruction_20200911_20200917.png b/campi_flegrei_example_all_times/20200917/03_reconstruction_20200911_20200917.png new file mode 100644 index 00000000..4e7bd2f4 Binary files /dev/null and b/campi_flegrei_example_all_times/20200917/03_reconstruction_20200911_20200917.png differ diff --git a/campi_flegrei_example_all_times/20200917/04_residual_20200911_20200917.png b/campi_flegrei_example_all_times/20200917/04_residual_20200911_20200917.png new file mode 100644 index 00000000..c307573f Binary files /dev/null and b/campi_flegrei_example_all_times/20200917/04_residual_20200911_20200917.png differ diff --git a/campi_flegrei_example_all_times/20200917/LiCSAlert_figure_with_208_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200917/LiCSAlert_figure_with_208_monitoring_interferograms.png new file mode 100644 index 00000000..5060667f Binary files /dev/null and b/campi_flegrei_example_all_times/20200917/LiCSAlert_figure_with_208_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200917/mask_status.png b/campi_flegrei_example_all_times/20200917/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200917/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200917/volcano_status.txt b/campi_flegrei_example_all_times/20200917/volcano_status.txt new file mode 100644 index 00000000..b447c21c --- /dev/null +++ b/campi_flegrei_example_all_times/20200917/volcano_status.txt @@ -0,0 +1,2 @@ +2.100385653622226 +0.7256784547892569 diff --git a/campi_flegrei_example_all_times/20200923/01_cumulative_20141031_20200923.png b/campi_flegrei_example_all_times/20200923/01_cumulative_20141031_20200923.png new file mode 100644 index 00000000..b2f497a3 Binary files /dev/null and b/campi_flegrei_example_all_times/20200923/01_cumulative_20141031_20200923.png differ diff --git a/campi_flegrei_example_all_times/20200923/02_incremental_20200917_20200923.png b/campi_flegrei_example_all_times/20200923/02_incremental_20200917_20200923.png new file mode 100644 index 00000000..15b169ec Binary files /dev/null and b/campi_flegrei_example_all_times/20200923/02_incremental_20200917_20200923.png differ diff --git a/campi_flegrei_example_all_times/20200923/03_reconstruction_20200917_20200923.png b/campi_flegrei_example_all_times/20200923/03_reconstruction_20200917_20200923.png new file mode 100644 index 00000000..697c07f3 Binary files /dev/null and b/campi_flegrei_example_all_times/20200923/03_reconstruction_20200917_20200923.png differ diff --git a/campi_flegrei_example_all_times/20200923/04_residual_20200917_20200923.png b/campi_flegrei_example_all_times/20200923/04_residual_20200917_20200923.png new file mode 100644 index 00000000..126bd800 Binary files /dev/null and b/campi_flegrei_example_all_times/20200923/04_residual_20200917_20200923.png differ diff --git a/campi_flegrei_example_all_times/20200923/LiCSAlert_figure_with_209_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200923/LiCSAlert_figure_with_209_monitoring_interferograms.png new file mode 100644 index 00000000..58509270 Binary files /dev/null and b/campi_flegrei_example_all_times/20200923/LiCSAlert_figure_with_209_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200923/mask_status.png b/campi_flegrei_example_all_times/20200923/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200923/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200923/volcano_status.txt b/campi_flegrei_example_all_times/20200923/volcano_status.txt new file mode 100644 index 00000000..385bfb6f --- /dev/null +++ b/campi_flegrei_example_all_times/20200923/volcano_status.txt @@ -0,0 +1,2 @@ +0.5611070524882181 +7.167962436725745 diff --git a/campi_flegrei_example_all_times/20200929/01_cumulative_20141031_20200929.png b/campi_flegrei_example_all_times/20200929/01_cumulative_20141031_20200929.png new file mode 100644 index 00000000..e108d7c5 Binary files /dev/null and b/campi_flegrei_example_all_times/20200929/01_cumulative_20141031_20200929.png differ diff --git a/campi_flegrei_example_all_times/20200929/02_incremental_20200923_20200929.png b/campi_flegrei_example_all_times/20200929/02_incremental_20200923_20200929.png new file mode 100644 index 00000000..9932d8e5 Binary files /dev/null and b/campi_flegrei_example_all_times/20200929/02_incremental_20200923_20200929.png differ diff --git a/campi_flegrei_example_all_times/20200929/03_reconstruction_20200923_20200929.png b/campi_flegrei_example_all_times/20200929/03_reconstruction_20200923_20200929.png new file mode 100644 index 00000000..d2024d0b Binary files /dev/null and b/campi_flegrei_example_all_times/20200929/03_reconstruction_20200923_20200929.png differ diff --git a/campi_flegrei_example_all_times/20200929/04_residual_20200923_20200929.png b/campi_flegrei_example_all_times/20200929/04_residual_20200923_20200929.png new file mode 100644 index 00000000..79b8cfb9 Binary files /dev/null and b/campi_flegrei_example_all_times/20200929/04_residual_20200923_20200929.png differ diff --git a/campi_flegrei_example_all_times/20200929/LiCSAlert_figure_with_210_monitoring_interferograms.png b/campi_flegrei_example_all_times/20200929/LiCSAlert_figure_with_210_monitoring_interferograms.png new file mode 100644 index 00000000..982145b7 Binary files /dev/null and b/campi_flegrei_example_all_times/20200929/LiCSAlert_figure_with_210_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20200929/mask_status.png b/campi_flegrei_example_all_times/20200929/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20200929/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20200929/volcano_status.txt b/campi_flegrei_example_all_times/20200929/volcano_status.txt new file mode 100644 index 00000000..8e89fa1a --- /dev/null +++ b/campi_flegrei_example_all_times/20200929/volcano_status.txt @@ -0,0 +1,2 @@ +0.2992186942892744 +1.2494997137655903 diff --git a/campi_flegrei_example_all_times/20201005/01_cumulative_20141031_20201005.png b/campi_flegrei_example_all_times/20201005/01_cumulative_20141031_20201005.png new file mode 100644 index 00000000..f90cace7 Binary files /dev/null and b/campi_flegrei_example_all_times/20201005/01_cumulative_20141031_20201005.png differ diff --git a/campi_flegrei_example_all_times/20201005/02_incremental_20200929_20201005.png b/campi_flegrei_example_all_times/20201005/02_incremental_20200929_20201005.png new file mode 100644 index 00000000..1953f47c Binary files /dev/null and b/campi_flegrei_example_all_times/20201005/02_incremental_20200929_20201005.png differ diff --git a/campi_flegrei_example_all_times/20201005/03_reconstruction_20200929_20201005.png b/campi_flegrei_example_all_times/20201005/03_reconstruction_20200929_20201005.png new file mode 100644 index 00000000..d675f650 Binary files /dev/null and b/campi_flegrei_example_all_times/20201005/03_reconstruction_20200929_20201005.png differ diff --git a/campi_flegrei_example_all_times/20201005/04_residual_20200929_20201005.png b/campi_flegrei_example_all_times/20201005/04_residual_20200929_20201005.png new file mode 100644 index 00000000..4b5ba021 Binary files /dev/null and b/campi_flegrei_example_all_times/20201005/04_residual_20200929_20201005.png differ diff --git a/campi_flegrei_example_all_times/20201005/LiCSAlert_figure_with_211_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201005/LiCSAlert_figure_with_211_monitoring_interferograms.png new file mode 100644 index 00000000..a1eeda07 Binary files /dev/null and b/campi_flegrei_example_all_times/20201005/LiCSAlert_figure_with_211_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201005/mask_status.png b/campi_flegrei_example_all_times/20201005/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201005/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201005/volcano_status.txt b/campi_flegrei_example_all_times/20201005/volcano_status.txt new file mode 100644 index 00000000..215ba32a --- /dev/null +++ b/campi_flegrei_example_all_times/20201005/volcano_status.txt @@ -0,0 +1,2 @@ +0.7130861354249358 +0.15266055006904328 diff --git a/campi_flegrei_example_all_times/20201011/01_cumulative_20141031_20201011.png b/campi_flegrei_example_all_times/20201011/01_cumulative_20141031_20201011.png new file mode 100644 index 00000000..2dcf0dd4 Binary files /dev/null and b/campi_flegrei_example_all_times/20201011/01_cumulative_20141031_20201011.png differ diff --git a/campi_flegrei_example_all_times/20201011/02_incremental_20201005_20201011.png b/campi_flegrei_example_all_times/20201011/02_incremental_20201005_20201011.png new file mode 100644 index 00000000..bcccc196 Binary files /dev/null and b/campi_flegrei_example_all_times/20201011/02_incremental_20201005_20201011.png differ diff --git a/campi_flegrei_example_all_times/20201011/03_reconstruction_20201005_20201011.png b/campi_flegrei_example_all_times/20201011/03_reconstruction_20201005_20201011.png new file mode 100644 index 00000000..1678305a Binary files /dev/null and b/campi_flegrei_example_all_times/20201011/03_reconstruction_20201005_20201011.png differ diff --git a/campi_flegrei_example_all_times/20201011/04_residual_20201005_20201011.png b/campi_flegrei_example_all_times/20201011/04_residual_20201005_20201011.png new file mode 100644 index 00000000..5bb75a59 Binary files /dev/null and b/campi_flegrei_example_all_times/20201011/04_residual_20201005_20201011.png differ diff --git a/campi_flegrei_example_all_times/20201011/LiCSAlert_figure_with_212_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201011/LiCSAlert_figure_with_212_monitoring_interferograms.png new file mode 100644 index 00000000..aef193a9 Binary files /dev/null and b/campi_flegrei_example_all_times/20201011/LiCSAlert_figure_with_212_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201011/mask_status.png b/campi_flegrei_example_all_times/20201011/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201011/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201011/volcano_status.txt b/campi_flegrei_example_all_times/20201011/volcano_status.txt new file mode 100644 index 00000000..459187ff --- /dev/null +++ b/campi_flegrei_example_all_times/20201011/volcano_status.txt @@ -0,0 +1,2 @@ +0.7255730254549002 +0.8772009605049973 diff --git a/campi_flegrei_example_all_times/20201017/01_cumulative_20141031_20201017.png b/campi_flegrei_example_all_times/20201017/01_cumulative_20141031_20201017.png new file mode 100644 index 00000000..aceaa6ef Binary files /dev/null and b/campi_flegrei_example_all_times/20201017/01_cumulative_20141031_20201017.png differ diff --git a/campi_flegrei_example_all_times/20201017/02_incremental_20201011_20201017.png b/campi_flegrei_example_all_times/20201017/02_incremental_20201011_20201017.png new file mode 100644 index 00000000..997831ab Binary files /dev/null and b/campi_flegrei_example_all_times/20201017/02_incremental_20201011_20201017.png differ diff --git a/campi_flegrei_example_all_times/20201017/03_reconstruction_20201011_20201017.png b/campi_flegrei_example_all_times/20201017/03_reconstruction_20201011_20201017.png new file mode 100644 index 00000000..fce1ef9a Binary files /dev/null and b/campi_flegrei_example_all_times/20201017/03_reconstruction_20201011_20201017.png differ diff --git a/campi_flegrei_example_all_times/20201017/04_residual_20201011_20201017.png b/campi_flegrei_example_all_times/20201017/04_residual_20201011_20201017.png new file mode 100644 index 00000000..222e8af8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201017/04_residual_20201011_20201017.png differ diff --git a/campi_flegrei_example_all_times/20201017/LiCSAlert_figure_with_213_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201017/LiCSAlert_figure_with_213_monitoring_interferograms.png new file mode 100644 index 00000000..c5a509d1 Binary files /dev/null and b/campi_flegrei_example_all_times/20201017/LiCSAlert_figure_with_213_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201017/mask_status.png b/campi_flegrei_example_all_times/20201017/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201017/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201017/volcano_status.txt b/campi_flegrei_example_all_times/20201017/volcano_status.txt new file mode 100644 index 00000000..0241db5d --- /dev/null +++ b/campi_flegrei_example_all_times/20201017/volcano_status.txt @@ -0,0 +1,2 @@ +2.068641832571429 +0.09750393104164627 diff --git a/campi_flegrei_example_all_times/20201023/01_cumulative_20141031_20201023.png b/campi_flegrei_example_all_times/20201023/01_cumulative_20141031_20201023.png new file mode 100644 index 00000000..ba82caec Binary files /dev/null and b/campi_flegrei_example_all_times/20201023/01_cumulative_20141031_20201023.png differ diff --git a/campi_flegrei_example_all_times/20201023/02_incremental_20201017_20201023.png b/campi_flegrei_example_all_times/20201023/02_incremental_20201017_20201023.png new file mode 100644 index 00000000..866d36bc Binary files /dev/null and b/campi_flegrei_example_all_times/20201023/02_incremental_20201017_20201023.png differ diff --git a/campi_flegrei_example_all_times/20201023/03_reconstruction_20201017_20201023.png b/campi_flegrei_example_all_times/20201023/03_reconstruction_20201017_20201023.png new file mode 100644 index 00000000..20b7af3c Binary files /dev/null and b/campi_flegrei_example_all_times/20201023/03_reconstruction_20201017_20201023.png differ diff --git a/campi_flegrei_example_all_times/20201023/04_residual_20201017_20201023.png b/campi_flegrei_example_all_times/20201023/04_residual_20201017_20201023.png new file mode 100644 index 00000000..f2c3d1d1 Binary files /dev/null and b/campi_flegrei_example_all_times/20201023/04_residual_20201017_20201023.png differ diff --git a/campi_flegrei_example_all_times/20201023/LiCSAlert_figure_with_214_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201023/LiCSAlert_figure_with_214_monitoring_interferograms.png new file mode 100644 index 00000000..0f50da82 Binary files /dev/null and b/campi_flegrei_example_all_times/20201023/LiCSAlert_figure_with_214_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201023/mask_status.png b/campi_flegrei_example_all_times/20201023/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201023/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201023/volcano_status.txt b/campi_flegrei_example_all_times/20201023/volcano_status.txt new file mode 100644 index 00000000..618f1c67 --- /dev/null +++ b/campi_flegrei_example_all_times/20201023/volcano_status.txt @@ -0,0 +1,2 @@ +0.8074877925491107 +1.06302757847869 diff --git a/campi_flegrei_example_all_times/20201029/01_cumulative_20141031_20201029.png b/campi_flegrei_example_all_times/20201029/01_cumulative_20141031_20201029.png new file mode 100644 index 00000000..5657d66c Binary files /dev/null and b/campi_flegrei_example_all_times/20201029/01_cumulative_20141031_20201029.png differ diff --git a/campi_flegrei_example_all_times/20201029/02_incremental_20201023_20201029.png b/campi_flegrei_example_all_times/20201029/02_incremental_20201023_20201029.png new file mode 100644 index 00000000..c06f2771 Binary files /dev/null and b/campi_flegrei_example_all_times/20201029/02_incremental_20201023_20201029.png differ diff --git a/campi_flegrei_example_all_times/20201029/03_reconstruction_20201023_20201029.png b/campi_flegrei_example_all_times/20201029/03_reconstruction_20201023_20201029.png new file mode 100644 index 00000000..74773a49 Binary files /dev/null and b/campi_flegrei_example_all_times/20201029/03_reconstruction_20201023_20201029.png differ diff --git a/campi_flegrei_example_all_times/20201029/04_residual_20201023_20201029.png b/campi_flegrei_example_all_times/20201029/04_residual_20201023_20201029.png new file mode 100644 index 00000000..d990c9d4 Binary files /dev/null and b/campi_flegrei_example_all_times/20201029/04_residual_20201023_20201029.png differ diff --git a/campi_flegrei_example_all_times/20201029/LiCSAlert_figure_with_215_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201029/LiCSAlert_figure_with_215_monitoring_interferograms.png new file mode 100644 index 00000000..377b0c3e Binary files /dev/null and b/campi_flegrei_example_all_times/20201029/LiCSAlert_figure_with_215_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201029/mask_status.png b/campi_flegrei_example_all_times/20201029/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201029/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201029/volcano_status.txt b/campi_flegrei_example_all_times/20201029/volcano_status.txt new file mode 100644 index 00000000..2e14bb97 --- /dev/null +++ b/campi_flegrei_example_all_times/20201029/volcano_status.txt @@ -0,0 +1,2 @@ +1.3410497934786865 +0.15569202030611642 diff --git a/campi_flegrei_example_all_times/20201104/01_cumulative_20141031_20201104.png b/campi_flegrei_example_all_times/20201104/01_cumulative_20141031_20201104.png new file mode 100644 index 00000000..38cc0b22 Binary files /dev/null and b/campi_flegrei_example_all_times/20201104/01_cumulative_20141031_20201104.png differ diff --git a/campi_flegrei_example_all_times/20201104/02_incremental_20201029_20201104.png b/campi_flegrei_example_all_times/20201104/02_incremental_20201029_20201104.png new file mode 100644 index 00000000..4a828f74 Binary files /dev/null and b/campi_flegrei_example_all_times/20201104/02_incremental_20201029_20201104.png differ diff --git a/campi_flegrei_example_all_times/20201104/03_reconstruction_20201029_20201104.png b/campi_flegrei_example_all_times/20201104/03_reconstruction_20201029_20201104.png new file mode 100644 index 00000000..8870793a Binary files /dev/null and b/campi_flegrei_example_all_times/20201104/03_reconstruction_20201029_20201104.png differ diff --git a/campi_flegrei_example_all_times/20201104/04_residual_20201029_20201104.png b/campi_flegrei_example_all_times/20201104/04_residual_20201029_20201104.png new file mode 100644 index 00000000..7af427d8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201104/04_residual_20201029_20201104.png differ diff --git a/campi_flegrei_example_all_times/20201104/LiCSAlert_figure_with_216_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201104/LiCSAlert_figure_with_216_monitoring_interferograms.png new file mode 100644 index 00000000..df6c16f8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201104/LiCSAlert_figure_with_216_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201104/mask_status.png b/campi_flegrei_example_all_times/20201104/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201104/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201104/volcano_status.txt b/campi_flegrei_example_all_times/20201104/volcano_status.txt new file mode 100644 index 00000000..15d82f28 --- /dev/null +++ b/campi_flegrei_example_all_times/20201104/volcano_status.txt @@ -0,0 +1,2 @@ +1.1558133022965387 +0.3306451480141063 diff --git a/campi_flegrei_example_all_times/20201110/01_cumulative_20141031_20201110.png b/campi_flegrei_example_all_times/20201110/01_cumulative_20141031_20201110.png new file mode 100644 index 00000000..745e3763 Binary files /dev/null and b/campi_flegrei_example_all_times/20201110/01_cumulative_20141031_20201110.png differ diff --git a/campi_flegrei_example_all_times/20201110/02_incremental_20201104_20201110.png b/campi_flegrei_example_all_times/20201110/02_incremental_20201104_20201110.png new file mode 100644 index 00000000..b4c5ae99 Binary files /dev/null and b/campi_flegrei_example_all_times/20201110/02_incremental_20201104_20201110.png differ diff --git a/campi_flegrei_example_all_times/20201110/03_reconstruction_20201104_20201110.png b/campi_flegrei_example_all_times/20201110/03_reconstruction_20201104_20201110.png new file mode 100644 index 00000000..a5cd34e1 Binary files /dev/null and b/campi_flegrei_example_all_times/20201110/03_reconstruction_20201104_20201110.png differ diff --git a/campi_flegrei_example_all_times/20201110/04_residual_20201104_20201110.png b/campi_flegrei_example_all_times/20201110/04_residual_20201104_20201110.png new file mode 100644 index 00000000..bea8800a Binary files /dev/null and b/campi_flegrei_example_all_times/20201110/04_residual_20201104_20201110.png differ diff --git a/campi_flegrei_example_all_times/20201110/LiCSAlert_figure_with_217_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201110/LiCSAlert_figure_with_217_monitoring_interferograms.png new file mode 100644 index 00000000..9e0873b3 Binary files /dev/null and b/campi_flegrei_example_all_times/20201110/LiCSAlert_figure_with_217_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201110/mask_status.png b/campi_flegrei_example_all_times/20201110/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201110/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201110/volcano_status.txt b/campi_flegrei_example_all_times/20201110/volcano_status.txt new file mode 100644 index 00000000..8d0d9533 --- /dev/null +++ b/campi_flegrei_example_all_times/20201110/volcano_status.txt @@ -0,0 +1,2 @@ +1.113171218144499 +1.1166393446592375 diff --git a/campi_flegrei_example_all_times/20201116/01_cumulative_20141031_20201116.png b/campi_flegrei_example_all_times/20201116/01_cumulative_20141031_20201116.png new file mode 100644 index 00000000..43f6ff8e Binary files /dev/null and b/campi_flegrei_example_all_times/20201116/01_cumulative_20141031_20201116.png differ diff --git a/campi_flegrei_example_all_times/20201116/02_incremental_20201110_20201116.png b/campi_flegrei_example_all_times/20201116/02_incremental_20201110_20201116.png new file mode 100644 index 00000000..6ae607a8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201116/02_incremental_20201110_20201116.png differ diff --git a/campi_flegrei_example_all_times/20201116/03_reconstruction_20201110_20201116.png b/campi_flegrei_example_all_times/20201116/03_reconstruction_20201110_20201116.png new file mode 100644 index 00000000..37f61d64 Binary files /dev/null and b/campi_flegrei_example_all_times/20201116/03_reconstruction_20201110_20201116.png differ diff --git a/campi_flegrei_example_all_times/20201116/04_residual_20201110_20201116.png b/campi_flegrei_example_all_times/20201116/04_residual_20201110_20201116.png new file mode 100644 index 00000000..5103e0b7 Binary files /dev/null and b/campi_flegrei_example_all_times/20201116/04_residual_20201110_20201116.png differ diff --git a/campi_flegrei_example_all_times/20201116/LiCSAlert_figure_with_218_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201116/LiCSAlert_figure_with_218_monitoring_interferograms.png new file mode 100644 index 00000000..5a21f042 Binary files /dev/null and b/campi_flegrei_example_all_times/20201116/LiCSAlert_figure_with_218_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201116/mask_status.png b/campi_flegrei_example_all_times/20201116/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201116/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201116/volcano_status.txt b/campi_flegrei_example_all_times/20201116/volcano_status.txt new file mode 100644 index 00000000..58e0b88d --- /dev/null +++ b/campi_flegrei_example_all_times/20201116/volcano_status.txt @@ -0,0 +1,2 @@ +3.3744702791618666 +0.8174657940341047 diff --git a/campi_flegrei_example_all_times/20201122/01_cumulative_20141031_20201122.png b/campi_flegrei_example_all_times/20201122/01_cumulative_20141031_20201122.png new file mode 100644 index 00000000..faf45f2c Binary files /dev/null and b/campi_flegrei_example_all_times/20201122/01_cumulative_20141031_20201122.png differ diff --git a/campi_flegrei_example_all_times/20201122/02_incremental_20201116_20201122.png b/campi_flegrei_example_all_times/20201122/02_incremental_20201116_20201122.png new file mode 100644 index 00000000..02972b9b Binary files /dev/null and b/campi_flegrei_example_all_times/20201122/02_incremental_20201116_20201122.png differ diff --git a/campi_flegrei_example_all_times/20201122/03_reconstruction_20201116_20201122.png b/campi_flegrei_example_all_times/20201122/03_reconstruction_20201116_20201122.png new file mode 100644 index 00000000..cfe3f1fa Binary files /dev/null and b/campi_flegrei_example_all_times/20201122/03_reconstruction_20201116_20201122.png differ diff --git a/campi_flegrei_example_all_times/20201122/04_residual_20201116_20201122.png b/campi_flegrei_example_all_times/20201122/04_residual_20201116_20201122.png new file mode 100644 index 00000000..22924350 Binary files /dev/null and b/campi_flegrei_example_all_times/20201122/04_residual_20201116_20201122.png differ diff --git a/campi_flegrei_example_all_times/20201122/LiCSAlert_figure_with_219_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201122/LiCSAlert_figure_with_219_monitoring_interferograms.png new file mode 100644 index 00000000..41b405a3 Binary files /dev/null and b/campi_flegrei_example_all_times/20201122/LiCSAlert_figure_with_219_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201122/mask_status.png b/campi_flegrei_example_all_times/20201122/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201122/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201122/volcano_status.txt b/campi_flegrei_example_all_times/20201122/volcano_status.txt new file mode 100644 index 00000000..32aa1484 --- /dev/null +++ b/campi_flegrei_example_all_times/20201122/volcano_status.txt @@ -0,0 +1,2 @@ +1.1253134698965028 +1.399754929645085 diff --git a/campi_flegrei_example_all_times/20201128/01_cumulative_20141031_20201128.png b/campi_flegrei_example_all_times/20201128/01_cumulative_20141031_20201128.png new file mode 100644 index 00000000..9c31d940 Binary files /dev/null and b/campi_flegrei_example_all_times/20201128/01_cumulative_20141031_20201128.png differ diff --git a/campi_flegrei_example_all_times/20201128/02_incremental_20201122_20201128.png b/campi_flegrei_example_all_times/20201128/02_incremental_20201122_20201128.png new file mode 100644 index 00000000..2efea233 Binary files /dev/null and b/campi_flegrei_example_all_times/20201128/02_incremental_20201122_20201128.png differ diff --git a/campi_flegrei_example_all_times/20201128/03_reconstruction_20201122_20201128.png b/campi_flegrei_example_all_times/20201128/03_reconstruction_20201122_20201128.png new file mode 100644 index 00000000..296d9a21 Binary files /dev/null and b/campi_flegrei_example_all_times/20201128/03_reconstruction_20201122_20201128.png differ diff --git a/campi_flegrei_example_all_times/20201128/04_residual_20201122_20201128.png b/campi_flegrei_example_all_times/20201128/04_residual_20201122_20201128.png new file mode 100644 index 00000000..9d6399e3 Binary files /dev/null and b/campi_flegrei_example_all_times/20201128/04_residual_20201122_20201128.png differ diff --git a/campi_flegrei_example_all_times/20201128/LiCSAlert_figure_with_220_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201128/LiCSAlert_figure_with_220_monitoring_interferograms.png new file mode 100644 index 00000000..3acb8b07 Binary files /dev/null and b/campi_flegrei_example_all_times/20201128/LiCSAlert_figure_with_220_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201128/mask_status.png b/campi_flegrei_example_all_times/20201128/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201128/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201128/volcano_status.txt b/campi_flegrei_example_all_times/20201128/volcano_status.txt new file mode 100644 index 00000000..2166fbe5 --- /dev/null +++ b/campi_flegrei_example_all_times/20201128/volcano_status.txt @@ -0,0 +1,2 @@ +0.7706550698706562 +0.7241475797248953 diff --git a/campi_flegrei_example_all_times/20201204/01_cumulative_20141031_20201204.png b/campi_flegrei_example_all_times/20201204/01_cumulative_20141031_20201204.png new file mode 100644 index 00000000..b881f866 Binary files /dev/null and b/campi_flegrei_example_all_times/20201204/01_cumulative_20141031_20201204.png differ diff --git a/campi_flegrei_example_all_times/20201204/02_incremental_20201128_20201204.png b/campi_flegrei_example_all_times/20201204/02_incremental_20201128_20201204.png new file mode 100644 index 00000000..8fe736f9 Binary files /dev/null and b/campi_flegrei_example_all_times/20201204/02_incremental_20201128_20201204.png differ diff --git a/campi_flegrei_example_all_times/20201204/03_reconstruction_20201128_20201204.png b/campi_flegrei_example_all_times/20201204/03_reconstruction_20201128_20201204.png new file mode 100644 index 00000000..ea439e15 Binary files /dev/null and b/campi_flegrei_example_all_times/20201204/03_reconstruction_20201128_20201204.png differ diff --git a/campi_flegrei_example_all_times/20201204/04_residual_20201128_20201204.png b/campi_flegrei_example_all_times/20201204/04_residual_20201128_20201204.png new file mode 100644 index 00000000..d71b59a4 Binary files /dev/null and b/campi_flegrei_example_all_times/20201204/04_residual_20201128_20201204.png differ diff --git a/campi_flegrei_example_all_times/20201204/LiCSAlert_figure_with_221_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201204/LiCSAlert_figure_with_221_monitoring_interferograms.png new file mode 100644 index 00000000..1e2c658e Binary files /dev/null and b/campi_flegrei_example_all_times/20201204/LiCSAlert_figure_with_221_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201204/mask_status.png b/campi_flegrei_example_all_times/20201204/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201204/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201204/volcano_status.txt b/campi_flegrei_example_all_times/20201204/volcano_status.txt new file mode 100644 index 00000000..e3423cbb --- /dev/null +++ b/campi_flegrei_example_all_times/20201204/volcano_status.txt @@ -0,0 +1,2 @@ +0.28092475463825795 +0.9820539351324649 diff --git a/campi_flegrei_example_all_times/20201210/01_cumulative_20141031_20201210.png b/campi_flegrei_example_all_times/20201210/01_cumulative_20141031_20201210.png new file mode 100644 index 00000000..163f269d Binary files /dev/null and b/campi_flegrei_example_all_times/20201210/01_cumulative_20141031_20201210.png differ diff --git a/campi_flegrei_example_all_times/20201210/02_incremental_20201204_20201210.png b/campi_flegrei_example_all_times/20201210/02_incremental_20201204_20201210.png new file mode 100644 index 00000000..65c0e989 Binary files /dev/null and b/campi_flegrei_example_all_times/20201210/02_incremental_20201204_20201210.png differ diff --git a/campi_flegrei_example_all_times/20201210/03_reconstruction_20201204_20201210.png b/campi_flegrei_example_all_times/20201210/03_reconstruction_20201204_20201210.png new file mode 100644 index 00000000..4c98f4ee Binary files /dev/null and b/campi_flegrei_example_all_times/20201210/03_reconstruction_20201204_20201210.png differ diff --git a/campi_flegrei_example_all_times/20201210/04_residual_20201204_20201210.png b/campi_flegrei_example_all_times/20201210/04_residual_20201204_20201210.png new file mode 100644 index 00000000..5f5c6646 Binary files /dev/null and b/campi_flegrei_example_all_times/20201210/04_residual_20201204_20201210.png differ diff --git a/campi_flegrei_example_all_times/20201210/LiCSAlert_figure_with_222_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201210/LiCSAlert_figure_with_222_monitoring_interferograms.png new file mode 100644 index 00000000..d7d43658 Binary files /dev/null and b/campi_flegrei_example_all_times/20201210/LiCSAlert_figure_with_222_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201210/mask_status.png b/campi_flegrei_example_all_times/20201210/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201210/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201210/volcano_status.txt b/campi_flegrei_example_all_times/20201210/volcano_status.txt new file mode 100644 index 00000000..7f564b52 --- /dev/null +++ b/campi_flegrei_example_all_times/20201210/volcano_status.txt @@ -0,0 +1,2 @@ +2.034635934135661 +0.15919446935104864 diff --git a/campi_flegrei_example_all_times/20201216/01_cumulative_20141031_20201216.png b/campi_flegrei_example_all_times/20201216/01_cumulative_20141031_20201216.png new file mode 100644 index 00000000..e88c6acc Binary files /dev/null and b/campi_flegrei_example_all_times/20201216/01_cumulative_20141031_20201216.png differ diff --git a/campi_flegrei_example_all_times/20201216/02_incremental_20201210_20201216.png b/campi_flegrei_example_all_times/20201216/02_incremental_20201210_20201216.png new file mode 100644 index 00000000..d4f2f0ff Binary files /dev/null and b/campi_flegrei_example_all_times/20201216/02_incremental_20201210_20201216.png differ diff --git a/campi_flegrei_example_all_times/20201216/03_reconstruction_20201210_20201216.png b/campi_flegrei_example_all_times/20201216/03_reconstruction_20201210_20201216.png new file mode 100644 index 00000000..657c9e33 Binary files /dev/null and b/campi_flegrei_example_all_times/20201216/03_reconstruction_20201210_20201216.png differ diff --git a/campi_flegrei_example_all_times/20201216/04_residual_20201210_20201216.png b/campi_flegrei_example_all_times/20201216/04_residual_20201210_20201216.png new file mode 100644 index 00000000..7382c835 Binary files /dev/null and b/campi_flegrei_example_all_times/20201216/04_residual_20201210_20201216.png differ diff --git a/campi_flegrei_example_all_times/20201216/LiCSAlert_figure_with_223_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201216/LiCSAlert_figure_with_223_monitoring_interferograms.png new file mode 100644 index 00000000..bfb8e075 Binary files /dev/null and b/campi_flegrei_example_all_times/20201216/LiCSAlert_figure_with_223_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201216/mask_status.png b/campi_flegrei_example_all_times/20201216/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201216/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201216/volcano_status.txt b/campi_flegrei_example_all_times/20201216/volcano_status.txt new file mode 100644 index 00000000..d48f0c7c --- /dev/null +++ b/campi_flegrei_example_all_times/20201216/volcano_status.txt @@ -0,0 +1,2 @@ +0.5013990052098659 +0.2766814185737321 diff --git a/campi_flegrei_example_all_times/20201222/01_cumulative_20141031_20201222.png b/campi_flegrei_example_all_times/20201222/01_cumulative_20141031_20201222.png new file mode 100644 index 00000000..7699b0e7 Binary files /dev/null and b/campi_flegrei_example_all_times/20201222/01_cumulative_20141031_20201222.png differ diff --git a/campi_flegrei_example_all_times/20201222/02_incremental_20201216_20201222.png b/campi_flegrei_example_all_times/20201222/02_incremental_20201216_20201222.png new file mode 100644 index 00000000..926a03d0 Binary files /dev/null and b/campi_flegrei_example_all_times/20201222/02_incremental_20201216_20201222.png differ diff --git a/campi_flegrei_example_all_times/20201222/03_reconstruction_20201216_20201222.png b/campi_flegrei_example_all_times/20201222/03_reconstruction_20201216_20201222.png new file mode 100644 index 00000000..61785f11 Binary files /dev/null and b/campi_flegrei_example_all_times/20201222/03_reconstruction_20201216_20201222.png differ diff --git a/campi_flegrei_example_all_times/20201222/04_residual_20201216_20201222.png b/campi_flegrei_example_all_times/20201222/04_residual_20201216_20201222.png new file mode 100644 index 00000000..0c7646dd Binary files /dev/null and b/campi_flegrei_example_all_times/20201222/04_residual_20201216_20201222.png differ diff --git a/campi_flegrei_example_all_times/20201222/LiCSAlert_figure_with_224_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201222/LiCSAlert_figure_with_224_monitoring_interferograms.png new file mode 100644 index 00000000..3af59b6a Binary files /dev/null and b/campi_flegrei_example_all_times/20201222/LiCSAlert_figure_with_224_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201222/mask_status.png b/campi_flegrei_example_all_times/20201222/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201222/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201222/volcano_status.txt b/campi_flegrei_example_all_times/20201222/volcano_status.txt new file mode 100644 index 00000000..443ce208 --- /dev/null +++ b/campi_flegrei_example_all_times/20201222/volcano_status.txt @@ -0,0 +1,2 @@ +0.6343034392353999 +0.8025164104784343 diff --git a/campi_flegrei_example_all_times/20201228/01_cumulative_20141031_20201228.png b/campi_flegrei_example_all_times/20201228/01_cumulative_20141031_20201228.png new file mode 100644 index 00000000..94373216 Binary files /dev/null and b/campi_flegrei_example_all_times/20201228/01_cumulative_20141031_20201228.png differ diff --git a/campi_flegrei_example_all_times/20201228/02_incremental_20201222_20201228.png b/campi_flegrei_example_all_times/20201228/02_incremental_20201222_20201228.png new file mode 100644 index 00000000..d6af3ff0 Binary files /dev/null and b/campi_flegrei_example_all_times/20201228/02_incremental_20201222_20201228.png differ diff --git a/campi_flegrei_example_all_times/20201228/03_reconstruction_20201222_20201228.png b/campi_flegrei_example_all_times/20201228/03_reconstruction_20201222_20201228.png new file mode 100644 index 00000000..fb133a6b Binary files /dev/null and b/campi_flegrei_example_all_times/20201228/03_reconstruction_20201222_20201228.png differ diff --git a/campi_flegrei_example_all_times/20201228/04_residual_20201222_20201228.png b/campi_flegrei_example_all_times/20201228/04_residual_20201222_20201228.png new file mode 100644 index 00000000..0a730135 Binary files /dev/null and b/campi_flegrei_example_all_times/20201228/04_residual_20201222_20201228.png differ diff --git a/campi_flegrei_example_all_times/20201228/LiCSAlert_figure_with_225_monitoring_interferograms.png b/campi_flegrei_example_all_times/20201228/LiCSAlert_figure_with_225_monitoring_interferograms.png new file mode 100644 index 00000000..a397c885 Binary files /dev/null and b/campi_flegrei_example_all_times/20201228/LiCSAlert_figure_with_225_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20201228/mask_status.png b/campi_flegrei_example_all_times/20201228/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20201228/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20201228/volcano_status.txt b/campi_flegrei_example_all_times/20201228/volcano_status.txt new file mode 100644 index 00000000..f240007c --- /dev/null +++ b/campi_flegrei_example_all_times/20201228/volcano_status.txt @@ -0,0 +1,2 @@ +0.0326591712136227 +0.09199314689734486 diff --git a/campi_flegrei_example_all_times/20210103/01_cumulative_20141031_20210103.png b/campi_flegrei_example_all_times/20210103/01_cumulative_20141031_20210103.png new file mode 100644 index 00000000..e6416f09 Binary files /dev/null and b/campi_flegrei_example_all_times/20210103/01_cumulative_20141031_20210103.png differ diff --git a/campi_flegrei_example_all_times/20210103/02_incremental_20201228_20210103.png b/campi_flegrei_example_all_times/20210103/02_incremental_20201228_20210103.png new file mode 100644 index 00000000..4e5e8b6e Binary files /dev/null and b/campi_flegrei_example_all_times/20210103/02_incremental_20201228_20210103.png differ diff --git a/campi_flegrei_example_all_times/20210103/03_reconstruction_20201228_20210103.png b/campi_flegrei_example_all_times/20210103/03_reconstruction_20201228_20210103.png new file mode 100644 index 00000000..9612788a Binary files /dev/null and b/campi_flegrei_example_all_times/20210103/03_reconstruction_20201228_20210103.png differ diff --git a/campi_flegrei_example_all_times/20210103/04_residual_20201228_20210103.png b/campi_flegrei_example_all_times/20210103/04_residual_20201228_20210103.png new file mode 100644 index 00000000..0b661284 Binary files /dev/null and b/campi_flegrei_example_all_times/20210103/04_residual_20201228_20210103.png differ diff --git a/campi_flegrei_example_all_times/20210103/LiCSAlert_figure_with_226_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210103/LiCSAlert_figure_with_226_monitoring_interferograms.png new file mode 100644 index 00000000..11ac9126 Binary files /dev/null and b/campi_flegrei_example_all_times/20210103/LiCSAlert_figure_with_226_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210103/mask_status.png b/campi_flegrei_example_all_times/20210103/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210103/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210103/volcano_status.txt b/campi_flegrei_example_all_times/20210103/volcano_status.txt new file mode 100644 index 00000000..bb7cfff4 --- /dev/null +++ b/campi_flegrei_example_all_times/20210103/volcano_status.txt @@ -0,0 +1,2 @@ +2.018407662666531 +1.6010907809428425 diff --git a/campi_flegrei_example_all_times/20210109/01_cumulative_20141031_20210109.png b/campi_flegrei_example_all_times/20210109/01_cumulative_20141031_20210109.png new file mode 100644 index 00000000..a2fc0364 Binary files /dev/null and b/campi_flegrei_example_all_times/20210109/01_cumulative_20141031_20210109.png differ diff --git a/campi_flegrei_example_all_times/20210109/02_incremental_20210103_20210109.png b/campi_flegrei_example_all_times/20210109/02_incremental_20210103_20210109.png new file mode 100644 index 00000000..816e77dc Binary files /dev/null and b/campi_flegrei_example_all_times/20210109/02_incremental_20210103_20210109.png differ diff --git a/campi_flegrei_example_all_times/20210109/03_reconstruction_20210103_20210109.png b/campi_flegrei_example_all_times/20210109/03_reconstruction_20210103_20210109.png new file mode 100644 index 00000000..604891da Binary files /dev/null and b/campi_flegrei_example_all_times/20210109/03_reconstruction_20210103_20210109.png differ diff --git a/campi_flegrei_example_all_times/20210109/04_residual_20210103_20210109.png b/campi_flegrei_example_all_times/20210109/04_residual_20210103_20210109.png new file mode 100644 index 00000000..516b2b78 Binary files /dev/null and b/campi_flegrei_example_all_times/20210109/04_residual_20210103_20210109.png differ diff --git a/campi_flegrei_example_all_times/20210109/LiCSAlert_figure_with_227_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210109/LiCSAlert_figure_with_227_monitoring_interferograms.png new file mode 100644 index 00000000..d403bedc Binary files /dev/null and b/campi_flegrei_example_all_times/20210109/LiCSAlert_figure_with_227_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210109/mask_status.png b/campi_flegrei_example_all_times/20210109/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210109/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210109/volcano_status.txt b/campi_flegrei_example_all_times/20210109/volcano_status.txt new file mode 100644 index 00000000..9e041a15 --- /dev/null +++ b/campi_flegrei_example_all_times/20210109/volcano_status.txt @@ -0,0 +1,2 @@ +1.6919407983461037 +0.011822560096014274 diff --git a/campi_flegrei_example_all_times/20210115/01_cumulative_20141031_20210115.png b/campi_flegrei_example_all_times/20210115/01_cumulative_20141031_20210115.png new file mode 100644 index 00000000..890e3991 Binary files /dev/null and b/campi_flegrei_example_all_times/20210115/01_cumulative_20141031_20210115.png differ diff --git a/campi_flegrei_example_all_times/20210115/02_incremental_20210109_20210115.png b/campi_flegrei_example_all_times/20210115/02_incremental_20210109_20210115.png new file mode 100644 index 00000000..63d2f659 Binary files /dev/null and b/campi_flegrei_example_all_times/20210115/02_incremental_20210109_20210115.png differ diff --git a/campi_flegrei_example_all_times/20210115/03_reconstruction_20210109_20210115.png b/campi_flegrei_example_all_times/20210115/03_reconstruction_20210109_20210115.png new file mode 100644 index 00000000..8b4b17f5 Binary files /dev/null and b/campi_flegrei_example_all_times/20210115/03_reconstruction_20210109_20210115.png differ diff --git a/campi_flegrei_example_all_times/20210115/04_residual_20210109_20210115.png b/campi_flegrei_example_all_times/20210115/04_residual_20210109_20210115.png new file mode 100644 index 00000000..683f6a45 Binary files /dev/null and b/campi_flegrei_example_all_times/20210115/04_residual_20210109_20210115.png differ diff --git a/campi_flegrei_example_all_times/20210115/LiCSAlert_figure_with_228_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210115/LiCSAlert_figure_with_228_monitoring_interferograms.png new file mode 100644 index 00000000..570f131d Binary files /dev/null and b/campi_flegrei_example_all_times/20210115/LiCSAlert_figure_with_228_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210115/mask_status.png b/campi_flegrei_example_all_times/20210115/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210115/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210115/volcano_status.txt b/campi_flegrei_example_all_times/20210115/volcano_status.txt new file mode 100644 index 00000000..a2e92a02 --- /dev/null +++ b/campi_flegrei_example_all_times/20210115/volcano_status.txt @@ -0,0 +1,2 @@ +1.6462192260974544 +0.35149067791209626 diff --git a/campi_flegrei_example_all_times/20210121/01_cumulative_20141031_20210121.png b/campi_flegrei_example_all_times/20210121/01_cumulative_20141031_20210121.png new file mode 100644 index 00000000..b6def11b Binary files /dev/null and b/campi_flegrei_example_all_times/20210121/01_cumulative_20141031_20210121.png differ diff --git a/campi_flegrei_example_all_times/20210121/02_incremental_20210115_20210121.png b/campi_flegrei_example_all_times/20210121/02_incremental_20210115_20210121.png new file mode 100644 index 00000000..c986adf4 Binary files /dev/null and b/campi_flegrei_example_all_times/20210121/02_incremental_20210115_20210121.png differ diff --git a/campi_flegrei_example_all_times/20210121/03_reconstruction_20210115_20210121.png b/campi_flegrei_example_all_times/20210121/03_reconstruction_20210115_20210121.png new file mode 100644 index 00000000..b7e5fe92 Binary files /dev/null and b/campi_flegrei_example_all_times/20210121/03_reconstruction_20210115_20210121.png differ diff --git a/campi_flegrei_example_all_times/20210121/04_residual_20210115_20210121.png b/campi_flegrei_example_all_times/20210121/04_residual_20210115_20210121.png new file mode 100644 index 00000000..81db1c57 Binary files /dev/null and b/campi_flegrei_example_all_times/20210121/04_residual_20210115_20210121.png differ diff --git a/campi_flegrei_example_all_times/20210121/LiCSAlert_figure_with_229_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210121/LiCSAlert_figure_with_229_monitoring_interferograms.png new file mode 100644 index 00000000..4cd0c796 Binary files /dev/null and b/campi_flegrei_example_all_times/20210121/LiCSAlert_figure_with_229_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210121/mask_status.png b/campi_flegrei_example_all_times/20210121/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210121/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210121/volcano_status.txt b/campi_flegrei_example_all_times/20210121/volcano_status.txt new file mode 100644 index 00000000..03f79f31 --- /dev/null +++ b/campi_flegrei_example_all_times/20210121/volcano_status.txt @@ -0,0 +1,2 @@ +1.5886796014990443 +1.9659758875802011 diff --git a/campi_flegrei_example_all_times/20210127/01_cumulative_20141031_20210127.png b/campi_flegrei_example_all_times/20210127/01_cumulative_20141031_20210127.png new file mode 100644 index 00000000..c0d44da7 Binary files /dev/null and b/campi_flegrei_example_all_times/20210127/01_cumulative_20141031_20210127.png differ diff --git a/campi_flegrei_example_all_times/20210127/02_incremental_20210121_20210127.png b/campi_flegrei_example_all_times/20210127/02_incremental_20210121_20210127.png new file mode 100644 index 00000000..a6b22016 Binary files /dev/null and b/campi_flegrei_example_all_times/20210127/02_incremental_20210121_20210127.png differ diff --git a/campi_flegrei_example_all_times/20210127/03_reconstruction_20210121_20210127.png b/campi_flegrei_example_all_times/20210127/03_reconstruction_20210121_20210127.png new file mode 100644 index 00000000..df2c850b Binary files /dev/null and b/campi_flegrei_example_all_times/20210127/03_reconstruction_20210121_20210127.png differ diff --git a/campi_flegrei_example_all_times/20210127/04_residual_20210121_20210127.png b/campi_flegrei_example_all_times/20210127/04_residual_20210121_20210127.png new file mode 100644 index 00000000..e18b59ac Binary files /dev/null and b/campi_flegrei_example_all_times/20210127/04_residual_20210121_20210127.png differ diff --git a/campi_flegrei_example_all_times/20210127/LiCSAlert_figure_with_230_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210127/LiCSAlert_figure_with_230_monitoring_interferograms.png new file mode 100644 index 00000000..87bb5212 Binary files /dev/null and b/campi_flegrei_example_all_times/20210127/LiCSAlert_figure_with_230_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210127/mask_status.png b/campi_flegrei_example_all_times/20210127/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210127/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210127/volcano_status.txt b/campi_flegrei_example_all_times/20210127/volcano_status.txt new file mode 100644 index 00000000..c78ad662 --- /dev/null +++ b/campi_flegrei_example_all_times/20210127/volcano_status.txt @@ -0,0 +1,2 @@ +0.8853807951712817 +0.5326871126428614 diff --git a/campi_flegrei_example_all_times/20210202/01_cumulative_20141031_20210202.png b/campi_flegrei_example_all_times/20210202/01_cumulative_20141031_20210202.png new file mode 100644 index 00000000..a5ad678b Binary files /dev/null and b/campi_flegrei_example_all_times/20210202/01_cumulative_20141031_20210202.png differ diff --git a/campi_flegrei_example_all_times/20210202/02_incremental_20210127_20210202.png b/campi_flegrei_example_all_times/20210202/02_incremental_20210127_20210202.png new file mode 100644 index 00000000..4e117ab5 Binary files /dev/null and b/campi_flegrei_example_all_times/20210202/02_incremental_20210127_20210202.png differ diff --git a/campi_flegrei_example_all_times/20210202/03_reconstruction_20210127_20210202.png b/campi_flegrei_example_all_times/20210202/03_reconstruction_20210127_20210202.png new file mode 100644 index 00000000..ba94e14a Binary files /dev/null and b/campi_flegrei_example_all_times/20210202/03_reconstruction_20210127_20210202.png differ diff --git a/campi_flegrei_example_all_times/20210202/04_residual_20210127_20210202.png b/campi_flegrei_example_all_times/20210202/04_residual_20210127_20210202.png new file mode 100644 index 00000000..4b43607b Binary files /dev/null and b/campi_flegrei_example_all_times/20210202/04_residual_20210127_20210202.png differ diff --git a/campi_flegrei_example_all_times/20210202/LiCSAlert_figure_with_231_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210202/LiCSAlert_figure_with_231_monitoring_interferograms.png new file mode 100644 index 00000000..be5a3255 Binary files /dev/null and b/campi_flegrei_example_all_times/20210202/LiCSAlert_figure_with_231_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210202/mask_status.png b/campi_flegrei_example_all_times/20210202/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210202/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210202/volcano_status.txt b/campi_flegrei_example_all_times/20210202/volcano_status.txt new file mode 100644 index 00000000..f88811a3 --- /dev/null +++ b/campi_flegrei_example_all_times/20210202/volcano_status.txt @@ -0,0 +1,2 @@ +1.0758355453474762 +0.026229090166542127 diff --git a/campi_flegrei_example_all_times/20210208/01_cumulative_20141031_20210208.png b/campi_flegrei_example_all_times/20210208/01_cumulative_20141031_20210208.png new file mode 100644 index 00000000..aed94b06 Binary files /dev/null and b/campi_flegrei_example_all_times/20210208/01_cumulative_20141031_20210208.png differ diff --git a/campi_flegrei_example_all_times/20210208/02_incremental_20210202_20210208.png b/campi_flegrei_example_all_times/20210208/02_incremental_20210202_20210208.png new file mode 100644 index 00000000..6b72878a Binary files /dev/null and b/campi_flegrei_example_all_times/20210208/02_incremental_20210202_20210208.png differ diff --git a/campi_flegrei_example_all_times/20210208/03_reconstruction_20210202_20210208.png b/campi_flegrei_example_all_times/20210208/03_reconstruction_20210202_20210208.png new file mode 100644 index 00000000..8992ff9d Binary files /dev/null and b/campi_flegrei_example_all_times/20210208/03_reconstruction_20210202_20210208.png differ diff --git a/campi_flegrei_example_all_times/20210208/04_residual_20210202_20210208.png b/campi_flegrei_example_all_times/20210208/04_residual_20210202_20210208.png new file mode 100644 index 00000000..539e09d8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210208/04_residual_20210202_20210208.png differ diff --git a/campi_flegrei_example_all_times/20210208/LiCSAlert_figure_with_232_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210208/LiCSAlert_figure_with_232_monitoring_interferograms.png new file mode 100644 index 00000000..f18357fc Binary files /dev/null and b/campi_flegrei_example_all_times/20210208/LiCSAlert_figure_with_232_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210208/mask_status.png b/campi_flegrei_example_all_times/20210208/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210208/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210208/volcano_status.txt b/campi_flegrei_example_all_times/20210208/volcano_status.txt new file mode 100644 index 00000000..9fdab1a7 --- /dev/null +++ b/campi_flegrei_example_all_times/20210208/volcano_status.txt @@ -0,0 +1,2 @@ +1.2454814218934747 +0.6267124424737288 diff --git a/campi_flegrei_example_all_times/20210214/01_cumulative_20141031_20210214.png b/campi_flegrei_example_all_times/20210214/01_cumulative_20141031_20210214.png new file mode 100644 index 00000000..66f49b7f Binary files /dev/null and b/campi_flegrei_example_all_times/20210214/01_cumulative_20141031_20210214.png differ diff --git a/campi_flegrei_example_all_times/20210214/02_incremental_20210208_20210214.png b/campi_flegrei_example_all_times/20210214/02_incremental_20210208_20210214.png new file mode 100644 index 00000000..98a90fcb Binary files /dev/null and b/campi_flegrei_example_all_times/20210214/02_incremental_20210208_20210214.png differ diff --git a/campi_flegrei_example_all_times/20210214/03_reconstruction_20210208_20210214.png b/campi_flegrei_example_all_times/20210214/03_reconstruction_20210208_20210214.png new file mode 100644 index 00000000..f38dd6b2 Binary files /dev/null and b/campi_flegrei_example_all_times/20210214/03_reconstruction_20210208_20210214.png differ diff --git a/campi_flegrei_example_all_times/20210214/04_residual_20210208_20210214.png b/campi_flegrei_example_all_times/20210214/04_residual_20210208_20210214.png new file mode 100644 index 00000000..2248f9d8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210214/04_residual_20210208_20210214.png differ diff --git a/campi_flegrei_example_all_times/20210214/LiCSAlert_figure_with_233_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210214/LiCSAlert_figure_with_233_monitoring_interferograms.png new file mode 100644 index 00000000..1f991789 Binary files /dev/null and b/campi_flegrei_example_all_times/20210214/LiCSAlert_figure_with_233_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210214/mask_status.png b/campi_flegrei_example_all_times/20210214/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210214/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210214/volcano_status.txt b/campi_flegrei_example_all_times/20210214/volcano_status.txt new file mode 100644 index 00000000..e7ace21d --- /dev/null +++ b/campi_flegrei_example_all_times/20210214/volcano_status.txt @@ -0,0 +1,2 @@ +2.0664508256085266 +0.08923901804061884 diff --git a/campi_flegrei_example_all_times/20210220/01_cumulative_20141031_20210220.png b/campi_flegrei_example_all_times/20210220/01_cumulative_20141031_20210220.png new file mode 100644 index 00000000..eff397c7 Binary files /dev/null and b/campi_flegrei_example_all_times/20210220/01_cumulative_20141031_20210220.png differ diff --git a/campi_flegrei_example_all_times/20210220/02_incremental_20210214_20210220.png b/campi_flegrei_example_all_times/20210220/02_incremental_20210214_20210220.png new file mode 100644 index 00000000..0e60d2ce Binary files /dev/null and b/campi_flegrei_example_all_times/20210220/02_incremental_20210214_20210220.png differ diff --git a/campi_flegrei_example_all_times/20210220/03_reconstruction_20210214_20210220.png b/campi_flegrei_example_all_times/20210220/03_reconstruction_20210214_20210220.png new file mode 100644 index 00000000..bee9bae1 Binary files /dev/null and b/campi_flegrei_example_all_times/20210220/03_reconstruction_20210214_20210220.png differ diff --git a/campi_flegrei_example_all_times/20210220/04_residual_20210214_20210220.png b/campi_flegrei_example_all_times/20210220/04_residual_20210214_20210220.png new file mode 100644 index 00000000..72c48742 Binary files /dev/null and b/campi_flegrei_example_all_times/20210220/04_residual_20210214_20210220.png differ diff --git a/campi_flegrei_example_all_times/20210220/LiCSAlert_figure_with_234_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210220/LiCSAlert_figure_with_234_monitoring_interferograms.png new file mode 100644 index 00000000..17116644 Binary files /dev/null and b/campi_flegrei_example_all_times/20210220/LiCSAlert_figure_with_234_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210220/mask_status.png b/campi_flegrei_example_all_times/20210220/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210220/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210220/volcano_status.txt b/campi_flegrei_example_all_times/20210220/volcano_status.txt new file mode 100644 index 00000000..2d0eb231 --- /dev/null +++ b/campi_flegrei_example_all_times/20210220/volcano_status.txt @@ -0,0 +1,2 @@ +1.0348542446598652 +0.1338372477787706 diff --git a/campi_flegrei_example_all_times/20210226/01_cumulative_20141031_20210226.png b/campi_flegrei_example_all_times/20210226/01_cumulative_20141031_20210226.png new file mode 100644 index 00000000..4c795bd6 Binary files /dev/null and b/campi_flegrei_example_all_times/20210226/01_cumulative_20141031_20210226.png differ diff --git a/campi_flegrei_example_all_times/20210226/02_incremental_20210220_20210226.png b/campi_flegrei_example_all_times/20210226/02_incremental_20210220_20210226.png new file mode 100644 index 00000000..6dd7f1a3 Binary files /dev/null and b/campi_flegrei_example_all_times/20210226/02_incremental_20210220_20210226.png differ diff --git a/campi_flegrei_example_all_times/20210226/03_reconstruction_20210220_20210226.png b/campi_flegrei_example_all_times/20210226/03_reconstruction_20210220_20210226.png new file mode 100644 index 00000000..4c1beb75 Binary files /dev/null and b/campi_flegrei_example_all_times/20210226/03_reconstruction_20210220_20210226.png differ diff --git a/campi_flegrei_example_all_times/20210226/04_residual_20210220_20210226.png b/campi_flegrei_example_all_times/20210226/04_residual_20210220_20210226.png new file mode 100644 index 00000000..b3c13725 Binary files /dev/null and b/campi_flegrei_example_all_times/20210226/04_residual_20210220_20210226.png differ diff --git a/campi_flegrei_example_all_times/20210226/LiCSAlert_figure_with_235_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210226/LiCSAlert_figure_with_235_monitoring_interferograms.png new file mode 100644 index 00000000..5194b004 Binary files /dev/null and b/campi_flegrei_example_all_times/20210226/LiCSAlert_figure_with_235_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210226/mask_status.png b/campi_flegrei_example_all_times/20210226/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210226/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210226/volcano_status.txt b/campi_flegrei_example_all_times/20210226/volcano_status.txt new file mode 100644 index 00000000..8283070e --- /dev/null +++ b/campi_flegrei_example_all_times/20210226/volcano_status.txt @@ -0,0 +1,2 @@ +0.3219486132856391 +0.3038103685001361 diff --git a/campi_flegrei_example_all_times/20210304/01_cumulative_20141031_20210304.png b/campi_flegrei_example_all_times/20210304/01_cumulative_20141031_20210304.png new file mode 100644 index 00000000..b1d89484 Binary files /dev/null and b/campi_flegrei_example_all_times/20210304/01_cumulative_20141031_20210304.png differ diff --git a/campi_flegrei_example_all_times/20210304/02_incremental_20210226_20210304.png b/campi_flegrei_example_all_times/20210304/02_incremental_20210226_20210304.png new file mode 100644 index 00000000..213ae9a5 Binary files /dev/null and b/campi_flegrei_example_all_times/20210304/02_incremental_20210226_20210304.png differ diff --git a/campi_flegrei_example_all_times/20210304/03_reconstruction_20210226_20210304.png b/campi_flegrei_example_all_times/20210304/03_reconstruction_20210226_20210304.png new file mode 100644 index 00000000..39879ce4 Binary files /dev/null and b/campi_flegrei_example_all_times/20210304/03_reconstruction_20210226_20210304.png differ diff --git a/campi_flegrei_example_all_times/20210304/04_residual_20210226_20210304.png b/campi_flegrei_example_all_times/20210304/04_residual_20210226_20210304.png new file mode 100644 index 00000000..e6b05786 Binary files /dev/null and b/campi_flegrei_example_all_times/20210304/04_residual_20210226_20210304.png differ diff --git a/campi_flegrei_example_all_times/20210304/LiCSAlert_figure_with_236_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210304/LiCSAlert_figure_with_236_monitoring_interferograms.png new file mode 100644 index 00000000..8d7c7dea Binary files /dev/null and b/campi_flegrei_example_all_times/20210304/LiCSAlert_figure_with_236_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210304/mask_status.png b/campi_flegrei_example_all_times/20210304/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210304/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210304/volcano_status.txt b/campi_flegrei_example_all_times/20210304/volcano_status.txt new file mode 100644 index 00000000..0b6c2c9e --- /dev/null +++ b/campi_flegrei_example_all_times/20210304/volcano_status.txt @@ -0,0 +1,2 @@ +0.17424924154325158 +0.36311453838249713 diff --git a/campi_flegrei_example_all_times/20210310/01_cumulative_20141031_20210310.png b/campi_flegrei_example_all_times/20210310/01_cumulative_20141031_20210310.png new file mode 100644 index 00000000..765dff17 Binary files /dev/null and b/campi_flegrei_example_all_times/20210310/01_cumulative_20141031_20210310.png differ diff --git a/campi_flegrei_example_all_times/20210310/02_incremental_20210304_20210310.png b/campi_flegrei_example_all_times/20210310/02_incremental_20210304_20210310.png new file mode 100644 index 00000000..6d4ab800 Binary files /dev/null and b/campi_flegrei_example_all_times/20210310/02_incremental_20210304_20210310.png differ diff --git a/campi_flegrei_example_all_times/20210310/03_reconstruction_20210304_20210310.png b/campi_flegrei_example_all_times/20210310/03_reconstruction_20210304_20210310.png new file mode 100644 index 00000000..ac7ea517 Binary files /dev/null and b/campi_flegrei_example_all_times/20210310/03_reconstruction_20210304_20210310.png differ diff --git a/campi_flegrei_example_all_times/20210310/04_residual_20210304_20210310.png b/campi_flegrei_example_all_times/20210310/04_residual_20210304_20210310.png new file mode 100644 index 00000000..80a0f606 Binary files /dev/null and b/campi_flegrei_example_all_times/20210310/04_residual_20210304_20210310.png differ diff --git a/campi_flegrei_example_all_times/20210310/LiCSAlert_figure_with_237_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210310/LiCSAlert_figure_with_237_monitoring_interferograms.png new file mode 100644 index 00000000..55ade51e Binary files /dev/null and b/campi_flegrei_example_all_times/20210310/LiCSAlert_figure_with_237_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210310/mask_status.png b/campi_flegrei_example_all_times/20210310/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210310/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210310/volcano_status.txt b/campi_flegrei_example_all_times/20210310/volcano_status.txt new file mode 100644 index 00000000..f151f4b3 --- /dev/null +++ b/campi_flegrei_example_all_times/20210310/volcano_status.txt @@ -0,0 +1,2 @@ +0.3415240897874856 +0.7197163882134401 diff --git a/campi_flegrei_example_all_times/20210316/01_cumulative_20141031_20210316.png b/campi_flegrei_example_all_times/20210316/01_cumulative_20141031_20210316.png new file mode 100644 index 00000000..dc6c62dd Binary files /dev/null and b/campi_flegrei_example_all_times/20210316/01_cumulative_20141031_20210316.png differ diff --git a/campi_flegrei_example_all_times/20210316/02_incremental_20210310_20210316.png b/campi_flegrei_example_all_times/20210316/02_incremental_20210310_20210316.png new file mode 100644 index 00000000..111d1890 Binary files /dev/null and b/campi_flegrei_example_all_times/20210316/02_incremental_20210310_20210316.png differ diff --git a/campi_flegrei_example_all_times/20210316/03_reconstruction_20210310_20210316.png b/campi_flegrei_example_all_times/20210316/03_reconstruction_20210310_20210316.png new file mode 100644 index 00000000..e8546977 Binary files /dev/null and b/campi_flegrei_example_all_times/20210316/03_reconstruction_20210310_20210316.png differ diff --git a/campi_flegrei_example_all_times/20210316/04_residual_20210310_20210316.png b/campi_flegrei_example_all_times/20210316/04_residual_20210310_20210316.png new file mode 100644 index 00000000..9e469796 Binary files /dev/null and b/campi_flegrei_example_all_times/20210316/04_residual_20210310_20210316.png differ diff --git a/campi_flegrei_example_all_times/20210316/LiCSAlert_figure_with_238_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210316/LiCSAlert_figure_with_238_monitoring_interferograms.png new file mode 100644 index 00000000..10f7db75 Binary files /dev/null and b/campi_flegrei_example_all_times/20210316/LiCSAlert_figure_with_238_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210316/mask_status.png b/campi_flegrei_example_all_times/20210316/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210316/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210316/volcano_status.txt b/campi_flegrei_example_all_times/20210316/volcano_status.txt new file mode 100644 index 00000000..64da5203 --- /dev/null +++ b/campi_flegrei_example_all_times/20210316/volcano_status.txt @@ -0,0 +1,2 @@ +0.9372134834990032 +0.15665938607660734 diff --git a/campi_flegrei_example_all_times/20210322/01_cumulative_20141031_20210322.png b/campi_flegrei_example_all_times/20210322/01_cumulative_20141031_20210322.png new file mode 100644 index 00000000..bff532ce Binary files /dev/null and b/campi_flegrei_example_all_times/20210322/01_cumulative_20141031_20210322.png differ diff --git a/campi_flegrei_example_all_times/20210322/02_incremental_20210316_20210322.png b/campi_flegrei_example_all_times/20210322/02_incremental_20210316_20210322.png new file mode 100644 index 00000000..c0d18ab5 Binary files /dev/null and b/campi_flegrei_example_all_times/20210322/02_incremental_20210316_20210322.png differ diff --git a/campi_flegrei_example_all_times/20210322/03_reconstruction_20210316_20210322.png b/campi_flegrei_example_all_times/20210322/03_reconstruction_20210316_20210322.png new file mode 100644 index 00000000..613b338a Binary files /dev/null and b/campi_flegrei_example_all_times/20210322/03_reconstruction_20210316_20210322.png differ diff --git a/campi_flegrei_example_all_times/20210322/04_residual_20210316_20210322.png b/campi_flegrei_example_all_times/20210322/04_residual_20210316_20210322.png new file mode 100644 index 00000000..fe66d2d0 Binary files /dev/null and b/campi_flegrei_example_all_times/20210322/04_residual_20210316_20210322.png differ diff --git a/campi_flegrei_example_all_times/20210322/LiCSAlert_figure_with_239_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210322/LiCSAlert_figure_with_239_monitoring_interferograms.png new file mode 100644 index 00000000..d5ab2e81 Binary files /dev/null and b/campi_flegrei_example_all_times/20210322/LiCSAlert_figure_with_239_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210322/mask_status.png b/campi_flegrei_example_all_times/20210322/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210322/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210322/volcano_status.txt b/campi_flegrei_example_all_times/20210322/volcano_status.txt new file mode 100644 index 00000000..4594ac1f --- /dev/null +++ b/campi_flegrei_example_all_times/20210322/volcano_status.txt @@ -0,0 +1,2 @@ +0.9638334182140582 +0.17449348430436817 diff --git a/campi_flegrei_example_all_times/20210328/01_cumulative_20141031_20210328.png b/campi_flegrei_example_all_times/20210328/01_cumulative_20141031_20210328.png new file mode 100644 index 00000000..144af5b3 Binary files /dev/null and b/campi_flegrei_example_all_times/20210328/01_cumulative_20141031_20210328.png differ diff --git a/campi_flegrei_example_all_times/20210328/02_incremental_20210322_20210328.png b/campi_flegrei_example_all_times/20210328/02_incremental_20210322_20210328.png new file mode 100644 index 00000000..4642bd7b Binary files /dev/null and b/campi_flegrei_example_all_times/20210328/02_incremental_20210322_20210328.png differ diff --git a/campi_flegrei_example_all_times/20210328/03_reconstruction_20210322_20210328.png b/campi_flegrei_example_all_times/20210328/03_reconstruction_20210322_20210328.png new file mode 100644 index 00000000..304fb1b5 Binary files /dev/null and b/campi_flegrei_example_all_times/20210328/03_reconstruction_20210322_20210328.png differ diff --git a/campi_flegrei_example_all_times/20210328/04_residual_20210322_20210328.png b/campi_flegrei_example_all_times/20210328/04_residual_20210322_20210328.png new file mode 100644 index 00000000..a5424c9b Binary files /dev/null and b/campi_flegrei_example_all_times/20210328/04_residual_20210322_20210328.png differ diff --git a/campi_flegrei_example_all_times/20210328/LiCSAlert_figure_with_240_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210328/LiCSAlert_figure_with_240_monitoring_interferograms.png new file mode 100644 index 00000000..d05c2eb1 Binary files /dev/null and b/campi_flegrei_example_all_times/20210328/LiCSAlert_figure_with_240_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210328/mask_status.png b/campi_flegrei_example_all_times/20210328/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210328/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210328/volcano_status.txt b/campi_flegrei_example_all_times/20210328/volcano_status.txt new file mode 100644 index 00000000..6b5dcbe3 --- /dev/null +++ b/campi_flegrei_example_all_times/20210328/volcano_status.txt @@ -0,0 +1,2 @@ +0.8674829288404401 +0.29469560181403437 diff --git a/campi_flegrei_example_all_times/20210403/01_cumulative_20141031_20210403.png b/campi_flegrei_example_all_times/20210403/01_cumulative_20141031_20210403.png new file mode 100644 index 00000000..6069df2a Binary files /dev/null and b/campi_flegrei_example_all_times/20210403/01_cumulative_20141031_20210403.png differ diff --git a/campi_flegrei_example_all_times/20210403/02_incremental_20210328_20210403.png b/campi_flegrei_example_all_times/20210403/02_incremental_20210328_20210403.png new file mode 100644 index 00000000..f5e0261f Binary files /dev/null and b/campi_flegrei_example_all_times/20210403/02_incremental_20210328_20210403.png differ diff --git a/campi_flegrei_example_all_times/20210403/03_reconstruction_20210328_20210403.png b/campi_flegrei_example_all_times/20210403/03_reconstruction_20210328_20210403.png new file mode 100644 index 00000000..e20320ea Binary files /dev/null and b/campi_flegrei_example_all_times/20210403/03_reconstruction_20210328_20210403.png differ diff --git a/campi_flegrei_example_all_times/20210403/04_residual_20210328_20210403.png b/campi_flegrei_example_all_times/20210403/04_residual_20210328_20210403.png new file mode 100644 index 00000000..764a7890 Binary files /dev/null and b/campi_flegrei_example_all_times/20210403/04_residual_20210328_20210403.png differ diff --git a/campi_flegrei_example_all_times/20210403/LiCSAlert_figure_with_241_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210403/LiCSAlert_figure_with_241_monitoring_interferograms.png new file mode 100644 index 00000000..6d861a2f Binary files /dev/null and b/campi_flegrei_example_all_times/20210403/LiCSAlert_figure_with_241_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210403/mask_status.png b/campi_flegrei_example_all_times/20210403/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210403/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210403/volcano_status.txt b/campi_flegrei_example_all_times/20210403/volcano_status.txt new file mode 100644 index 00000000..20a4de2e --- /dev/null +++ b/campi_flegrei_example_all_times/20210403/volcano_status.txt @@ -0,0 +1,2 @@ +0.5928864422927513 +0.32695037398425314 diff --git a/campi_flegrei_example_all_times/20210409/01_cumulative_20141031_20210409.png b/campi_flegrei_example_all_times/20210409/01_cumulative_20141031_20210409.png new file mode 100644 index 00000000..958aaf75 Binary files /dev/null and b/campi_flegrei_example_all_times/20210409/01_cumulative_20141031_20210409.png differ diff --git a/campi_flegrei_example_all_times/20210409/02_incremental_20210403_20210409.png b/campi_flegrei_example_all_times/20210409/02_incremental_20210403_20210409.png new file mode 100644 index 00000000..80d9afc4 Binary files /dev/null and b/campi_flegrei_example_all_times/20210409/02_incremental_20210403_20210409.png differ diff --git a/campi_flegrei_example_all_times/20210409/03_reconstruction_20210403_20210409.png b/campi_flegrei_example_all_times/20210409/03_reconstruction_20210403_20210409.png new file mode 100644 index 00000000..424b1d30 Binary files /dev/null and b/campi_flegrei_example_all_times/20210409/03_reconstruction_20210403_20210409.png differ diff --git a/campi_flegrei_example_all_times/20210409/04_residual_20210403_20210409.png b/campi_flegrei_example_all_times/20210409/04_residual_20210403_20210409.png new file mode 100644 index 00000000..ab2f2d33 Binary files /dev/null and b/campi_flegrei_example_all_times/20210409/04_residual_20210403_20210409.png differ diff --git a/campi_flegrei_example_all_times/20210409/LiCSAlert_figure_with_242_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210409/LiCSAlert_figure_with_242_monitoring_interferograms.png new file mode 100644 index 00000000..ade739bc Binary files /dev/null and b/campi_flegrei_example_all_times/20210409/LiCSAlert_figure_with_242_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210409/mask_status.png b/campi_flegrei_example_all_times/20210409/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210409/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210409/volcano_status.txt b/campi_flegrei_example_all_times/20210409/volcano_status.txt new file mode 100644 index 00000000..6b9f13db --- /dev/null +++ b/campi_flegrei_example_all_times/20210409/volcano_status.txt @@ -0,0 +1,2 @@ +0.6552902283665615 +0.16909520856928048 diff --git a/campi_flegrei_example_all_times/20210415/01_cumulative_20141031_20210415.png b/campi_flegrei_example_all_times/20210415/01_cumulative_20141031_20210415.png new file mode 100644 index 00000000..6328d9b8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210415/01_cumulative_20141031_20210415.png differ diff --git a/campi_flegrei_example_all_times/20210415/02_incremental_20210409_20210415.png b/campi_flegrei_example_all_times/20210415/02_incremental_20210409_20210415.png new file mode 100644 index 00000000..c4a0a1f3 Binary files /dev/null and b/campi_flegrei_example_all_times/20210415/02_incremental_20210409_20210415.png differ diff --git a/campi_flegrei_example_all_times/20210415/03_reconstruction_20210409_20210415.png b/campi_flegrei_example_all_times/20210415/03_reconstruction_20210409_20210415.png new file mode 100644 index 00000000..addb5248 Binary files /dev/null and b/campi_flegrei_example_all_times/20210415/03_reconstruction_20210409_20210415.png differ diff --git a/campi_flegrei_example_all_times/20210415/04_residual_20210409_20210415.png b/campi_flegrei_example_all_times/20210415/04_residual_20210409_20210415.png new file mode 100644 index 00000000..5a0fb0a4 Binary files /dev/null and b/campi_flegrei_example_all_times/20210415/04_residual_20210409_20210415.png differ diff --git a/campi_flegrei_example_all_times/20210415/LiCSAlert_figure_with_243_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210415/LiCSAlert_figure_with_243_monitoring_interferograms.png new file mode 100644 index 00000000..3f25c26e Binary files /dev/null and b/campi_flegrei_example_all_times/20210415/LiCSAlert_figure_with_243_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210415/mask_status.png b/campi_flegrei_example_all_times/20210415/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210415/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210415/volcano_status.txt b/campi_flegrei_example_all_times/20210415/volcano_status.txt new file mode 100644 index 00000000..b0cb7633 --- /dev/null +++ b/campi_flegrei_example_all_times/20210415/volcano_status.txt @@ -0,0 +1,2 @@ +1.821118281590741 +0.5556823436404439 diff --git a/campi_flegrei_example_all_times/20210421/01_cumulative_20141031_20210421.png b/campi_flegrei_example_all_times/20210421/01_cumulative_20141031_20210421.png new file mode 100644 index 00000000..ff2662b2 Binary files /dev/null and b/campi_flegrei_example_all_times/20210421/01_cumulative_20141031_20210421.png differ diff --git a/campi_flegrei_example_all_times/20210421/02_incremental_20210415_20210421.png b/campi_flegrei_example_all_times/20210421/02_incremental_20210415_20210421.png new file mode 100644 index 00000000..a8364661 Binary files /dev/null and b/campi_flegrei_example_all_times/20210421/02_incremental_20210415_20210421.png differ diff --git a/campi_flegrei_example_all_times/20210421/03_reconstruction_20210415_20210421.png b/campi_flegrei_example_all_times/20210421/03_reconstruction_20210415_20210421.png new file mode 100644 index 00000000..7fd6489b Binary files /dev/null and b/campi_flegrei_example_all_times/20210421/03_reconstruction_20210415_20210421.png differ diff --git a/campi_flegrei_example_all_times/20210421/04_residual_20210415_20210421.png b/campi_flegrei_example_all_times/20210421/04_residual_20210415_20210421.png new file mode 100644 index 00000000..b3764d8c Binary files /dev/null and b/campi_flegrei_example_all_times/20210421/04_residual_20210415_20210421.png differ diff --git a/campi_flegrei_example_all_times/20210421/LiCSAlert_figure_with_244_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210421/LiCSAlert_figure_with_244_monitoring_interferograms.png new file mode 100644 index 00000000..7f1023d9 Binary files /dev/null and b/campi_flegrei_example_all_times/20210421/LiCSAlert_figure_with_244_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210421/mask_status.png b/campi_flegrei_example_all_times/20210421/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210421/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210421/volcano_status.txt b/campi_flegrei_example_all_times/20210421/volcano_status.txt new file mode 100644 index 00000000..83a557b8 --- /dev/null +++ b/campi_flegrei_example_all_times/20210421/volcano_status.txt @@ -0,0 +1,2 @@ +0.7480771264698951 +0.21253409444145627 diff --git a/campi_flegrei_example_all_times/20210427/01_cumulative_20141031_20210427.png b/campi_flegrei_example_all_times/20210427/01_cumulative_20141031_20210427.png new file mode 100644 index 00000000..ab20deb9 Binary files /dev/null and b/campi_flegrei_example_all_times/20210427/01_cumulative_20141031_20210427.png differ diff --git a/campi_flegrei_example_all_times/20210427/02_incremental_20210421_20210427.png b/campi_flegrei_example_all_times/20210427/02_incremental_20210421_20210427.png new file mode 100644 index 00000000..45c0a79c Binary files /dev/null and b/campi_flegrei_example_all_times/20210427/02_incremental_20210421_20210427.png differ diff --git a/campi_flegrei_example_all_times/20210427/03_reconstruction_20210421_20210427.png b/campi_flegrei_example_all_times/20210427/03_reconstruction_20210421_20210427.png new file mode 100644 index 00000000..031cd1e3 Binary files /dev/null and b/campi_flegrei_example_all_times/20210427/03_reconstruction_20210421_20210427.png differ diff --git a/campi_flegrei_example_all_times/20210427/04_residual_20210421_20210427.png b/campi_flegrei_example_all_times/20210427/04_residual_20210421_20210427.png new file mode 100644 index 00000000..429a9dbc Binary files /dev/null and b/campi_flegrei_example_all_times/20210427/04_residual_20210421_20210427.png differ diff --git a/campi_flegrei_example_all_times/20210427/LiCSAlert_figure_with_245_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210427/LiCSAlert_figure_with_245_monitoring_interferograms.png new file mode 100644 index 00000000..b9142020 Binary files /dev/null and b/campi_flegrei_example_all_times/20210427/LiCSAlert_figure_with_245_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210427/mask_status.png b/campi_flegrei_example_all_times/20210427/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210427/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210427/volcano_status.txt b/campi_flegrei_example_all_times/20210427/volcano_status.txt new file mode 100644 index 00000000..09dfefec --- /dev/null +++ b/campi_flegrei_example_all_times/20210427/volcano_status.txt @@ -0,0 +1,2 @@ +0.27810061830627103 +0.45657116331666237 diff --git a/campi_flegrei_example_all_times/20210503/01_cumulative_20141031_20210503.png b/campi_flegrei_example_all_times/20210503/01_cumulative_20141031_20210503.png new file mode 100644 index 00000000..97365033 Binary files /dev/null and b/campi_flegrei_example_all_times/20210503/01_cumulative_20141031_20210503.png differ diff --git a/campi_flegrei_example_all_times/20210503/02_incremental_20210427_20210503.png b/campi_flegrei_example_all_times/20210503/02_incremental_20210427_20210503.png new file mode 100644 index 00000000..58915b4d Binary files /dev/null and b/campi_flegrei_example_all_times/20210503/02_incremental_20210427_20210503.png differ diff --git a/campi_flegrei_example_all_times/20210503/03_reconstruction_20210427_20210503.png b/campi_flegrei_example_all_times/20210503/03_reconstruction_20210427_20210503.png new file mode 100644 index 00000000..f0a2d6b0 Binary files /dev/null and b/campi_flegrei_example_all_times/20210503/03_reconstruction_20210427_20210503.png differ diff --git a/campi_flegrei_example_all_times/20210503/04_residual_20210427_20210503.png b/campi_flegrei_example_all_times/20210503/04_residual_20210427_20210503.png new file mode 100644 index 00000000..93e17986 Binary files /dev/null and b/campi_flegrei_example_all_times/20210503/04_residual_20210427_20210503.png differ diff --git a/campi_flegrei_example_all_times/20210503/LiCSAlert_figure_with_246_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210503/LiCSAlert_figure_with_246_monitoring_interferograms.png new file mode 100644 index 00000000..14ee58ee Binary files /dev/null and b/campi_flegrei_example_all_times/20210503/LiCSAlert_figure_with_246_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210503/mask_status.png b/campi_flegrei_example_all_times/20210503/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210503/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210503/volcano_status.txt b/campi_flegrei_example_all_times/20210503/volcano_status.txt new file mode 100644 index 00000000..d8c7931a --- /dev/null +++ b/campi_flegrei_example_all_times/20210503/volcano_status.txt @@ -0,0 +1,2 @@ +0.5718664978770435 +0.7637204260037979 diff --git a/campi_flegrei_example_all_times/20210509/01_cumulative_20141031_20210509.png b/campi_flegrei_example_all_times/20210509/01_cumulative_20141031_20210509.png new file mode 100644 index 00000000..48dd8a5e Binary files /dev/null and b/campi_flegrei_example_all_times/20210509/01_cumulative_20141031_20210509.png differ diff --git a/campi_flegrei_example_all_times/20210509/02_incremental_20210503_20210509.png b/campi_flegrei_example_all_times/20210509/02_incremental_20210503_20210509.png new file mode 100644 index 00000000..3c50bed4 Binary files /dev/null and b/campi_flegrei_example_all_times/20210509/02_incremental_20210503_20210509.png differ diff --git a/campi_flegrei_example_all_times/20210509/03_reconstruction_20210503_20210509.png b/campi_flegrei_example_all_times/20210509/03_reconstruction_20210503_20210509.png new file mode 100644 index 00000000..03065a6e Binary files /dev/null and b/campi_flegrei_example_all_times/20210509/03_reconstruction_20210503_20210509.png differ diff --git a/campi_flegrei_example_all_times/20210509/04_residual_20210503_20210509.png b/campi_flegrei_example_all_times/20210509/04_residual_20210503_20210509.png new file mode 100644 index 00000000..ba7eb129 Binary files /dev/null and b/campi_flegrei_example_all_times/20210509/04_residual_20210503_20210509.png differ diff --git a/campi_flegrei_example_all_times/20210509/LiCSAlert_figure_with_247_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210509/LiCSAlert_figure_with_247_monitoring_interferograms.png new file mode 100644 index 00000000..b1987b97 Binary files /dev/null and b/campi_flegrei_example_all_times/20210509/LiCSAlert_figure_with_247_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210509/mask_status.png b/campi_flegrei_example_all_times/20210509/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210509/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210509/volcano_status.txt b/campi_flegrei_example_all_times/20210509/volcano_status.txt new file mode 100644 index 00000000..d03ce602 --- /dev/null +++ b/campi_flegrei_example_all_times/20210509/volcano_status.txt @@ -0,0 +1,2 @@ +0.5095926106979166 +0.3601644455760251 diff --git a/campi_flegrei_example_all_times/20210515/01_cumulative_20141031_20210515.png b/campi_flegrei_example_all_times/20210515/01_cumulative_20141031_20210515.png new file mode 100644 index 00000000..a660d4be Binary files /dev/null and b/campi_flegrei_example_all_times/20210515/01_cumulative_20141031_20210515.png differ diff --git a/campi_flegrei_example_all_times/20210515/02_incremental_20210509_20210515.png b/campi_flegrei_example_all_times/20210515/02_incremental_20210509_20210515.png new file mode 100644 index 00000000..bb4114df Binary files /dev/null and b/campi_flegrei_example_all_times/20210515/02_incremental_20210509_20210515.png differ diff --git a/campi_flegrei_example_all_times/20210515/03_reconstruction_20210509_20210515.png b/campi_flegrei_example_all_times/20210515/03_reconstruction_20210509_20210515.png new file mode 100644 index 00000000..cda1c4af Binary files /dev/null and b/campi_flegrei_example_all_times/20210515/03_reconstruction_20210509_20210515.png differ diff --git a/campi_flegrei_example_all_times/20210515/04_residual_20210509_20210515.png b/campi_flegrei_example_all_times/20210515/04_residual_20210509_20210515.png new file mode 100644 index 00000000..80e155f3 Binary files /dev/null and b/campi_flegrei_example_all_times/20210515/04_residual_20210509_20210515.png differ diff --git a/campi_flegrei_example_all_times/20210515/LiCSAlert_figure_with_248_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210515/LiCSAlert_figure_with_248_monitoring_interferograms.png new file mode 100644 index 00000000..d6f4d86c Binary files /dev/null and b/campi_flegrei_example_all_times/20210515/LiCSAlert_figure_with_248_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210515/mask_status.png b/campi_flegrei_example_all_times/20210515/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210515/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210515/volcano_status.txt b/campi_flegrei_example_all_times/20210515/volcano_status.txt new file mode 100644 index 00000000..2b0966ca --- /dev/null +++ b/campi_flegrei_example_all_times/20210515/volcano_status.txt @@ -0,0 +1,2 @@ +1.1036109980031987 +0.2515910760573298 diff --git a/campi_flegrei_example_all_times/20210521/01_cumulative_20141031_20210521.png b/campi_flegrei_example_all_times/20210521/01_cumulative_20141031_20210521.png new file mode 100644 index 00000000..b34265f4 Binary files /dev/null and b/campi_flegrei_example_all_times/20210521/01_cumulative_20141031_20210521.png differ diff --git a/campi_flegrei_example_all_times/20210521/02_incremental_20210515_20210521.png b/campi_flegrei_example_all_times/20210521/02_incremental_20210515_20210521.png new file mode 100644 index 00000000..57581e2b Binary files /dev/null and b/campi_flegrei_example_all_times/20210521/02_incremental_20210515_20210521.png differ diff --git a/campi_flegrei_example_all_times/20210521/03_reconstruction_20210515_20210521.png b/campi_flegrei_example_all_times/20210521/03_reconstruction_20210515_20210521.png new file mode 100644 index 00000000..b677e778 Binary files /dev/null and b/campi_flegrei_example_all_times/20210521/03_reconstruction_20210515_20210521.png differ diff --git a/campi_flegrei_example_all_times/20210521/04_residual_20210515_20210521.png b/campi_flegrei_example_all_times/20210521/04_residual_20210515_20210521.png new file mode 100644 index 00000000..a6476905 Binary files /dev/null and b/campi_flegrei_example_all_times/20210521/04_residual_20210515_20210521.png differ diff --git a/campi_flegrei_example_all_times/20210521/LiCSAlert_figure_with_249_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210521/LiCSAlert_figure_with_249_monitoring_interferograms.png new file mode 100644 index 00000000..92189276 Binary files /dev/null and b/campi_flegrei_example_all_times/20210521/LiCSAlert_figure_with_249_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210521/mask_status.png b/campi_flegrei_example_all_times/20210521/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210521/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210521/volcano_status.txt b/campi_flegrei_example_all_times/20210521/volcano_status.txt new file mode 100644 index 00000000..cdb85ba1 --- /dev/null +++ b/campi_flegrei_example_all_times/20210521/volcano_status.txt @@ -0,0 +1,2 @@ +1.4646525215009967 +0.4740738447794079 diff --git a/campi_flegrei_example_all_times/20210527/01_cumulative_20141031_20210527.png b/campi_flegrei_example_all_times/20210527/01_cumulative_20141031_20210527.png new file mode 100644 index 00000000..779ded4a Binary files /dev/null and b/campi_flegrei_example_all_times/20210527/01_cumulative_20141031_20210527.png differ diff --git a/campi_flegrei_example_all_times/20210527/02_incremental_20210521_20210527.png b/campi_flegrei_example_all_times/20210527/02_incremental_20210521_20210527.png new file mode 100644 index 00000000..1eb5387d Binary files /dev/null and b/campi_flegrei_example_all_times/20210527/02_incremental_20210521_20210527.png differ diff --git a/campi_flegrei_example_all_times/20210527/03_reconstruction_20210521_20210527.png b/campi_flegrei_example_all_times/20210527/03_reconstruction_20210521_20210527.png new file mode 100644 index 00000000..31e607db Binary files /dev/null and b/campi_flegrei_example_all_times/20210527/03_reconstruction_20210521_20210527.png differ diff --git a/campi_flegrei_example_all_times/20210527/04_residual_20210521_20210527.png b/campi_flegrei_example_all_times/20210527/04_residual_20210521_20210527.png new file mode 100644 index 00000000..eadc96d6 Binary files /dev/null and b/campi_flegrei_example_all_times/20210527/04_residual_20210521_20210527.png differ diff --git a/campi_flegrei_example_all_times/20210527/LiCSAlert_figure_with_250_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210527/LiCSAlert_figure_with_250_monitoring_interferograms.png new file mode 100644 index 00000000..f6f1b1d1 Binary files /dev/null and b/campi_flegrei_example_all_times/20210527/LiCSAlert_figure_with_250_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210527/mask_status.png b/campi_flegrei_example_all_times/20210527/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210527/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210527/volcano_status.txt b/campi_flegrei_example_all_times/20210527/volcano_status.txt new file mode 100644 index 00000000..0db6c5d9 --- /dev/null +++ b/campi_flegrei_example_all_times/20210527/volcano_status.txt @@ -0,0 +1,2 @@ +1.7450568074974206 +1.0902660829620945 diff --git a/campi_flegrei_example_all_times/20210602/01_cumulative_20141031_20210602.png b/campi_flegrei_example_all_times/20210602/01_cumulative_20141031_20210602.png new file mode 100644 index 00000000..fd3bbff6 Binary files /dev/null and b/campi_flegrei_example_all_times/20210602/01_cumulative_20141031_20210602.png differ diff --git a/campi_flegrei_example_all_times/20210602/02_incremental_20210527_20210602.png b/campi_flegrei_example_all_times/20210602/02_incremental_20210527_20210602.png new file mode 100644 index 00000000..7231fcff Binary files /dev/null and b/campi_flegrei_example_all_times/20210602/02_incremental_20210527_20210602.png differ diff --git a/campi_flegrei_example_all_times/20210602/03_reconstruction_20210527_20210602.png b/campi_flegrei_example_all_times/20210602/03_reconstruction_20210527_20210602.png new file mode 100644 index 00000000..0ee08c74 Binary files /dev/null and b/campi_flegrei_example_all_times/20210602/03_reconstruction_20210527_20210602.png differ diff --git a/campi_flegrei_example_all_times/20210602/04_residual_20210527_20210602.png b/campi_flegrei_example_all_times/20210602/04_residual_20210527_20210602.png new file mode 100644 index 00000000..286838b7 Binary files /dev/null and b/campi_flegrei_example_all_times/20210602/04_residual_20210527_20210602.png differ diff --git a/campi_flegrei_example_all_times/20210602/LiCSAlert_figure_with_251_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210602/LiCSAlert_figure_with_251_monitoring_interferograms.png new file mode 100644 index 00000000..b2d55515 Binary files /dev/null and b/campi_flegrei_example_all_times/20210602/LiCSAlert_figure_with_251_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210602/mask_status.png b/campi_flegrei_example_all_times/20210602/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210602/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210602/volcano_status.txt b/campi_flegrei_example_all_times/20210602/volcano_status.txt new file mode 100644 index 00000000..b95efdde --- /dev/null +++ b/campi_flegrei_example_all_times/20210602/volcano_status.txt @@ -0,0 +1,2 @@ +0.40904116842583443 +0.4521784857334863 diff --git a/campi_flegrei_example_all_times/20210608/01_cumulative_20141031_20210608.png b/campi_flegrei_example_all_times/20210608/01_cumulative_20141031_20210608.png new file mode 100644 index 00000000..99a96465 Binary files /dev/null and b/campi_flegrei_example_all_times/20210608/01_cumulative_20141031_20210608.png differ diff --git a/campi_flegrei_example_all_times/20210608/02_incremental_20210602_20210608.png b/campi_flegrei_example_all_times/20210608/02_incremental_20210602_20210608.png new file mode 100644 index 00000000..cc4ddf6f Binary files /dev/null and b/campi_flegrei_example_all_times/20210608/02_incremental_20210602_20210608.png differ diff --git a/campi_flegrei_example_all_times/20210608/03_reconstruction_20210602_20210608.png b/campi_flegrei_example_all_times/20210608/03_reconstruction_20210602_20210608.png new file mode 100644 index 00000000..60f2aeff Binary files /dev/null and b/campi_flegrei_example_all_times/20210608/03_reconstruction_20210602_20210608.png differ diff --git a/campi_flegrei_example_all_times/20210608/04_residual_20210602_20210608.png b/campi_flegrei_example_all_times/20210608/04_residual_20210602_20210608.png new file mode 100644 index 00000000..2ab6c1bc Binary files /dev/null and b/campi_flegrei_example_all_times/20210608/04_residual_20210602_20210608.png differ diff --git a/campi_flegrei_example_all_times/20210608/LiCSAlert_figure_with_252_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210608/LiCSAlert_figure_with_252_monitoring_interferograms.png new file mode 100644 index 00000000..e2fcb42b Binary files /dev/null and b/campi_flegrei_example_all_times/20210608/LiCSAlert_figure_with_252_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210608/mask_status.png b/campi_flegrei_example_all_times/20210608/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210608/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210608/volcano_status.txt b/campi_flegrei_example_all_times/20210608/volcano_status.txt new file mode 100644 index 00000000..cd5e8448 --- /dev/null +++ b/campi_flegrei_example_all_times/20210608/volcano_status.txt @@ -0,0 +1,2 @@ +2.100912332601352 +0.39376282716827976 diff --git a/campi_flegrei_example_all_times/20210614/01_cumulative_20141031_20210614.png b/campi_flegrei_example_all_times/20210614/01_cumulative_20141031_20210614.png new file mode 100644 index 00000000..68db227a Binary files /dev/null and b/campi_flegrei_example_all_times/20210614/01_cumulative_20141031_20210614.png differ diff --git a/campi_flegrei_example_all_times/20210614/02_incremental_20210608_20210614.png b/campi_flegrei_example_all_times/20210614/02_incremental_20210608_20210614.png new file mode 100644 index 00000000..11f05cac Binary files /dev/null and b/campi_flegrei_example_all_times/20210614/02_incremental_20210608_20210614.png differ diff --git a/campi_flegrei_example_all_times/20210614/03_reconstruction_20210608_20210614.png b/campi_flegrei_example_all_times/20210614/03_reconstruction_20210608_20210614.png new file mode 100644 index 00000000..5f29d6e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210614/03_reconstruction_20210608_20210614.png differ diff --git a/campi_flegrei_example_all_times/20210614/04_residual_20210608_20210614.png b/campi_flegrei_example_all_times/20210614/04_residual_20210608_20210614.png new file mode 100644 index 00000000..9423bc69 Binary files /dev/null and b/campi_flegrei_example_all_times/20210614/04_residual_20210608_20210614.png differ diff --git a/campi_flegrei_example_all_times/20210614/LiCSAlert_figure_with_253_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210614/LiCSAlert_figure_with_253_monitoring_interferograms.png new file mode 100644 index 00000000..143eaf26 Binary files /dev/null and b/campi_flegrei_example_all_times/20210614/LiCSAlert_figure_with_253_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210614/mask_status.png b/campi_flegrei_example_all_times/20210614/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210614/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210614/volcano_status.txt b/campi_flegrei_example_all_times/20210614/volcano_status.txt new file mode 100644 index 00000000..e7206368 --- /dev/null +++ b/campi_flegrei_example_all_times/20210614/volcano_status.txt @@ -0,0 +1,2 @@ +0.5189664968530485 +0.44616463130878137 diff --git a/campi_flegrei_example_all_times/20210620/01_cumulative_20141031_20210620.png b/campi_flegrei_example_all_times/20210620/01_cumulative_20141031_20210620.png new file mode 100644 index 00000000..45edde3b Binary files /dev/null and b/campi_flegrei_example_all_times/20210620/01_cumulative_20141031_20210620.png differ diff --git a/campi_flegrei_example_all_times/20210620/02_incremental_20210614_20210620.png b/campi_flegrei_example_all_times/20210620/02_incremental_20210614_20210620.png new file mode 100644 index 00000000..53e945ed Binary files /dev/null and b/campi_flegrei_example_all_times/20210620/02_incremental_20210614_20210620.png differ diff --git a/campi_flegrei_example_all_times/20210620/03_reconstruction_20210614_20210620.png b/campi_flegrei_example_all_times/20210620/03_reconstruction_20210614_20210620.png new file mode 100644 index 00000000..978a4e11 Binary files /dev/null and b/campi_flegrei_example_all_times/20210620/03_reconstruction_20210614_20210620.png differ diff --git a/campi_flegrei_example_all_times/20210620/04_residual_20210614_20210620.png b/campi_flegrei_example_all_times/20210620/04_residual_20210614_20210620.png new file mode 100644 index 00000000..d5d481da Binary files /dev/null and b/campi_flegrei_example_all_times/20210620/04_residual_20210614_20210620.png differ diff --git a/campi_flegrei_example_all_times/20210620/LiCSAlert_figure_with_254_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210620/LiCSAlert_figure_with_254_monitoring_interferograms.png new file mode 100644 index 00000000..f78e1179 Binary files /dev/null and b/campi_flegrei_example_all_times/20210620/LiCSAlert_figure_with_254_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210620/mask_status.png b/campi_flegrei_example_all_times/20210620/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210620/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210620/volcano_status.txt b/campi_flegrei_example_all_times/20210620/volcano_status.txt new file mode 100644 index 00000000..d51a238c --- /dev/null +++ b/campi_flegrei_example_all_times/20210620/volcano_status.txt @@ -0,0 +1,2 @@ +2.5021971688919096 +1.3679338013415316 diff --git a/campi_flegrei_example_all_times/20210626/01_cumulative_20141031_20210626.png b/campi_flegrei_example_all_times/20210626/01_cumulative_20141031_20210626.png new file mode 100644 index 00000000..9e156e22 Binary files /dev/null and b/campi_flegrei_example_all_times/20210626/01_cumulative_20141031_20210626.png differ diff --git a/campi_flegrei_example_all_times/20210626/02_incremental_20210620_20210626.png b/campi_flegrei_example_all_times/20210626/02_incremental_20210620_20210626.png new file mode 100644 index 00000000..923a12c2 Binary files /dev/null and b/campi_flegrei_example_all_times/20210626/02_incremental_20210620_20210626.png differ diff --git a/campi_flegrei_example_all_times/20210626/03_reconstruction_20210620_20210626.png b/campi_flegrei_example_all_times/20210626/03_reconstruction_20210620_20210626.png new file mode 100644 index 00000000..f85f0257 Binary files /dev/null and b/campi_flegrei_example_all_times/20210626/03_reconstruction_20210620_20210626.png differ diff --git a/campi_flegrei_example_all_times/20210626/04_residual_20210620_20210626.png b/campi_flegrei_example_all_times/20210626/04_residual_20210620_20210626.png new file mode 100644 index 00000000..86f32f90 Binary files /dev/null and b/campi_flegrei_example_all_times/20210626/04_residual_20210620_20210626.png differ diff --git a/campi_flegrei_example_all_times/20210626/LiCSAlert_figure_with_255_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210626/LiCSAlert_figure_with_255_monitoring_interferograms.png new file mode 100644 index 00000000..877e8e5f Binary files /dev/null and b/campi_flegrei_example_all_times/20210626/LiCSAlert_figure_with_255_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210626/mask_status.png b/campi_flegrei_example_all_times/20210626/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210626/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210626/volcano_status.txt b/campi_flegrei_example_all_times/20210626/volcano_status.txt new file mode 100644 index 00000000..26a4d223 --- /dev/null +++ b/campi_flegrei_example_all_times/20210626/volcano_status.txt @@ -0,0 +1,2 @@ +1.4703694979089692 +0.782345992966056 diff --git a/campi_flegrei_example_all_times/20210702/01_cumulative_20141031_20210702.png b/campi_flegrei_example_all_times/20210702/01_cumulative_20141031_20210702.png new file mode 100644 index 00000000..ef3a333b Binary files /dev/null and b/campi_flegrei_example_all_times/20210702/01_cumulative_20141031_20210702.png differ diff --git a/campi_flegrei_example_all_times/20210702/02_incremental_20210626_20210702.png b/campi_flegrei_example_all_times/20210702/02_incremental_20210626_20210702.png new file mode 100644 index 00000000..2f57e01f Binary files /dev/null and b/campi_flegrei_example_all_times/20210702/02_incremental_20210626_20210702.png differ diff --git a/campi_flegrei_example_all_times/20210702/03_reconstruction_20210626_20210702.png b/campi_flegrei_example_all_times/20210702/03_reconstruction_20210626_20210702.png new file mode 100644 index 00000000..7937df16 Binary files /dev/null and b/campi_flegrei_example_all_times/20210702/03_reconstruction_20210626_20210702.png differ diff --git a/campi_flegrei_example_all_times/20210702/04_residual_20210626_20210702.png b/campi_flegrei_example_all_times/20210702/04_residual_20210626_20210702.png new file mode 100644 index 00000000..75fb3e2f Binary files /dev/null and b/campi_flegrei_example_all_times/20210702/04_residual_20210626_20210702.png differ diff --git a/campi_flegrei_example_all_times/20210702/LiCSAlert_figure_with_256_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210702/LiCSAlert_figure_with_256_monitoring_interferograms.png new file mode 100644 index 00000000..ed4d19d6 Binary files /dev/null and b/campi_flegrei_example_all_times/20210702/LiCSAlert_figure_with_256_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210702/mask_status.png b/campi_flegrei_example_all_times/20210702/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210702/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210702/volcano_status.txt b/campi_flegrei_example_all_times/20210702/volcano_status.txt new file mode 100644 index 00000000..13173aac --- /dev/null +++ b/campi_flegrei_example_all_times/20210702/volcano_status.txt @@ -0,0 +1,2 @@ +0.3327279173306732 +2.17885974405449 diff --git a/campi_flegrei_example_all_times/20210708/01_cumulative_20141031_20210708.png b/campi_flegrei_example_all_times/20210708/01_cumulative_20141031_20210708.png new file mode 100644 index 00000000..fab4e991 Binary files /dev/null and b/campi_flegrei_example_all_times/20210708/01_cumulative_20141031_20210708.png differ diff --git a/campi_flegrei_example_all_times/20210708/02_incremental_20210702_20210708.png b/campi_flegrei_example_all_times/20210708/02_incremental_20210702_20210708.png new file mode 100644 index 00000000..6b28a348 Binary files /dev/null and b/campi_flegrei_example_all_times/20210708/02_incremental_20210702_20210708.png differ diff --git a/campi_flegrei_example_all_times/20210708/03_reconstruction_20210702_20210708.png b/campi_flegrei_example_all_times/20210708/03_reconstruction_20210702_20210708.png new file mode 100644 index 00000000..83629b4d Binary files /dev/null and b/campi_flegrei_example_all_times/20210708/03_reconstruction_20210702_20210708.png differ diff --git a/campi_flegrei_example_all_times/20210708/04_residual_20210702_20210708.png b/campi_flegrei_example_all_times/20210708/04_residual_20210702_20210708.png new file mode 100644 index 00000000..def90865 Binary files /dev/null and b/campi_flegrei_example_all_times/20210708/04_residual_20210702_20210708.png differ diff --git a/campi_flegrei_example_all_times/20210708/LiCSAlert_figure_with_257_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210708/LiCSAlert_figure_with_257_monitoring_interferograms.png new file mode 100644 index 00000000..d1344bdd Binary files /dev/null and b/campi_flegrei_example_all_times/20210708/LiCSAlert_figure_with_257_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210708/mask_status.png b/campi_flegrei_example_all_times/20210708/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210708/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210708/volcano_status.txt b/campi_flegrei_example_all_times/20210708/volcano_status.txt new file mode 100644 index 00000000..c3d45eec --- /dev/null +++ b/campi_flegrei_example_all_times/20210708/volcano_status.txt @@ -0,0 +1,2 @@ +0.48316066761881804 +0.35752142351631766 diff --git a/campi_flegrei_example_all_times/20210714/01_cumulative_20141031_20210714.png b/campi_flegrei_example_all_times/20210714/01_cumulative_20141031_20210714.png new file mode 100644 index 00000000..ebef3762 Binary files /dev/null and b/campi_flegrei_example_all_times/20210714/01_cumulative_20141031_20210714.png differ diff --git a/campi_flegrei_example_all_times/20210714/02_incremental_20210708_20210714.png b/campi_flegrei_example_all_times/20210714/02_incremental_20210708_20210714.png new file mode 100644 index 00000000..b49e58e5 Binary files /dev/null and b/campi_flegrei_example_all_times/20210714/02_incremental_20210708_20210714.png differ diff --git a/campi_flegrei_example_all_times/20210714/03_reconstruction_20210708_20210714.png b/campi_flegrei_example_all_times/20210714/03_reconstruction_20210708_20210714.png new file mode 100644 index 00000000..91c4be05 Binary files /dev/null and b/campi_flegrei_example_all_times/20210714/03_reconstruction_20210708_20210714.png differ diff --git a/campi_flegrei_example_all_times/20210714/04_residual_20210708_20210714.png b/campi_flegrei_example_all_times/20210714/04_residual_20210708_20210714.png new file mode 100644 index 00000000..611eb3f6 Binary files /dev/null and b/campi_flegrei_example_all_times/20210714/04_residual_20210708_20210714.png differ diff --git a/campi_flegrei_example_all_times/20210714/LiCSAlert_figure_with_258_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210714/LiCSAlert_figure_with_258_monitoring_interferograms.png new file mode 100644 index 00000000..3b0a157b Binary files /dev/null and b/campi_flegrei_example_all_times/20210714/LiCSAlert_figure_with_258_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210714/mask_status.png b/campi_flegrei_example_all_times/20210714/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210714/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210714/volcano_status.txt b/campi_flegrei_example_all_times/20210714/volcano_status.txt new file mode 100644 index 00000000..b8807328 --- /dev/null +++ b/campi_flegrei_example_all_times/20210714/volcano_status.txt @@ -0,0 +1,2 @@ +0.01727047291301047 +0.4148685975883303 diff --git a/campi_flegrei_example_all_times/20210720/01_cumulative_20141031_20210720.png b/campi_flegrei_example_all_times/20210720/01_cumulative_20141031_20210720.png new file mode 100644 index 00000000..0351d0c2 Binary files /dev/null and b/campi_flegrei_example_all_times/20210720/01_cumulative_20141031_20210720.png differ diff --git a/campi_flegrei_example_all_times/20210720/02_incremental_20210714_20210720.png b/campi_flegrei_example_all_times/20210720/02_incremental_20210714_20210720.png new file mode 100644 index 00000000..c2e3fbc4 Binary files /dev/null and b/campi_flegrei_example_all_times/20210720/02_incremental_20210714_20210720.png differ diff --git a/campi_flegrei_example_all_times/20210720/03_reconstruction_20210714_20210720.png b/campi_flegrei_example_all_times/20210720/03_reconstruction_20210714_20210720.png new file mode 100644 index 00000000..f32aec81 Binary files /dev/null and b/campi_flegrei_example_all_times/20210720/03_reconstruction_20210714_20210720.png differ diff --git a/campi_flegrei_example_all_times/20210720/04_residual_20210714_20210720.png b/campi_flegrei_example_all_times/20210720/04_residual_20210714_20210720.png new file mode 100644 index 00000000..bcd33e05 Binary files /dev/null and b/campi_flegrei_example_all_times/20210720/04_residual_20210714_20210720.png differ diff --git a/campi_flegrei_example_all_times/20210720/LiCSAlert_figure_with_259_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210720/LiCSAlert_figure_with_259_monitoring_interferograms.png new file mode 100644 index 00000000..cc1e1273 Binary files /dev/null and b/campi_flegrei_example_all_times/20210720/LiCSAlert_figure_with_259_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210720/mask_status.png b/campi_flegrei_example_all_times/20210720/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210720/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210720/volcano_status.txt b/campi_flegrei_example_all_times/20210720/volcano_status.txt new file mode 100644 index 00000000..46d7644d --- /dev/null +++ b/campi_flegrei_example_all_times/20210720/volcano_status.txt @@ -0,0 +1,2 @@ +0.36760989442642056 +0.7822327617228718 diff --git a/campi_flegrei_example_all_times/20210726/01_cumulative_20141031_20210726.png b/campi_flegrei_example_all_times/20210726/01_cumulative_20141031_20210726.png new file mode 100644 index 00000000..485d4619 Binary files /dev/null and b/campi_flegrei_example_all_times/20210726/01_cumulative_20141031_20210726.png differ diff --git a/campi_flegrei_example_all_times/20210726/02_incremental_20210720_20210726.png b/campi_flegrei_example_all_times/20210726/02_incremental_20210720_20210726.png new file mode 100644 index 00000000..a2a0b429 Binary files /dev/null and b/campi_flegrei_example_all_times/20210726/02_incremental_20210720_20210726.png differ diff --git a/campi_flegrei_example_all_times/20210726/03_reconstruction_20210720_20210726.png b/campi_flegrei_example_all_times/20210726/03_reconstruction_20210720_20210726.png new file mode 100644 index 00000000..dca5e08f Binary files /dev/null and b/campi_flegrei_example_all_times/20210726/03_reconstruction_20210720_20210726.png differ diff --git a/campi_flegrei_example_all_times/20210726/04_residual_20210720_20210726.png b/campi_flegrei_example_all_times/20210726/04_residual_20210720_20210726.png new file mode 100644 index 00000000..df6ac47f Binary files /dev/null and b/campi_flegrei_example_all_times/20210726/04_residual_20210720_20210726.png differ diff --git a/campi_flegrei_example_all_times/20210726/LiCSAlert_figure_with_260_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210726/LiCSAlert_figure_with_260_monitoring_interferograms.png new file mode 100644 index 00000000..31be5b11 Binary files /dev/null and b/campi_flegrei_example_all_times/20210726/LiCSAlert_figure_with_260_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210726/mask_status.png b/campi_flegrei_example_all_times/20210726/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210726/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210726/volcano_status.txt b/campi_flegrei_example_all_times/20210726/volcano_status.txt new file mode 100644 index 00000000..51803af0 --- /dev/null +++ b/campi_flegrei_example_all_times/20210726/volcano_status.txt @@ -0,0 +1,2 @@ +0.35660764401053546 +0.560155920859981 diff --git a/campi_flegrei_example_all_times/20210801/01_cumulative_20141031_20210801.png b/campi_flegrei_example_all_times/20210801/01_cumulative_20141031_20210801.png new file mode 100644 index 00000000..7e5bd656 Binary files /dev/null and b/campi_flegrei_example_all_times/20210801/01_cumulative_20141031_20210801.png differ diff --git a/campi_flegrei_example_all_times/20210801/02_incremental_20210726_20210801.png b/campi_flegrei_example_all_times/20210801/02_incremental_20210726_20210801.png new file mode 100644 index 00000000..38a70fa7 Binary files /dev/null and b/campi_flegrei_example_all_times/20210801/02_incremental_20210726_20210801.png differ diff --git a/campi_flegrei_example_all_times/20210801/03_reconstruction_20210726_20210801.png b/campi_flegrei_example_all_times/20210801/03_reconstruction_20210726_20210801.png new file mode 100644 index 00000000..5aa65f26 Binary files /dev/null and b/campi_flegrei_example_all_times/20210801/03_reconstruction_20210726_20210801.png differ diff --git a/campi_flegrei_example_all_times/20210801/04_residual_20210726_20210801.png b/campi_flegrei_example_all_times/20210801/04_residual_20210726_20210801.png new file mode 100644 index 00000000..ec8bfaab Binary files /dev/null and b/campi_flegrei_example_all_times/20210801/04_residual_20210726_20210801.png differ diff --git a/campi_flegrei_example_all_times/20210801/LiCSAlert_figure_with_261_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210801/LiCSAlert_figure_with_261_monitoring_interferograms.png new file mode 100644 index 00000000..e5f13d20 Binary files /dev/null and b/campi_flegrei_example_all_times/20210801/LiCSAlert_figure_with_261_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210801/mask_status.png b/campi_flegrei_example_all_times/20210801/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210801/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210801/volcano_status.txt b/campi_flegrei_example_all_times/20210801/volcano_status.txt new file mode 100644 index 00000000..a0569483 --- /dev/null +++ b/campi_flegrei_example_all_times/20210801/volcano_status.txt @@ -0,0 +1,2 @@ +0.18830077208225227 +1.4493530300624449 diff --git a/campi_flegrei_example_all_times/20210807/01_cumulative_20141031_20210807.png b/campi_flegrei_example_all_times/20210807/01_cumulative_20141031_20210807.png new file mode 100644 index 00000000..178edba0 Binary files /dev/null and b/campi_flegrei_example_all_times/20210807/01_cumulative_20141031_20210807.png differ diff --git a/campi_flegrei_example_all_times/20210807/02_incremental_20210801_20210807.png b/campi_flegrei_example_all_times/20210807/02_incremental_20210801_20210807.png new file mode 100644 index 00000000..67d5ab04 Binary files /dev/null and b/campi_flegrei_example_all_times/20210807/02_incremental_20210801_20210807.png differ diff --git a/campi_flegrei_example_all_times/20210807/03_reconstruction_20210801_20210807.png b/campi_flegrei_example_all_times/20210807/03_reconstruction_20210801_20210807.png new file mode 100644 index 00000000..8ec02d53 Binary files /dev/null and b/campi_flegrei_example_all_times/20210807/03_reconstruction_20210801_20210807.png differ diff --git a/campi_flegrei_example_all_times/20210807/04_residual_20210801_20210807.png b/campi_flegrei_example_all_times/20210807/04_residual_20210801_20210807.png new file mode 100644 index 00000000..814b4731 Binary files /dev/null and b/campi_flegrei_example_all_times/20210807/04_residual_20210801_20210807.png differ diff --git a/campi_flegrei_example_all_times/20210807/LiCSAlert_figure_with_262_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210807/LiCSAlert_figure_with_262_monitoring_interferograms.png new file mode 100644 index 00000000..945792a2 Binary files /dev/null and b/campi_flegrei_example_all_times/20210807/LiCSAlert_figure_with_262_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210807/mask_status.png b/campi_flegrei_example_all_times/20210807/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210807/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210807/volcano_status.txt b/campi_flegrei_example_all_times/20210807/volcano_status.txt new file mode 100644 index 00000000..36821462 --- /dev/null +++ b/campi_flegrei_example_all_times/20210807/volcano_status.txt @@ -0,0 +1,2 @@ +0.6105707072490975 +0.20825920264082876 diff --git a/campi_flegrei_example_all_times/20210813/01_cumulative_20141031_20210813.png b/campi_flegrei_example_all_times/20210813/01_cumulative_20141031_20210813.png new file mode 100644 index 00000000..6bfbe3a7 Binary files /dev/null and b/campi_flegrei_example_all_times/20210813/01_cumulative_20141031_20210813.png differ diff --git a/campi_flegrei_example_all_times/20210813/02_incremental_20210807_20210813.png b/campi_flegrei_example_all_times/20210813/02_incremental_20210807_20210813.png new file mode 100644 index 00000000..93870079 Binary files /dev/null and b/campi_flegrei_example_all_times/20210813/02_incremental_20210807_20210813.png differ diff --git a/campi_flegrei_example_all_times/20210813/03_reconstruction_20210807_20210813.png b/campi_flegrei_example_all_times/20210813/03_reconstruction_20210807_20210813.png new file mode 100644 index 00000000..88c6a22b Binary files /dev/null and b/campi_flegrei_example_all_times/20210813/03_reconstruction_20210807_20210813.png differ diff --git a/campi_flegrei_example_all_times/20210813/04_residual_20210807_20210813.png b/campi_flegrei_example_all_times/20210813/04_residual_20210807_20210813.png new file mode 100644 index 00000000..370f3493 Binary files /dev/null and b/campi_flegrei_example_all_times/20210813/04_residual_20210807_20210813.png differ diff --git a/campi_flegrei_example_all_times/20210813/LiCSAlert_figure_with_263_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210813/LiCSAlert_figure_with_263_monitoring_interferograms.png new file mode 100644 index 00000000..8d689de1 Binary files /dev/null and b/campi_flegrei_example_all_times/20210813/LiCSAlert_figure_with_263_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210813/mask_status.png b/campi_flegrei_example_all_times/20210813/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210813/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210813/volcano_status.txt b/campi_flegrei_example_all_times/20210813/volcano_status.txt new file mode 100644 index 00000000..121b7f48 --- /dev/null +++ b/campi_flegrei_example_all_times/20210813/volcano_status.txt @@ -0,0 +1,2 @@ +1.0749789318578218 +1.2403798760146174 diff --git a/campi_flegrei_example_all_times/20210819/01_cumulative_20141031_20210819.png b/campi_flegrei_example_all_times/20210819/01_cumulative_20141031_20210819.png new file mode 100644 index 00000000..1c70588d Binary files /dev/null and b/campi_flegrei_example_all_times/20210819/01_cumulative_20141031_20210819.png differ diff --git a/campi_flegrei_example_all_times/20210819/02_incremental_20210813_20210819.png b/campi_flegrei_example_all_times/20210819/02_incremental_20210813_20210819.png new file mode 100644 index 00000000..de28154f Binary files /dev/null and b/campi_flegrei_example_all_times/20210819/02_incremental_20210813_20210819.png differ diff --git a/campi_flegrei_example_all_times/20210819/03_reconstruction_20210813_20210819.png b/campi_flegrei_example_all_times/20210819/03_reconstruction_20210813_20210819.png new file mode 100644 index 00000000..52a5cfde Binary files /dev/null and b/campi_flegrei_example_all_times/20210819/03_reconstruction_20210813_20210819.png differ diff --git a/campi_flegrei_example_all_times/20210819/04_residual_20210813_20210819.png b/campi_flegrei_example_all_times/20210819/04_residual_20210813_20210819.png new file mode 100644 index 00000000..0b4a1373 Binary files /dev/null and b/campi_flegrei_example_all_times/20210819/04_residual_20210813_20210819.png differ diff --git a/campi_flegrei_example_all_times/20210819/LiCSAlert_figure_with_264_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210819/LiCSAlert_figure_with_264_monitoring_interferograms.png new file mode 100644 index 00000000..f8534c56 Binary files /dev/null and b/campi_flegrei_example_all_times/20210819/LiCSAlert_figure_with_264_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210819/mask_status.png b/campi_flegrei_example_all_times/20210819/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210819/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210819/volcano_status.txt b/campi_flegrei_example_all_times/20210819/volcano_status.txt new file mode 100644 index 00000000..a9762ea7 --- /dev/null +++ b/campi_flegrei_example_all_times/20210819/volcano_status.txt @@ -0,0 +1,2 @@ +0.290946359137186 +0.652631275478625 diff --git a/campi_flegrei_example_all_times/20210825/01_cumulative_20141031_20210825.png b/campi_flegrei_example_all_times/20210825/01_cumulative_20141031_20210825.png new file mode 100644 index 00000000..99300985 Binary files /dev/null and b/campi_flegrei_example_all_times/20210825/01_cumulative_20141031_20210825.png differ diff --git a/campi_flegrei_example_all_times/20210825/02_incremental_20210819_20210825.png b/campi_flegrei_example_all_times/20210825/02_incremental_20210819_20210825.png new file mode 100644 index 00000000..0b953d46 Binary files /dev/null and b/campi_flegrei_example_all_times/20210825/02_incremental_20210819_20210825.png differ diff --git a/campi_flegrei_example_all_times/20210825/03_reconstruction_20210819_20210825.png b/campi_flegrei_example_all_times/20210825/03_reconstruction_20210819_20210825.png new file mode 100644 index 00000000..729c5180 Binary files /dev/null and b/campi_flegrei_example_all_times/20210825/03_reconstruction_20210819_20210825.png differ diff --git a/campi_flegrei_example_all_times/20210825/04_residual_20210819_20210825.png b/campi_flegrei_example_all_times/20210825/04_residual_20210819_20210825.png new file mode 100644 index 00000000..238828de Binary files /dev/null and b/campi_flegrei_example_all_times/20210825/04_residual_20210819_20210825.png differ diff --git a/campi_flegrei_example_all_times/20210825/LiCSAlert_figure_with_265_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210825/LiCSAlert_figure_with_265_monitoring_interferograms.png new file mode 100644 index 00000000..df4e7612 Binary files /dev/null and b/campi_flegrei_example_all_times/20210825/LiCSAlert_figure_with_265_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210825/mask_status.png b/campi_flegrei_example_all_times/20210825/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210825/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210825/volcano_status.txt b/campi_flegrei_example_all_times/20210825/volcano_status.txt new file mode 100644 index 00000000..41b29352 --- /dev/null +++ b/campi_flegrei_example_all_times/20210825/volcano_status.txt @@ -0,0 +1,2 @@ +0.6830407578617528 +1.0755254469462476 diff --git a/campi_flegrei_example_all_times/20210831/01_cumulative_20141031_20210831.png b/campi_flegrei_example_all_times/20210831/01_cumulative_20141031_20210831.png new file mode 100644 index 00000000..1daaa6f0 Binary files /dev/null and b/campi_flegrei_example_all_times/20210831/01_cumulative_20141031_20210831.png differ diff --git a/campi_flegrei_example_all_times/20210831/02_incremental_20210825_20210831.png b/campi_flegrei_example_all_times/20210831/02_incremental_20210825_20210831.png new file mode 100644 index 00000000..8e90dc4e Binary files /dev/null and b/campi_flegrei_example_all_times/20210831/02_incremental_20210825_20210831.png differ diff --git a/campi_flegrei_example_all_times/20210831/03_reconstruction_20210825_20210831.png b/campi_flegrei_example_all_times/20210831/03_reconstruction_20210825_20210831.png new file mode 100644 index 00000000..95055b17 Binary files /dev/null and b/campi_flegrei_example_all_times/20210831/03_reconstruction_20210825_20210831.png differ diff --git a/campi_flegrei_example_all_times/20210831/04_residual_20210825_20210831.png b/campi_flegrei_example_all_times/20210831/04_residual_20210825_20210831.png new file mode 100644 index 00000000..6d1eb121 Binary files /dev/null and b/campi_flegrei_example_all_times/20210831/04_residual_20210825_20210831.png differ diff --git a/campi_flegrei_example_all_times/20210831/LiCSAlert_figure_with_266_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210831/LiCSAlert_figure_with_266_monitoring_interferograms.png new file mode 100644 index 00000000..b36e9056 Binary files /dev/null and b/campi_flegrei_example_all_times/20210831/LiCSAlert_figure_with_266_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210831/mask_status.png b/campi_flegrei_example_all_times/20210831/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210831/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210831/volcano_status.txt b/campi_flegrei_example_all_times/20210831/volcano_status.txt new file mode 100644 index 00000000..84f3cbcc --- /dev/null +++ b/campi_flegrei_example_all_times/20210831/volcano_status.txt @@ -0,0 +1,2 @@ +1.2238475070543913 +0.42681852363526207 diff --git a/campi_flegrei_example_all_times/20210906/01_cumulative_20141031_20210906.png b/campi_flegrei_example_all_times/20210906/01_cumulative_20141031_20210906.png new file mode 100644 index 00000000..86300076 Binary files /dev/null and b/campi_flegrei_example_all_times/20210906/01_cumulative_20141031_20210906.png differ diff --git a/campi_flegrei_example_all_times/20210906/02_incremental_20210831_20210906.png b/campi_flegrei_example_all_times/20210906/02_incremental_20210831_20210906.png new file mode 100644 index 00000000..9883b73c Binary files /dev/null and b/campi_flegrei_example_all_times/20210906/02_incremental_20210831_20210906.png differ diff --git a/campi_flegrei_example_all_times/20210906/03_reconstruction_20210831_20210906.png b/campi_flegrei_example_all_times/20210906/03_reconstruction_20210831_20210906.png new file mode 100644 index 00000000..1f6672af Binary files /dev/null and b/campi_flegrei_example_all_times/20210906/03_reconstruction_20210831_20210906.png differ diff --git a/campi_flegrei_example_all_times/20210906/04_residual_20210831_20210906.png b/campi_flegrei_example_all_times/20210906/04_residual_20210831_20210906.png new file mode 100644 index 00000000..02d76d39 Binary files /dev/null and b/campi_flegrei_example_all_times/20210906/04_residual_20210831_20210906.png differ diff --git a/campi_flegrei_example_all_times/20210906/LiCSAlert_figure_with_267_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210906/LiCSAlert_figure_with_267_monitoring_interferograms.png new file mode 100644 index 00000000..3391a2a7 Binary files /dev/null and b/campi_flegrei_example_all_times/20210906/LiCSAlert_figure_with_267_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210906/mask_status.png b/campi_flegrei_example_all_times/20210906/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210906/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210906/volcano_status.txt b/campi_flegrei_example_all_times/20210906/volcano_status.txt new file mode 100644 index 00000000..e6948783 --- /dev/null +++ b/campi_flegrei_example_all_times/20210906/volcano_status.txt @@ -0,0 +1,2 @@ +0.6856005811811704 +0.11729797715555139 diff --git a/campi_flegrei_example_all_times/20210912/01_cumulative_20141031_20210912.png b/campi_flegrei_example_all_times/20210912/01_cumulative_20141031_20210912.png new file mode 100644 index 00000000..1fc015af Binary files /dev/null and b/campi_flegrei_example_all_times/20210912/01_cumulative_20141031_20210912.png differ diff --git a/campi_flegrei_example_all_times/20210912/02_incremental_20210906_20210912.png b/campi_flegrei_example_all_times/20210912/02_incremental_20210906_20210912.png new file mode 100644 index 00000000..2a3c03a3 Binary files /dev/null and b/campi_flegrei_example_all_times/20210912/02_incremental_20210906_20210912.png differ diff --git a/campi_flegrei_example_all_times/20210912/03_reconstruction_20210906_20210912.png b/campi_flegrei_example_all_times/20210912/03_reconstruction_20210906_20210912.png new file mode 100644 index 00000000..c52b44b0 Binary files /dev/null and b/campi_flegrei_example_all_times/20210912/03_reconstruction_20210906_20210912.png differ diff --git a/campi_flegrei_example_all_times/20210912/04_residual_20210906_20210912.png b/campi_flegrei_example_all_times/20210912/04_residual_20210906_20210912.png new file mode 100644 index 00000000..42639ebd Binary files /dev/null and b/campi_flegrei_example_all_times/20210912/04_residual_20210906_20210912.png differ diff --git a/campi_flegrei_example_all_times/20210912/LiCSAlert_figure_with_268_monitoring_interferograms.png b/campi_flegrei_example_all_times/20210912/LiCSAlert_figure_with_268_monitoring_interferograms.png new file mode 100644 index 00000000..ab75a056 Binary files /dev/null and b/campi_flegrei_example_all_times/20210912/LiCSAlert_figure_with_268_monitoring_interferograms.png differ diff --git a/campi_flegrei_example_all_times/20210912/licsalert_results.pkl b/campi_flegrei_example_all_times/20210912/licsalert_results.pkl new file mode 100644 index 00000000..1e330b03 Binary files /dev/null and b/campi_flegrei_example_all_times/20210912/licsalert_results.pkl differ diff --git a/campi_flegrei_example_all_times/20210912/mask_status.png b/campi_flegrei_example_all_times/20210912/mask_status.png new file mode 100644 index 00000000..500483e8 Binary files /dev/null and b/campi_flegrei_example_all_times/20210912/mask_status.png differ diff --git a/campi_flegrei_example_all_times/20210912/volcano_status.txt b/campi_flegrei_example_all_times/20210912/volcano_status.txt new file mode 100644 index 00000000..e6caadb4 --- /dev/null +++ b/campi_flegrei_example_all_times/20210912/volcano_status.txt @@ -0,0 +1,2 @@ +0.29187000001694285 +0.9886186358189183 diff --git a/campi_flegrei_example_all_times/ICASAR_results/01_pca_variance_line.png b/campi_flegrei_example_all_times/ICASAR_results/01_pca_variance_line.png new file mode 100644 index 00000000..92583eac Binary files /dev/null and b/campi_flegrei_example_all_times/ICASAR_results/01_pca_variance_line.png differ diff --git a/campi_flegrei_example_all_times/ICASAR_results/02_PCA_sources_correlations.png b/campi_flegrei_example_all_times/ICASAR_results/02_PCA_sources_correlations.png new file mode 100644 index 00000000..4c19f064 Binary files /dev/null and b/campi_flegrei_example_all_times/ICASAR_results/02_PCA_sources_correlations.png differ diff --git a/campi_flegrei_example_all_times/ICASAR_results/02_PCA_sources_time.png b/campi_flegrei_example_all_times/ICASAR_results/02_PCA_sources_time.png new file mode 100644 index 00000000..8b36944f Binary files /dev/null and b/campi_flegrei_example_all_times/ICASAR_results/02_PCA_sources_time.png differ diff --git a/campi_flegrei_example_all_times/ICASAR_results/03_ICA_sources_correlations.png b/campi_flegrei_example_all_times/ICASAR_results/03_ICA_sources_correlations.png new file mode 100644 index 00000000..5dc11591 Binary files /dev/null and b/campi_flegrei_example_all_times/ICASAR_results/03_ICA_sources_correlations.png differ diff --git a/campi_flegrei_example_all_times/ICASAR_results/03_ICA_sources_time.png b/campi_flegrei_example_all_times/ICASAR_results/03_ICA_sources_time.png new file mode 100644 index 00000000..0bc7c071 Binary files /dev/null and b/campi_flegrei_example_all_times/ICASAR_results/03_ICA_sources_time.png differ diff --git a/campi_flegrei_example_all_times/ICASAR_results/04_clustering_and_manifold_results.png b/campi_flegrei_example_all_times/ICASAR_results/04_clustering_and_manifold_results.png new file mode 100644 index 00000000..01fd7b1c Binary files /dev/null and b/campi_flegrei_example_all_times/ICASAR_results/04_clustering_and_manifold_results.png differ diff --git a/campi_flegrei_example_all_times/ICASAR_results/FastICA_results.pkl b/campi_flegrei_example_all_times/ICASAR_results/FastICA_results.pkl new file mode 100644 index 00000000..abe66a3a Binary files /dev/null and b/campi_flegrei_example_all_times/ICASAR_results/FastICA_results.pkl differ diff --git a/campi_flegrei_example_all_times/ICASAR_results/ICASAR_results.pkl b/campi_flegrei_example_all_times/ICASAR_results/ICASAR_results.pkl new file mode 100644 index 00000000..af52f05b Binary files /dev/null and b/campi_flegrei_example_all_times/ICASAR_results/ICASAR_results.pkl differ diff --git a/campi_flegrei_example_all_times/ICASAR_results/ICs.kmz b/campi_flegrei_example_all_times/ICASAR_results/ICs.kmz new file mode 100644 index 00000000..3f18bad5 Binary files /dev/null and b/campi_flegrei_example_all_times/ICASAR_results/ICs.kmz differ diff --git a/campi_flegrei_example_all_times/LiCSAlert_history.txt b/campi_flegrei_example_all_times/LiCSAlert_history.txt new file mode 100644 index 00000000..750e3993 --- /dev/null +++ b/campi_flegrei_example_all_times/LiCSAlert_history.txt @@ -0,0 +1,1148 @@ + + + + + +LiCSAlert is being run for campi_flegrei_example_all_times at 04/04/2023 17:19:16 +Failed to open the config file for this volcano. Trying to populate the LiCSAlert_settings and ICASAR_settings dictionaries with from the function input arguments +LiCSAlert is opening a LiCSBAS directory. +Succesfully referenced the LiCSBAS time series using the pixel/area selected by LiCSBAS. +LiCSAlert_preprocessing: mean centering the interferograms before downsampling +Interferogram were originally (181, 281) (34356 unmasked pixels), but have been downsampled to (90, 140) (8533 unmasked pixels) for use with LiCSAlert, and have been downsampled to (45, 70) (2127 unmasked pixels) for figures. +LiCSBAS date Past baseline LiCSAlert To process +20141031 no +20141218 no +20150111 no +20150123 no +20150216 no +20150228 no +20150312 no +20150324 no +20150405 no +20150429 no +20150511 no +20150523 no +20150604 no +20150710 no +20150722 no +20150815 no +20150920 no +20151002 no +20151014 no +20151107 no +20151119 no +20151201 no +20151213 no +20151225 no +20160106 no +20160118 no +20160211 no +20160223 no +20160306 no +20160318 no +20160330 no +20160411 no +20160505 no +20160517 no +20160529 no +20160610 no +20160704 no +20160716 no +20160728 no +20160809 no +20160821 no +20160902 no +20160914 no +20160926 no +20161002 no +20161008 no +20161014 no +20161020 no +20161026 no +20161101 no +20161107 no +20161113 no +20161119 no +20161201 no +20161207 no +20161213 no +20161219 no +20161225 no +20161231 no +20170112 yes not processed to process +20170118 yes not processed to process +20170124 yes not processed to process +20170130 yes not processed to process +20170205 yes not processed to process +20170211 yes not processed to process +20170223 yes not processed to process +20170301 yes not processed to process +20170307 yes not processed to process +20170313 yes not processed to process +20170319 yes not processed to process +20170325 yes not processed to process +20170331 yes not processed to process +20170406 yes not processed to process +20170412 yes not processed to process +20170418 yes not processed to process +20170424 yes not processed to process +20170430 yes not processed to process +20170506 yes not processed to process +20170512 yes not processed to process +20170518 yes not processed to process +20170524 yes not processed to process +20170530 yes not processed to process +20170605 yes not processed to process +20170611 yes not processed to process +20170617 yes not processed to process +20170623 yes not processed to process +20170629 yes not processed to process +20170705 yes not processed to process +20170711 yes not processed to process +20170717 yes not processed to process +20170723 yes not processed to process +20170729 yes not processed to process +20170804 yes not processed to process +20170816 yes not processed to process +20170822 yes not processed to process +20170828 yes not processed to process +20170903 yes not processed to process +20170909 yes not processed to process +20170915 yes not processed to process +20170921 yes not processed to process +20170927 yes not processed to process +20171009 yes not processed to process +20171015 yes not processed to process +20171021 yes not processed to process +20171027 yes not processed to process +20171102 yes not processed to process +20171108 yes not processed to process +20171114 yes not processed to process +20171120 yes not processed to process +20171202 yes not processed to process +20171208 yes not processed to process +20171214 yes not processed to process +20171226 yes not processed to process +20180101 yes not processed to process +20180107 yes not processed to process +20180113 yes not processed to process +20180119 yes not processed to process +20180125 yes not processed to process +20180131 yes not processed to process +20180206 yes not processed to process +20180218 yes not processed to process +20180224 yes not processed to process +20180302 yes not processed to process +20180308 yes not processed to process +20180314 yes not processed to process +20180320 yes not processed to process +20180326 yes not processed to process +20180401 yes not processed to process +20180407 yes not processed to process +20180413 yes not processed to process +20180419 yes not processed to process +20180425 yes not processed to process +20180501 yes not processed to process +20180507 yes not processed to process +20180513 yes not processed to process +20180519 yes not processed to process +20180525 yes not processed to process +20180531 yes not processed to process +20180606 yes not processed to process +20180612 yes not processed to process +20180618 yes not processed to process +20180630 yes not processed to process +20180712 yes not processed to process +20180718 yes not processed to process +20180724 yes not processed to process +20180730 yes not processed to process +20180805 yes not processed to process +20180811 yes not processed to process +20180817 yes not processed to process +20180823 yes not processed to process +20180829 yes not processed to process +20180904 yes not processed to process +20180910 yes not processed to process +20180916 yes not processed to process +20180922 yes not processed to process +20180928 yes not processed to process +20181004 yes not processed to process +20181010 yes not processed to process +20181016 yes not processed to process +20181022 yes not processed to process +20181028 yes not processed to process +20181109 yes not processed to process +20181115 yes not processed to process +20181121 yes not processed to process +20181127 yes not processed to process +20181203 yes not processed to process +20181209 yes not processed to process +20181215 yes not processed to process +20181221 yes not processed to process +20181227 yes not processed to process +20190102 yes not processed to process +20190108 yes not processed to process +20190114 yes not processed to process +20190120 yes not processed to process +20190126 yes not processed to process +20190201 yes not processed to process +20190207 yes not processed to process +20190213 yes not processed to process +20190225 yes not processed to process +20190303 yes not processed to process +20190309 yes not processed to process +20190321 yes not processed to process +20190402 yes not processed to process +20190408 yes not processed to process +20190414 yes not processed to process +20190420 yes not processed to process +20190426 yes not processed to process +20190502 yes not processed to process +20190508 yes not processed to process +20190520 yes not processed to process +20190526 yes not processed to process +20190601 yes not processed to process +20190607 yes not processed to process +20190613 yes not processed to process +20190625 yes not processed to process +20190701 yes not processed to process +20190707 yes not processed to process +20190713 yes not processed to process +20190719 yes not processed to process +20190725 yes not processed to process +20190731 yes not processed to process +20190806 yes not processed to process +20190812 yes not processed to process +20190818 yes not processed to process +20190824 yes not processed to process +20190830 yes not processed to process +20190905 yes not processed to process +20190911 yes not processed to process +20190917 yes not processed to process +20190923 yes not processed to process +20191005 yes not processed to process +20191011 yes not processed to process +20191017 yes not processed to process +20191023 yes not processed to process +20191029 yes not processed to process +20191104 yes not processed to process +20191116 yes not processed to process +20191122 yes not processed to process +20191128 yes not processed to process +20191204 yes not processed to process +20191210 yes not processed to process +20191216 yes not processed to process +20191222 yes not processed to process +20191228 yes not processed to process +20200103 yes not processed to process +20200109 yes not processed to process +20200115 yes not processed to process +20200121 yes not processed to process +20200127 yes not processed to process +20200202 yes not processed to process +20200208 yes not processed to process +20200214 yes not processed to process +20200220 yes not processed to process +20200226 yes not processed to process +20200303 yes not processed to process +20200309 yes not processed to process +20200315 yes not processed to process +20200321 yes not processed to process +20200402 yes not processed to process +20200408 yes not processed to process +20200414 yes not processed to process +20200420 yes not processed to process +20200426 yes not processed to process +20200502 yes not processed to process +20200508 yes not processed to process +20200514 yes not processed to process +20200520 yes not processed to process +20200526 yes not processed to process +20200601 yes not processed to process +20200607 yes not processed to process +20200613 yes not processed to process +20200619 yes not processed to process +20200625 yes not processed to process +20200701 yes not processed to process +20200707 yes not processed to process +20200713 yes not processed to process +20200719 yes not processed to process +20200725 yes not processed to process +20200731 yes not processed to process +20200806 yes not processed to process +20200812 yes not processed to process +20200818 yes not processed to process +20200824 yes not processed to process +20200830 yes not processed to process +20200905 yes not processed to process +20200911 yes not processed to process +20200917 yes not processed to process +20200923 yes not processed to process +20200929 yes not processed to process +20201005 yes not processed to process +20201011 yes not processed to process +20201017 yes not processed to process +20201023 yes not processed to process +20201029 yes not processed to process +20201104 yes not processed to process +20201110 yes not processed to process +20201116 yes not processed to process +20201122 yes not processed to process +20201128 yes not processed to process +20201204 yes not processed to process +20201210 yes not processed to process +20201216 yes not processed to process +20201222 yes not processed to process +20201228 yes not processed to process +20210103 yes not processed to process +20210109 yes not processed to process +20210115 yes not processed to process +20210121 yes not processed to process +20210127 yes not processed to process +20210202 yes not processed to process +20210208 yes not processed to process +20210214 yes not processed to process +20210220 yes not processed to process +20210226 yes not processed to process +20210304 yes not processed to process +20210310 yes not processed to process +20210316 yes not processed to process +20210322 yes not processed to process +20210328 yes not processed to process +20210403 yes not processed to process +20210409 yes not processed to process +20210415 yes not processed to process +20210421 yes not processed to process +20210427 yes not processed to process +20210503 yes not processed to process +20210509 yes not processed to process +20210515 yes not processed to process +20210521 yes not processed to process +20210527 yes not processed to process +20210602 yes not processed to process +20210608 yes not processed to process +20210614 yes not processed to process +20210620 yes not processed to process +20210626 yes not processed to process +20210702 yes not processed to process +20210708 yes not processed to process +20210714 yes not processed to process +20210720 yes not processed to process +20210726 yes not processed to process +20210801 yes not processed to process +20210807 yes not processed to process +20210813 yes not processed to process +20210819 yes not processed to process +20210825 yes not processed to process +20210831 yes not processed to process +20210906 yes not processed to process +20210912 yes not processed to process +LiCSAlert status: 1) Run ICASAR: True 2) Run LiCSAlert: True + +Running ICASAR. +From the data passed to ICASAR, I understand it to be spatial data (e.g. time series of images) +As 'lons' and 'lats' have been provided, the ICs will be geocoded. +Spatial patterns will be statitically independent and The cumulative (single master) interferograms will be used. +Creating all possible variations of the time series (incremental/daisy chain, cumulative, and all possible). +When creating all interferograms, 59 were passed to the function, and these were found to make 1 connected networks. From these, 1000 interferograms were created. +This interferogram timeseries has 59 times and 8533 pixels. +This interferogram timeseries has 1000 times and 8533 pixels. +This interferogram timeseries has 59 times and 8533 pixels. +Performing PCA to whiten the data....Starting to create the 02_PCA_sources_correlations figure: +Updating masks and ICA sources. Of the 8533 in the 1st set of sources and 8278 in the 2nd set of sources, 8270 are in both and can be used in the following step. + Starting to calculate the 2D kernel density estimates for the signals. Completed 0 1 2 3 4 + + Starting to calculate the 2D kernel density estimates for the signals. Completed 0 1 2 3 4 + +Done. +No results were found for the multiple ICA runs, so these will now be performed. +FastICA progress with bootstrapping: FastICA algorithm didn't converge in 149 iterations. +0% FastICA algorithm converged in 5 iterations. +0% FastICA algorithm converged in 9 iterations. +1% FastICA algorithm converged in 6 iterations. +1% FastICA algorithm converged in 4 iterations. +2% FastICA algorithm converged in 6 iterations. +2% FastICA algorithm converged in 4 iterations. +3% FastICA algorithm converged in 11 iterations. +3% FastICA algorithm converged in 7 iterations. +4% FastICA algorithm converged in 6 iterations. +4% FastICA algorithm converged in 7 iterations. +5% FastICA algorithm converged in 4 iterations. +5% FastICA algorithm converged in 5 iterations. +6% FastICA algorithm converged in 6 iterations. +6% FastICA algorithm didn't converge in 149 iterations. +6% FastICA algorithm converged in 6 iterations. +7% FastICA algorithm converged in 10 iterations. +7% FastICA algorithm converged in 12 iterations. +8% FastICA algorithm converged in 7 iterations. +8% FastICA algorithm converged in 6 iterations. +9% FastICA algorithm converged in 15 iterations. +9% FastICA algorithm converged in 4 iterations. +10% FastICA algorithm converged in 5 iterations. +10% FastICA algorithm didn't converge in 149 iterations. +10% FastICA algorithm converged in 8 iterations. +11% FastICA algorithm converged in 5 iterations. +11% FastICA algorithm converged in 6 iterations. +12% FastICA algorithm converged in 4 iterations. +12% FastICA algorithm converged in 6 iterations. +13% FastICA algorithm converged in 18 iterations. +13% FastICA algorithm converged in 6 iterations. +14% FastICA algorithm converged in 6 iterations. +14% FastICA algorithm didn't converge in 149 iterations. +14% FastICA algorithm converged in 6 iterations. +15% FastICA algorithm converged in 12 iterations. +15% FastICA algorithm didn't converge in 149 iterations. +15% FastICA algorithm didn't converge in 149 iterations. +15% FastICA algorithm converged in 11 iterations. +16% FastICA algorithm converged in 12 iterations. +16% FastICA algorithm didn't converge in 149 iterations. +16% FastICA algorithm converged in 7 iterations. +17% FastICA algorithm converged in 3 iterations. +17% FastICA algorithm converged in 7 iterations. +18% FastICA algorithm converged in 21 iterations. +18% FastICA algorithm converged in 6 iterations. +19% FastICA algorithm didn't converge in 149 iterations. +19% FastICA algorithm didn't converge in 149 iterations. +19% FastICA algorithm converged in 18 iterations. +19% FastICA algorithm converged in 6 iterations. +20% FastICA algorithm converged in 4 iterations. +20% FastICA algorithm converged in 7 iterations. +21% FastICA algorithm converged in 9 iterations. +21% FastICA algorithm converged in 6 iterations. +22% FastICA algorithm converged in 6 iterations. +22% FastICA algorithm converged in 6 iterations. +23% FastICA algorithm converged in 4 iterations. +23% FastICA algorithm converged in 10 iterations. +24% FastICA algorithm converged in 5 iterations. +24% FastICA algorithm converged in 9 iterations. +25% FastICA algorithm converged in 17 iterations. +25% FastICA algorithm converged in 5 iterations. +26% FastICA algorithm converged in 17 iterations. +26% FastICA algorithm converged in 3 iterations. +27% FastICA algorithm converged in 21 iterations. +27% FastICA algorithm converged in 6 iterations. +28% FastICA algorithm converged in 17 iterations. +28% FastICA algorithm converged in 5 iterations. +28% FastICA algorithm didn't converge in 149 iterations. +28% FastICA algorithm converged in 4 iterations. +29% FastICA algorithm converged in 15 iterations. +30% FastICA algorithm converged in 39 iterations. +30% FastICA algorithm converged in 4 iterations. +31% FastICA algorithm converged in 104 iterations. +31% FastICA algorithm converged in 9 iterations. +32% FastICA algorithm converged in 7 iterations. +32% FastICA algorithm converged in 4 iterations. +33% FastICA algorithm converged in 30 iterations. +33% FastICA algorithm didn't converge in 149 iterations. +33% FastICA algorithm converged in 49 iterations. +34% FastICA algorithm converged in 6 iterations. +34% FastICA algorithm converged in 9 iterations. +35% FastICA algorithm converged in 9 iterations. +35% FastICA algorithm converged in 4 iterations. +36% FastICA algorithm converged in 11 iterations. +36% FastICA algorithm converged in 10 iterations. +37% FastICA algorithm converged in 13 iterations. +37% FastICA algorithm converged in 12 iterations. +38% FastICA algorithm converged in 4 iterations. +38% FastICA algorithm converged in 68 iterations. +39% FastICA algorithm converged in 13 iterations. +39% FastICA algorithm didn't converge in 149 iterations. +39% FastICA algorithm converged in 4 iterations. +40% FastICA algorithm converged in 8 iterations. +40% FastICA algorithm converged in 6 iterations. +41% FastICA algorithm converged in 27 iterations. +41% FastICA algorithm converged in 7 iterations. +42% FastICA algorithm didn't converge in 149 iterations. +42% FastICA algorithm converged in 13 iterations. +42% FastICA algorithm converged in 3 iterations. +43% FastICA algorithm converged in 5 iterations. +43% FastICA algorithm didn't converge in 149 iterations. +43% FastICA algorithm converged in 4 iterations. +44% FastICA algorithm converged in 6 iterations. +44% FastICA algorithm converged in 5 iterations. +45% FastICA algorithm didn't converge in 149 iterations. +45% FastICA algorithm converged in 146 iterations. +45% FastICA algorithm converged in 5 iterations. +46% FastICA algorithm converged in 5 iterations. +46% FastICA algorithm converged in 6 iterations. +47% FastICA algorithm converged in 5 iterations. +47% FastICA algorithm converged in 6 iterations. +48% FastICA algorithm converged in 20 iterations. +48% FastICA algorithm converged in 8 iterations. +49% FastICA algorithm converged in 18 iterations. +49% FastICA algorithm converged in 40 iterations. +50% FastICA algorithm converged in 8 iterations. +50% FastICA algorithm converged in 15 iterations. +51% FastICA algorithm converged in 10 iterations. +51% FastICA algorithm converged in 46 iterations. +52% FastICA algorithm converged in 12 iterations. +52% FastICA algorithm converged in 8 iterations. +53% FastICA algorithm converged in 22 iterations. +53% FastICA algorithm converged in 62 iterations. +54% FastICA algorithm converged in 8 iterations. +54% FastICA algorithm converged in 3 iterations. +55% FastICA algorithm converged in 6 iterations. +55% FastICA algorithm converged in 6 iterations. +56% FastICA algorithm converged in 13 iterations. +56% FastICA algorithm converged in 7 iterations. +56% FastICA algorithm converged in 50 iterations. +57% FastICA algorithm converged in 12 iterations. +57% FastICA algorithm converged in 4 iterations. +58% FastICA algorithm converged in 10 iterations. +59% FastICA algorithm converged in 15 iterations. +59% FastICA algorithm converged in 10 iterations. +60% FastICA algorithm converged in 4 iterations. +60% FastICA algorithm converged in 32 iterations. +61% FastICA algorithm converged in 6 iterations. +61% FastICA algorithm converged in 58 iterations. +62% FastICA algorithm didn't converge in 149 iterations. +62% FastICA algorithm converged in 5 iterations. +62% FastICA algorithm converged in 7 iterations. +63% FastICA algorithm converged in 84 iterations. +63% FastICA algorithm converged in 7 iterations. +64% FastICA algorithm didn't converge in 149 iterations. +64% FastICA algorithm converged in 8 iterations. +64% FastICA algorithm converged in 6 iterations. +65% FastICA algorithm converged in 94 iterations. +65% FastICA algorithm converged in 7 iterations. +66% FastICA algorithm converged in 43 iterations. +66% FastICA algorithm converged in 5 iterations. +67% FastICA algorithm converged in 9 iterations. +67% FastICA algorithm converged in 4 iterations. +68% FastICA algorithm didn't converge in 149 iterations. +68% FastICA algorithm converged in 57 iterations. +68% FastICA algorithm converged in 19 iterations. +69% FastICA algorithm didn't converge in 149 iterations. +69% FastICA algorithm converged in 3 iterations. +69% FastICA algorithm converged in 9 iterations. +70% FastICA algorithm converged in 6 iterations. +70% FastICA algorithm converged in 4 iterations. +71% FastICA algorithm converged in 9 iterations. +71% FastICA algorithm converged in 6 iterations. +72% FastICA algorithm converged in 8 iterations. +72% FastICA algorithm converged in 17 iterations. +73% FastICA algorithm converged in 17 iterations. +73% FastICA algorithm didn't converge in 149 iterations. +73% FastICA algorithm didn't converge in 149 iterations. +73% FastICA algorithm converged in 7 iterations. +74% FastICA algorithm converged in 20 iterations. +74% FastICA algorithm converged in 8 iterations. +75% FastICA algorithm converged in 15 iterations. +75% FastICA algorithm converged in 19 iterations. +76% FastICA algorithm converged in 4 iterations. +76% FastICA algorithm converged in 10 iterations. +77% FastICA algorithm converged in 3 iterations. +77% FastICA algorithm converged in 14 iterations. +78% FastICA algorithm converged in 8 iterations. +78% FastICA algorithm converged in 38 iterations. +79% FastICA algorithm converged in 46 iterations. +79% FastICA algorithm didn't converge in 149 iterations. +79% FastICA algorithm didn't converge in 149 iterations. +79% FastICA algorithm converged in 4 iterations. +80% FastICA algorithm converged in 9 iterations. +80% FastICA algorithm converged in 5 iterations. +81% FastICA algorithm didn't converge in 149 iterations. +81% FastICA algorithm converged in 5 iterations. +81% FastICA algorithm converged in 4 iterations. +82% FastICA algorithm didn't converge in 149 iterations. +82% FastICA algorithm converged in 11 iterations. +82% FastICA algorithm converged in 9 iterations. +83% FastICA algorithm converged in 24 iterations. +83% FastICA algorithm converged in 16 iterations. +84% FastICA algorithm converged in 46 iterations. +84% FastICA algorithm converged in 10 iterations. +85% FastICA algorithm converged in 5 iterations. +85% FastICA algorithm converged in 16 iterations. +86% FastICA algorithm converged in 4 iterations. +86% FastICA algorithm converged in 6 iterations. +87% FastICA algorithm converged in 8 iterations. +87% FastICA algorithm converged in 6 iterations. +88% FastICA algorithm converged in 8 iterations. +88% FastICA algorithm didn't converge in 149 iterations. +88% FastICA algorithm converged in 3 iterations. +89% FastICA algorithm converged in 82 iterations. +89% FastICA algorithm converged in 8 iterations. +90% FastICA algorithm converged in 14 iterations. +90% FastICA algorithm converged in 5 iterations. +91% FastICA algorithm converged in 4 iterations. +91% FastICA algorithm converged in 7 iterations. +92% FastICA algorithm converged in 73 iterations. +92% FastICA algorithm converged in 10 iterations. +93% FastICA algorithm didn't converge in 149 iterations. +93% FastICA algorithm converged in 7 iterations. +93% FastICA algorithm didn't converge in 149 iterations. +93% FastICA algorithm converged in 26 iterations. +94% FastICA algorithm converged in 4 iterations. +94% FastICA algorithm didn't converge in 149 iterations. +94% FastICA algorithm converged in 6 iterations. +95% FastICA algorithm converged in 10 iterations. +95% FastICA algorithm converged in 5 iterations. +96% FastICA algorithm converged in 5 iterations. +96% FastICA algorithm converged in 4 iterations. +97% FastICA algorithm converged in 133 iterations. +97% FastICA algorithm converged in 7 iterations. +98% FastICA algorithm converged in 26 iterations. +98% FastICA algorithm didn't converge in 149 iterations. +98% FastICA algorithm converged in 19 iterations. +99% FastICA algorithm converged in 64 iterations. +99% FastICA algorithm converged in 6 iterations. +100% +Starting to compute the pairwise distance matrices....Done! +Starting to cluster the sources using HDBSCAN....Done! +Starting to calculate the 2D manifold representation....Done! +Calculating the centrotypes and associated time courses...Done! +Starting to create the 03_ICA_sources_correlations figure: +Updating masks and ICA sources. Of the 8533 in the 1st set of sources and 8278 in the 2nd set of sources, 8270 are in both and can be used in the following step. + Starting to calculate the 2D kernel density estimates for the signals. Completed 0 1 2 3 4 + + Starting to calculate the 2D kernel density estimates for the signals. Completed 0 1 2 3 4 + +Done. +Creating a Google Earth .kmz of the geocoded independent components... Done! + + +Source 0: deformation +Source 1: turbulent_APS +Source 2: topo_cor_APS +Source 3: turbulent_APS +Source 4: turbulent_APS + + +Saving the key results as a .pkl file... Done! +Updating masks and ICA sources. Of the 8533 in the sources and 8533 in the current LiCSBAS time series, 8533 are in both and can be used in this iteration of LiCSAlert. +Running LiCSAlert for 20170112 +There are 59 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 1 in ifgs_monitoring. +Running LiCSAlert for 20170118 +There are 60 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 2 in ifgs_monitoring. +Running LiCSAlert for 20170124 +There are 61 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 3 in ifgs_monitoring. +Running LiCSAlert for 20170130 +There are 62 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 4 in ifgs_monitoring. +Running LiCSAlert for 20170205 +There are 63 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 5 in ifgs_monitoring. +Running LiCSAlert for 20170211 +There are 64 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 6 in ifgs_monitoring. +Running LiCSAlert for 20170223 +There are 65 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 7 in ifgs_monitoring. +Running LiCSAlert for 20170301 +There are 66 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 8 in ifgs_monitoring. +Running LiCSAlert for 20170307 +There are 67 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 9 in ifgs_monitoring. +Running LiCSAlert for 20170313 +There are 68 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 10 in ifgs_monitoring. +Running LiCSAlert for 20170319 +There are 69 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 11 in ifgs_monitoring. +Running LiCSAlert for 20170325 +There are 70 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 12 in ifgs_monitoring. +Running LiCSAlert for 20170331 +There are 71 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 13 in ifgs_monitoring. +Running LiCSAlert for 20170406 +There are 72 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 14 in ifgs_monitoring. +Running LiCSAlert for 20170412 +There are 73 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 15 in ifgs_monitoring. +Running LiCSAlert for 20170418 +There are 74 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 16 in ifgs_monitoring. +Running LiCSAlert for 20170424 +There are 75 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 17 in ifgs_monitoring. +Running LiCSAlert for 20170430 +There are 76 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 18 in ifgs_monitoring. +Running LiCSAlert for 20170506 +There are 77 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 19 in ifgs_monitoring. +Running LiCSAlert for 20170512 +There are 78 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 20 in ifgs_monitoring. +Running LiCSAlert for 20170518 +There are 79 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 21 in ifgs_monitoring. +Running LiCSAlert for 20170524 +There are 80 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 22 in ifgs_monitoring. +Running LiCSAlert for 20170530 +There are 81 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 23 in ifgs_monitoring. +Running LiCSAlert for 20170605 +There are 82 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 24 in ifgs_monitoring. +Running LiCSAlert for 20170611 +There are 83 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 25 in ifgs_monitoring. +Running LiCSAlert for 20170617 +There are 84 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 26 in ifgs_monitoring. +Running LiCSAlert for 20170623 +There are 85 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 27 in ifgs_monitoring. +Running LiCSAlert for 20170629 +There are 86 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 28 in ifgs_monitoring. +Running LiCSAlert for 20170705 +There are 87 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 29 in ifgs_monitoring. +Running LiCSAlert for 20170711 +There are 88 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 30 in ifgs_monitoring. +Running LiCSAlert for 20170717 +There are 89 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 31 in ifgs_monitoring. +Running LiCSAlert for 20170723 +There are 90 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 32 in ifgs_monitoring. +Running LiCSAlert for 20170729 +There are 91 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 33 in ifgs_monitoring. +Running LiCSAlert for 20170804 +There are 92 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 34 in ifgs_monitoring. +Running LiCSAlert for 20170816 +There are 93 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 35 in ifgs_monitoring. +Running LiCSAlert for 20170822 +There are 94 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 36 in ifgs_monitoring. +Running LiCSAlert for 20170828 +There are 95 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 37 in ifgs_monitoring. +Running LiCSAlert for 20170903 +There are 96 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 38 in ifgs_monitoring. +Running LiCSAlert for 20170909 +There are 97 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 39 in ifgs_monitoring. +Running LiCSAlert for 20170915 +There are 98 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 40 in ifgs_monitoring. +Running LiCSAlert for 20170921 +There are 99 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 41 in ifgs_monitoring. +Running LiCSAlert for 20170927 +There are 100 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 42 in ifgs_monitoring. +Running LiCSAlert for 20171009 +There are 101 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 43 in ifgs_monitoring. +Running LiCSAlert for 20171015 +There are 102 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 44 in ifgs_monitoring. +Running LiCSAlert for 20171021 +There are 103 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 45 in ifgs_monitoring. +Running LiCSAlert for 20171027 +There are 104 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 46 in ifgs_monitoring. +Running LiCSAlert for 20171102 +There are 105 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 47 in ifgs_monitoring. +Running LiCSAlert for 20171108 +There are 106 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 48 in ifgs_monitoring. +Running LiCSAlert for 20171114 +There are 107 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 49 in ifgs_monitoring. +Running LiCSAlert for 20171120 +There are 108 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 50 in ifgs_monitoring. +Running LiCSAlert for 20171202 +There are 109 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 51 in ifgs_monitoring. +Running LiCSAlert for 20171208 +There are 110 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 52 in ifgs_monitoring. +Running LiCSAlert for 20171214 +There are 111 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 53 in ifgs_monitoring. +Running LiCSAlert for 20171226 +There are 112 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 54 in ifgs_monitoring. +Running LiCSAlert for 20180101 +There are 113 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 55 in ifgs_monitoring. +Running LiCSAlert for 20180107 +There are 114 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 56 in ifgs_monitoring. +Running LiCSAlert for 20180113 +There are 115 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 57 in ifgs_monitoring. +Running LiCSAlert for 20180119 +There are 116 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 58 in ifgs_monitoring. +Running LiCSAlert for 20180125 +There are 117 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 59 in ifgs_monitoring. +Running LiCSAlert for 20180131 +There are 118 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 60 in ifgs_monitoring. +Running LiCSAlert for 20180206 +There are 119 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 61 in ifgs_monitoring. +Running LiCSAlert for 20180218 +There are 120 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 62 in ifgs_monitoring. +Running LiCSAlert for 20180224 +There are 121 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 63 in ifgs_monitoring. +Running LiCSAlert for 20180302 +There are 122 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 64 in ifgs_monitoring. +Running LiCSAlert for 20180308 +There are 123 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 65 in ifgs_monitoring. +Running LiCSAlert for 20180314 +There are 124 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 66 in ifgs_monitoring. +Running LiCSAlert for 20180320 +There are 125 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 67 in ifgs_monitoring. +Running LiCSAlert for 20180326 +There are 126 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 68 in ifgs_monitoring. +Running LiCSAlert for 20180401 +There are 127 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 69 in ifgs_monitoring. +Running LiCSAlert for 20180407 +There are 128 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 70 in ifgs_monitoring. +Running LiCSAlert for 20180413 +There are 129 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 71 in ifgs_monitoring. +Running LiCSAlert for 20180419 +There are 130 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 72 in ifgs_monitoring. +Running LiCSAlert for 20180425 +There are 131 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 73 in ifgs_monitoring. +Running LiCSAlert for 20180501 +There are 132 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 74 in ifgs_monitoring. +Running LiCSAlert for 20180507 +There are 133 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 75 in ifgs_monitoring. +Running LiCSAlert for 20180513 +There are 134 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 76 in ifgs_monitoring. +Running LiCSAlert for 20180519 +There are 135 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 77 in ifgs_monitoring. +Running LiCSAlert for 20180525 +There are 136 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 78 in ifgs_monitoring. +Running LiCSAlert for 20180531 +There are 137 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 79 in ifgs_monitoring. +Running LiCSAlert for 20180606 +There are 138 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 80 in ifgs_monitoring. +Running LiCSAlert for 20180612 +There are 139 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 81 in ifgs_monitoring. +Running LiCSAlert for 20180618 +There are 140 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 82 in ifgs_monitoring. +Running LiCSAlert for 20180630 +There are 141 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 83 in ifgs_monitoring. +Running LiCSAlert for 20180712 +There are 142 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 84 in ifgs_monitoring. +Running LiCSAlert for 20180718 +There are 143 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 85 in ifgs_monitoring. +Running LiCSAlert for 20180724 +There are 144 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 86 in ifgs_monitoring. +Running LiCSAlert for 20180730 +There are 145 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 87 in ifgs_monitoring. +Running LiCSAlert for 20180805 +There are 146 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 88 in ifgs_monitoring. +Running LiCSAlert for 20180811 +There are 147 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 89 in ifgs_monitoring. +Running LiCSAlert for 20180817 +There are 148 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 90 in ifgs_monitoring. +Running LiCSAlert for 20180823 +There are 149 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 91 in ifgs_monitoring. +Running LiCSAlert for 20180829 +There are 150 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 92 in ifgs_monitoring. +Running LiCSAlert for 20180904 +There are 151 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 93 in ifgs_monitoring. +Running LiCSAlert for 20180910 +There are 152 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 94 in ifgs_monitoring. +Running LiCSAlert for 20180916 +There are 153 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 95 in ifgs_monitoring. +Running LiCSAlert for 20180922 +There are 154 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 96 in ifgs_monitoring. +Running LiCSAlert for 20180928 +There are 155 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 97 in ifgs_monitoring. +Running LiCSAlert for 20181004 +There are 156 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 98 in ifgs_monitoring. +Running LiCSAlert for 20181010 +There are 157 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 99 in ifgs_monitoring. +Running LiCSAlert for 20181016 +There are 158 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 100 in ifgs_monitoring. +Running LiCSAlert for 20181022 +There are 159 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 101 in ifgs_monitoring. +Running LiCSAlert for 20181028 +There are 160 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 102 in ifgs_monitoring. +Running LiCSAlert for 20181109 +There are 161 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 103 in ifgs_monitoring. +Running LiCSAlert for 20181115 +There are 162 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 104 in ifgs_monitoring. +Running LiCSAlert for 20181121 +There are 163 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 105 in ifgs_monitoring. +Running LiCSAlert for 20181127 +There are 164 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 106 in ifgs_monitoring. +Running LiCSAlert for 20181203 +There are 165 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 107 in ifgs_monitoring. +Running LiCSAlert for 20181209 +There are 166 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 108 in ifgs_monitoring. +Running LiCSAlert for 20181215 +There are 167 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 109 in ifgs_monitoring. +Running LiCSAlert for 20181221 +There are 168 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 110 in ifgs_monitoring. +Running LiCSAlert for 20181227 +There are 169 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 111 in ifgs_monitoring. +Running LiCSAlert for 20190102 +There are 170 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 112 in ifgs_monitoring. +Running LiCSAlert for 20190108 +There are 171 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 113 in ifgs_monitoring. +Running LiCSAlert for 20190114 +There are 172 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 114 in ifgs_monitoring. +Running LiCSAlert for 20190120 +There are 173 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 115 in ifgs_monitoring. +Running LiCSAlert for 20190126 +There are 174 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 116 in ifgs_monitoring. +Running LiCSAlert for 20190201 +There are 175 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 117 in ifgs_monitoring. +Running LiCSAlert for 20190207 +There are 176 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 118 in ifgs_monitoring. +Running LiCSAlert for 20190213 +There are 177 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 119 in ifgs_monitoring. +Running LiCSAlert for 20190225 +There are 178 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 120 in ifgs_monitoring. +Running LiCSAlert for 20190303 +There are 179 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 121 in ifgs_monitoring. +Running LiCSAlert for 20190309 +There are 180 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 122 in ifgs_monitoring. +Running LiCSAlert for 20190321 +There are 181 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 123 in ifgs_monitoring. +Running LiCSAlert for 20190402 +There are 182 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 124 in ifgs_monitoring. +Running LiCSAlert for 20190408 +There are 183 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 125 in ifgs_monitoring. +Running LiCSAlert for 20190414 +There are 184 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 126 in ifgs_monitoring. +Running LiCSAlert for 20190420 +There are 185 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 127 in ifgs_monitoring. +Running LiCSAlert for 20190426 +There are 186 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 128 in ifgs_monitoring. +Running LiCSAlert for 20190502 +There are 187 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 129 in ifgs_monitoring. +Running LiCSAlert for 20190508 +There are 188 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 130 in ifgs_monitoring. +Running LiCSAlert for 20190520 +There are 189 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 131 in ifgs_monitoring. +Running LiCSAlert for 20190526 +There are 190 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 132 in ifgs_monitoring. +Running LiCSAlert for 20190601 +There are 191 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 133 in ifgs_monitoring. +Running LiCSAlert for 20190607 +There are 192 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 134 in ifgs_monitoring. +Running LiCSAlert for 20190613 +There are 193 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 135 in ifgs_monitoring. +Running LiCSAlert for 20190625 +There are 194 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 136 in ifgs_monitoring. +Running LiCSAlert for 20190701 +There are 195 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 137 in ifgs_monitoring. +Running LiCSAlert for 20190707 +There are 196 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 138 in ifgs_monitoring. +Running LiCSAlert for 20190713 +There are 197 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 139 in ifgs_monitoring. +Running LiCSAlert for 20190719 +There are 198 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 140 in ifgs_monitoring. +Running LiCSAlert for 20190725 +There are 199 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 141 in ifgs_monitoring. +Running LiCSAlert for 20190731 +There are 200 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 142 in ifgs_monitoring. +Running LiCSAlert for 20190806 +There are 201 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 143 in ifgs_monitoring. +Running LiCSAlert for 20190812 +There are 202 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 144 in ifgs_monitoring. +Running LiCSAlert for 20190818 +There are 203 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 145 in ifgs_monitoring. +Running LiCSAlert for 20190824 +There are 204 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 146 in ifgs_monitoring. +Running LiCSAlert for 20190830 +There are 205 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 147 in ifgs_monitoring. +Running LiCSAlert for 20190905 +There are 206 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 148 in ifgs_monitoring. +Running LiCSAlert for 20190911 +There are 207 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 149 in ifgs_monitoring. +Running LiCSAlert for 20190917 +There are 208 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 150 in ifgs_monitoring. +Running LiCSAlert for 20190923 +There are 209 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 151 in ifgs_monitoring. +Running LiCSAlert for 20191005 +There are 210 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 152 in ifgs_monitoring. +Running LiCSAlert for 20191011 +There are 211 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 153 in ifgs_monitoring. +Running LiCSAlert for 20191017 +There are 212 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 154 in ifgs_monitoring. +Running LiCSAlert for 20191023 +There are 213 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 155 in ifgs_monitoring. +Running LiCSAlert for 20191029 +There are 214 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 156 in ifgs_monitoring. +Running LiCSAlert for 20191104 +There are 215 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 157 in ifgs_monitoring. +Running LiCSAlert for 20191116 +There are 216 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 158 in ifgs_monitoring. +Running LiCSAlert for 20191122 +There are 217 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 159 in ifgs_monitoring. +Running LiCSAlert for 20191128 +There are 218 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 160 in ifgs_monitoring. +Running LiCSAlert for 20191204 +There are 219 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 161 in ifgs_monitoring. +Running LiCSAlert for 20191210 +There are 220 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 162 in ifgs_monitoring. +Running LiCSAlert for 20191216 +There are 221 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 163 in ifgs_monitoring. +Running LiCSAlert for 20191222 +There are 222 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 164 in ifgs_monitoring. +Running LiCSAlert for 20191228 +There are 223 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 165 in ifgs_monitoring. +Running LiCSAlert for 20200103 +There are 224 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 166 in ifgs_monitoring. +Running LiCSAlert for 20200109 +There are 225 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 167 in ifgs_monitoring. +Running LiCSAlert for 20200115 +There are 226 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 168 in ifgs_monitoring. +Running LiCSAlert for 20200121 +There are 227 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 169 in ifgs_monitoring. +Running LiCSAlert for 20200127 +There are 228 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 170 in ifgs_monitoring. +Running LiCSAlert for 20200202 +There are 229 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 171 in ifgs_monitoring. +Running LiCSAlert for 20200208 +There are 230 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 172 in ifgs_monitoring. +Running LiCSAlert for 20200214 +There are 231 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 173 in ifgs_monitoring. +Running LiCSAlert for 20200220 +There are 232 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 174 in ifgs_monitoring. +Running LiCSAlert for 20200226 +There are 233 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 175 in ifgs_monitoring. +Running LiCSAlert for 20200303 +There are 234 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 176 in ifgs_monitoring. +Running LiCSAlert for 20200309 +There are 235 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 177 in ifgs_monitoring. +Running LiCSAlert for 20200315 +There are 236 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 178 in ifgs_monitoring. +Running LiCSAlert for 20200321 +There are 237 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 179 in ifgs_monitoring. +Running LiCSAlert for 20200402 +There are 238 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 180 in ifgs_monitoring. +Running LiCSAlert for 20200408 +There are 239 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 181 in ifgs_monitoring. +Running LiCSAlert for 20200414 +There are 240 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 182 in ifgs_monitoring. +Running LiCSAlert for 20200420 +There are 241 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 183 in ifgs_monitoring. +Running LiCSAlert for 20200426 +There are 242 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 184 in ifgs_monitoring. +Running LiCSAlert for 20200502 +There are 243 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 185 in ifgs_monitoring. +Running LiCSAlert for 20200508 +There are 244 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 186 in ifgs_monitoring. +Running LiCSAlert for 20200514 +There are 245 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 187 in ifgs_monitoring. +Running LiCSAlert for 20200520 +There are 246 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 188 in ifgs_monitoring. +Running LiCSAlert for 20200526 +There are 247 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 189 in ifgs_monitoring. +Running LiCSAlert for 20200601 +There are 248 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 190 in ifgs_monitoring. +Running LiCSAlert for 20200607 +There are 249 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 191 in ifgs_monitoring. +Running LiCSAlert for 20200613 +There are 250 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 192 in ifgs_monitoring. +Running LiCSAlert for 20200619 +There are 251 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 193 in ifgs_monitoring. +Running LiCSAlert for 20200625 +There are 252 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 194 in ifgs_monitoring. +Running LiCSAlert for 20200701 +There are 253 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 195 in ifgs_monitoring. +Running LiCSAlert for 20200707 +There are 254 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 196 in ifgs_monitoring. +Running LiCSAlert for 20200713 +There are 255 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 197 in ifgs_monitoring. +Running LiCSAlert for 20200719 +There are 256 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 198 in ifgs_monitoring. +Running LiCSAlert for 20200725 +There are 257 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 199 in ifgs_monitoring. +Running LiCSAlert for 20200731 +There are 258 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 200 in ifgs_monitoring. +Running LiCSAlert for 20200806 +There are 259 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 201 in ifgs_monitoring. +Running LiCSAlert for 20200812 +There are 260 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 202 in ifgs_monitoring. +Running LiCSAlert for 20200818 +There are 261 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 203 in ifgs_monitoring. +Running LiCSAlert for 20200824 +There are 262 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 204 in ifgs_monitoring. +Running LiCSAlert for 20200830 +There are 263 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 205 in ifgs_monitoring. +Running LiCSAlert for 20200905 +There are 264 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 206 in ifgs_monitoring. +Running LiCSAlert for 20200911 +There are 265 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 207 in ifgs_monitoring. +Running LiCSAlert for 20200917 +There are 266 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 208 in ifgs_monitoring. +Running LiCSAlert for 20200923 +There are 267 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 209 in ifgs_monitoring. +Running LiCSAlert for 20200929 +There are 268 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 210 in ifgs_monitoring. +Running LiCSAlert for 20201005 +There are 269 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 211 in ifgs_monitoring. +Running LiCSAlert for 20201011 +There are 270 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 212 in ifgs_monitoring. +Running LiCSAlert for 20201017 +There are 271 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 213 in ifgs_monitoring. +Running LiCSAlert for 20201023 +There are 272 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 214 in ifgs_monitoring. +Running LiCSAlert for 20201029 +There are 273 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 215 in ifgs_monitoring. +Running LiCSAlert for 20201104 +There are 274 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 216 in ifgs_monitoring. +Running LiCSAlert for 20201110 +There are 275 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 217 in ifgs_monitoring. +Running LiCSAlert for 20201116 +There are 276 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 218 in ifgs_monitoring. +Running LiCSAlert for 20201122 +There are 277 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 219 in ifgs_monitoring. +Running LiCSAlert for 20201128 +There are 278 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 220 in ifgs_monitoring. +Running LiCSAlert for 20201204 +There are 279 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 221 in ifgs_monitoring. +Running LiCSAlert for 20201210 +There are 280 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 222 in ifgs_monitoring. +Running LiCSAlert for 20201216 +There are 281 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 223 in ifgs_monitoring. +Running LiCSAlert for 20201222 +There are 282 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 224 in ifgs_monitoring. +Running LiCSAlert for 20201228 +There are 283 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 225 in ifgs_monitoring. +Running LiCSAlert for 20210103 +There are 284 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 226 in ifgs_monitoring. +Running LiCSAlert for 20210109 +There are 285 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 227 in ifgs_monitoring. +Running LiCSAlert for 20210115 +There are 286 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 228 in ifgs_monitoring. +Running LiCSAlert for 20210121 +There are 287 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 229 in ifgs_monitoring. +Running LiCSAlert for 20210127 +There are 288 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 230 in ifgs_monitoring. +Running LiCSAlert for 20210202 +There are 289 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 231 in ifgs_monitoring. +Running LiCSAlert for 20210208 +There are 290 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 232 in ifgs_monitoring. +Running LiCSAlert for 20210214 +There are 291 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 233 in ifgs_monitoring. +Running LiCSAlert for 20210220 +There are 292 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 234 in ifgs_monitoring. +Running LiCSAlert for 20210226 +There are 293 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 235 in ifgs_monitoring. +Running LiCSAlert for 20210304 +There are 294 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 236 in ifgs_monitoring. +Running LiCSAlert for 20210310 +There are 295 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 237 in ifgs_monitoring. +Running LiCSAlert for 20210316 +There are 296 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 238 in ifgs_monitoring. +Running LiCSAlert for 20210322 +There are 297 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 239 in ifgs_monitoring. +Running LiCSAlert for 20210328 +There are 298 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 240 in ifgs_monitoring. +Running LiCSAlert for 20210403 +There are 299 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 241 in ifgs_monitoring. +Running LiCSAlert for 20210409 +There are 300 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 242 in ifgs_monitoring. +Running LiCSAlert for 20210415 +There are 301 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 243 in ifgs_monitoring. +Running LiCSAlert for 20210421 +There are 302 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 244 in ifgs_monitoring. +Running LiCSAlert for 20210427 +There are 303 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 245 in ifgs_monitoring. +Running LiCSAlert for 20210503 +There are 304 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 246 in ifgs_monitoring. +Running LiCSAlert for 20210509 +There are 305 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 247 in ifgs_monitoring. +Running LiCSAlert for 20210515 +There are 306 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 248 in ifgs_monitoring. +Running LiCSAlert for 20210521 +There are 307 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 249 in ifgs_monitoring. +Running LiCSAlert for 20210527 +There are 308 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 250 in ifgs_monitoring. +Running LiCSAlert for 20210602 +There are 309 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 251 in ifgs_monitoring. +Running LiCSAlert for 20210608 +There are 310 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 252 in ifgs_monitoring. +Running LiCSAlert for 20210614 +There are 311 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 253 in ifgs_monitoring. +Running LiCSAlert for 20210620 +There are 312 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 254 in ifgs_monitoring. +Running LiCSAlert for 20210626 +There are 313 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 255 in ifgs_monitoring. +Running LiCSAlert for 20210702 +There are 314 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 256 in ifgs_monitoring. +Running LiCSAlert for 20210708 +There are 315 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 257 in ifgs_monitoring. +Running LiCSAlert for 20210714 +There are 316 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 258 in ifgs_monitoring. +Running LiCSAlert for 20210720 +There are 317 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 259 in ifgs_monitoring. +Running LiCSAlert for 20210726 +There are 318 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 260 in ifgs_monitoring. +Running LiCSAlert for 20210801 +There are 319 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 261 in ifgs_monitoring. +Running LiCSAlert for 20210807 +There are 320 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 262 in ifgs_monitoring. +Running LiCSAlert for 20210813 +There are 321 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 263 in ifgs_monitoring. +Running LiCSAlert for 20210819 +There are 322 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 264 in ifgs_monitoring. +Running LiCSAlert for 20210825 +There are 323 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 265 in ifgs_monitoring. +Running LiCSAlert for 20210831 +There are 324 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 266 in ifgs_monitoring. +Running LiCSAlert for 20210906 +There are 325 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 267 in ifgs_monitoring. +Running LiCSAlert for 20210912 +There are 326 times (set by time_values), which agrees with the 58 interferograms in ifgs_baseline and 268 in ifgs_monitoring. diff --git a/campi_flegrei_example_all_times/aux_figures/DEM.png b/campi_flegrei_example_all_times/aux_figures/DEM.png new file mode 100644 index 00000000..bd6361c2 Binary files /dev/null and b/campi_flegrei_example_all_times/aux_figures/DEM.png differ diff --git a/campi_flegrei_example_all_times/aux_figures/IC_0.png b/campi_flegrei_example_all_times/aux_figures/IC_0.png new file mode 100644 index 00000000..a3a499cb Binary files /dev/null and b/campi_flegrei_example_all_times/aux_figures/IC_0.png differ diff --git a/campi_flegrei_example_all_times/aux_figures/IC_1.png b/campi_flegrei_example_all_times/aux_figures/IC_1.png new file mode 100644 index 00000000..370cd360 Binary files /dev/null and b/campi_flegrei_example_all_times/aux_figures/IC_1.png differ diff --git a/campi_flegrei_example_all_times/aux_figures/IC_2.png b/campi_flegrei_example_all_times/aux_figures/IC_2.png new file mode 100644 index 00000000..08dba751 Binary files /dev/null and b/campi_flegrei_example_all_times/aux_figures/IC_2.png differ diff --git a/campi_flegrei_example_all_times/aux_figures/IC_3.png b/campi_flegrei_example_all_times/aux_figures/IC_3.png new file mode 100644 index 00000000..4801091a Binary files /dev/null and b/campi_flegrei_example_all_times/aux_figures/IC_3.png differ diff --git a/campi_flegrei_example_all_times/aux_figures/IC_4.png b/campi_flegrei_example_all_times/aux_figures/IC_4.png new file mode 100644 index 00000000..71491e6a Binary files /dev/null and b/campi_flegrei_example_all_times/aux_figures/IC_4.png differ diff --git a/licsalert/downsample_ifgs.py b/licsalert/downsample_ifgs.py index 8a0f1b56..526d12d2 100755 --- a/licsalert/downsample_ifgs.py +++ b/licsalert/downsample_ifgs.py @@ -5,7 +5,9 @@ @author: matthew """ +import pdb +#%% def downsample_ifgs(ifgs, mask, scale = 0.1, verbose = True): """ A function to take ifgs as row vectors (and their associated mask) and return them downsampled (for fast plotting) @@ -20,6 +22,7 @@ def downsample_ifgs(ifgs, mask, scale = 0.1, verbose = True): 2018/03/?? | MEG | written 2018/07/09 | MEG | update skimage.transform.rescale arguments to supress warnings. 2020/03/08 | MEG | Major rewrite to deal with smearing/interpolating of the masks when using integer instead of boolean values. + 2023_04_04 | MEG | change rescale for scikit image 0.19 (remove multichannel boolean set to False as rescale now assuming single channel) """ import numpy as np @@ -38,7 +41,7 @@ def downsample_ifgs(ifgs, mask, scale = 0.1, verbose = True): n_ifgs = np.size(ifgs, axis = 0) # get no. of ifgs # 3: Downsample the mask, and make sure it stays boolean - mask_ds = rescale(mask, scale, multichannel = False, anti_aliasing = False).astype(bool) + mask_ds = rescale(mask, scale, anti_aliasing = False).astype(bool) n_pixels_ds = np.sum(np.logical_not(mask_ds)) # get number of pixels that are not masked if verbose: @@ -48,7 +51,7 @@ def downsample_ifgs(ifgs, mask, scale = 0.1, verbose = True): ifgs_ds = np.zeros((n_ifgs, n_pixels_ds)) # initiate array to store rows for i, single_ifg in enumerate(ifgs): # loop through each ifg (which is a row) ifg_ma = col_to_ma(single_ifg, mask) # make into a rank 2 masked array - ifg_rescale = rescale(ifg_ma, scale, multichannel = False, anti_aliasing = False) # rescale, no longer a ma + ifg_rescale = rescale(ifg_ma, scale, anti_aliasing = False) # rescale, no longer a ma ifg_rescale_ma = ma.array(ifg_rescale, mask = mask_ds) # convert back to ma ifgs_ds[i,:] = ma.compressed(ifg_rescale_ma) # back to being a row vector diff --git a/licsalert/licsalert.py b/licsalert/licsalert.py index a1746959..fe91f52f 100644 --- a/licsalert/licsalert.py +++ b/licsalert/licsalert.py @@ -1108,7 +1108,7 @@ def LiCSAlert_preprocessing(displacement_r2, downsample_run=1.0, downsample_plot # 4: and also downsample other simple data if it's included: for product in ['dem', 'E', 'N', 'U']: if product in displacement_r2.keys(): - displacement_r2[product] = rescale(displacement_r2[product], downsample_run, multichannel = False, anti_aliasing = False) # do the rescaling + displacement_r2[product] = rescale(displacement_r2[product], downsample_run, anti_aliasing = False) # do the rescaling print(f"Interferogram were originally {shape_start} ({n_pixs_start} unmasked pixels), " @@ -1364,3 +1364,38 @@ def remappedColorMap(cmap, start=0, midpoint=0.5, stop=1.0, name='shiftedcmap'): newcmap = matplotlib.colors.LinearSegmentedColormap(name, cdict) #plt.register_cmap(cmap=newcmap) return newcmap + + +#%% + + + +def write_volcano_status(sources_tcs_baseline, residual_tcs_baseline, ics_labels, txt_out_dir): + """ For each time step, write a 2 line text file that contains the number of sigmas from the line of best fit that the + deformation source is (change in existing deformation) and that the residual is (new deformation). + Inputs: + sources_tcs_baseline | list of dicts | from the licsalert function + residual_tcs_baseline | list of dicts | from the licsalert function + ics_labels | dict | something like this: {'source_names': ['deformation', 'topo_cor_APS', 'turbulent_APS'], 'labels': array([[1., 0., 0.], [0., 1., 0.], [0., 0., 1.]])} + txt_out_dir | Path | pathlib Path to write file to. + + Returns: + text file. First row is change in def, second row is new def. + + History: + 2023_04_04 | MEG | Written + """ + import numpy as np + + # calculate change in def status + def_col_n = ics_labels['source_names'].index('deformation') # get which column of the one hot encoding related to deformation + def_ic_n = np.argwhere(ics_labels['labels'][:, def_col_n] == 1)[0][0] # look in that column to find which source number (row) has 1 (ie is positive) + def_n_sigmas = sources_tcs_baseline[def_ic_n]['distances'][-1] # get the last distance (n sigmas from the line of best fit) for the dformation source + + # calculate new def status + new_n_sigmas = residual_tcs_baseline[0]['distances'][-1] # get the last distance (n sigmas from the line of best fit) for the residual (there is only one residual so index with 0) + + with open(txt_out_dir / 'volcano_status.txt', 'w') as f: + f.write(f"{def_n_sigmas[0]}\n") + f.write(f"{new_n_sigmas[0]}\n") + \ No newline at end of file diff --git a/licsalert/monitoring_functions.py b/licsalert/monitoring_functions.py index e29cd0ee..5a35e53b 100644 --- a/licsalert/monitoring_functions.py +++ b/licsalert/monitoring_functions.py @@ -10,9 +10,9 @@ #%% def LiCSAlert_monitoring_mode(region, volcano, LiCSAlert_pkg_dir, ICASAR_pkg_dir, licsalert_dir, - licsbas_dir = None, licsbas_jasmin_dir = None, + licsbas_dir = None, licsbas_jasmin_dir = None, data_as_arg = None, licsalert_settings = None, icasar_settings = None, - figure_type = 'png', figure_intermediate = True): + figure_intermediate = True): """The main function for running LiCSAlert is monitoring mode. It was designed to work with LiCSAR interferograms, but could be used with any product that creates interfegorams that LiCSBAS can use (which is used for the time series calculation. ) @@ -24,8 +24,13 @@ def LiCSAlert_monitoring_mode(region, volcano, LiCSAlert_pkg_dir, ICASAR_pkg_dir LiCSAlert_pkg_dir | string | Path to folder containing LiCSAlert functions. ICASAR_pkg_dir | string | Path to folder containing ICASAR functions. - licsbas_dir - licsalert_dir + Three options to pass data to the function: + licsbas_dir + licsalert_dir + data_as_arg | dict of dicts | displacement_r2: dict_keys(['dem', 'cumulative', 'mask', 'incremental', 'lons', 'lats']) + tbaseline_info: dict_keys(['acq_dates', 'ifg_dates', 'baselines', 'baselines_cumulative']) + If there are 327 acq dates (as per the example), there are 327 ifg_dates (as these are the short + temporal baseline ifgs joining the acquisitions, ) licsalert_settings icasar_settings @@ -50,8 +55,6 @@ def LiCSAlert_monitoring_mode(region, volcano, LiCSAlert_pkg_dir, ICASAR_pkg_dir from datetime import datetime import numpy.ma as ma - from licsalert.plotting import LiCSAlert_aux_figures, plot_1_image - def create_licsalert_outdir(outdir): """This directory may already exist (if processing was done but errors occured). Make it again if so. @@ -75,12 +78,13 @@ def append_licsbas_date_to_file(licsalert_dir, region, volcano, licsbas_json_cre if str(ICASAR_pkg_dir) not in sys.path: # check if already on path sys.path.append(str(ICASAR_pkg_dir)) # and if not, add - from licsalert.licsalert import LiCSAlert_preprocessing, LiCSAlert, LiCSAlert_figure, shorten_LiCSAlert_data + from licsalert.licsalert import LiCSAlert_preprocessing, LiCSAlert, LiCSAlert_figure, shorten_LiCSAlert_data, write_volcano_status #from monitoring_functions import read_config_file, detect_new_ifgs, update_mask_sources_ifgs, record_mask_changes from licsalert.aux import compare_two_dates, Tee from licsalert.downsample_ifgs import downsample_ifgs + from licsalert.plotting import plot_mask_changes, LiCSAlert_aux_figures, plot_1_image + - # 1: Log all outputs to a file for that volcano: if region == None: volcano_dir = licsalert_dir / volcano @@ -103,23 +107,29 @@ def append_licsbas_date_to_file(licsalert_dir, region, volcano, licsbas_json_cre LiCSAlert_settings = {} ICASAR_settings = {} - for arg, arg_setting in licsalert_settings.items(): # loop through them - LiCSAlert_settings[arg] = arg_setting # and apply - for arg, arg_setting in icasar_settings.items(): - ICASAR_settings[arg] = arg_setting - if "figures" in icasar_settings.keys(): # this should be set only one for the hwole of licsalert - print(f"Updating the ICASAR figure setting to that set for LiCSAlert") # warn that updating, if it already exisits. - ICASAR_settings['figures'] = figure_type # update + if licsalert_settings is not None: + for arg, arg_setting in licsalert_settings.items(): # loop through them + LiCSAlert_settings[arg] = arg_setting # and apply + if icasar_settings is not None: + for arg, arg_setting in icasar_settings.items(): + ICASAR_settings[arg] = arg_setting + ICASAR_settings['figures'] = LiCSAlert_settings['figure_type'] # alwyas the same as for LiCSAlert del licsalert_settings, icasar_settings - # 3: Open the licsbas data and determine licsalert status + # 3: Open the the input data, which can be in various formats (3 so far) if licsbas_jasmin_dir is not None: + print(f"LiCSAlert is opening a JASMIN COMET Volcano Portal timeseries json file. ") displacement_r2, _, tbaseline_info, ref_xy, licsbas_json_creation_time = LiCSBAS_json_to_LiCSAlert(licsbas_jasmin_dir / region / f"{volcano}.json") # open the .json LiCSBAS data for this volcano - else: + elif licsbas_dir is not None: + print(f"LiCSAlert is opening a LiCSBAS directory. ") import icasar from icasar.icasar_funcs import LiCSBAS_to_ICASAR displacement_r2, tbaseline_info, _ = LiCSBAS_to_ICASAR(licsbas_dir, figures=True, filtered = False, n_cols=5, # open various LiCSBAS products, spatial ones in displacement_r2, temporal ones in tbaseline_info crop_pixels = None, return_r3 = False, ref_area = True, mask_type = 'dem') + else: + print(f"LiCSAlert is using data that was passed to the function as an argument ") + displacement_r2 = data_as_arg['displacement_r2'] + tbaseline_info = data_as_arg["tbaseline_info"] @@ -127,7 +137,10 @@ def append_licsbas_date_to_file(licsalert_dir, region, volcano, licsbas_json_cre if licsbas_jasmin_dir is not None: append_licsbas_date_to_file(licsalert_dir, region, volcano, licsbas_json_creation_time) # append licsbas .json file date to list of file dates used (in the text file for each volano) del licsbas_json_creation_time # delete for safety - del displacement_r2['cumulative'] # this is not needed and is deleted for safety. + try: + del displacement_r2['cumulative'] # this is not needed and is deleted for safety. + except: + pass displacement_r2 = LiCSAlert_preprocessing(displacement_r2, LiCSAlert_settings['downsample_run'], LiCSAlert_settings['downsample_plot']) # mean centre and downsize the data LiCSAlert_status = run_LiCSAlert_status(tbaseline_info['acq_dates'], volcano_dir, LiCSAlert_settings['baseline_end'], LiCSAlert_settings['figure_intermediate']) # NOTE volcano_dir used to be licsalert_dir / region / volcano. determine the LiCSAlert status for this volcano (ie do we need to run ICASAR, is the time series up to date etc. ) print(f"LiCSAlert status: 1) Run ICASAR: {LiCSAlert_status['run_ICASAR']} 2) Run LiCSAlert: {LiCSAlert_status['run_LiCSAlert']}") @@ -136,11 +149,11 @@ def append_licsbas_date_to_file(licsalert_dir, region, volcano, licsbas_json_cre if LiCSAlert_status['run_LiCSAlert']: # if LiCSAlert will be run... # 4a: either load or make the ICs (from icasar) - icasar_sources, icasar_mask, LiCSAlert_settings['baseline_end_ifg_n'] = load_or_create_ICASAR_results(LiCSAlert_status['run_ICASAR'], displacement_r2, tbaseline_info, # either load or create the ICASAR sources - LiCSAlert_settings['baseline_end'], volcano_dir / "ICASAR_results", ICASAR_settings) - + icasar_sources, icasar_mask, LiCSAlert_settings['baseline_end_ifg_n'], ics_labels = load_or_create_ICASAR_results(LiCSAlert_status['run_ICASAR'], displacement_r2, tbaseline_info, # either load or create the ICASAR sources + LiCSAlert_settings['baseline_end'], volcano_dir / "ICASAR_results", ICASAR_settings) # 4b: Deal with changes to the mask of pixels licsbas_mask = displacement_r2['mask'] # make a copy of the licsbas mask before it gets overwritten with the new combined mask + displacement_r2['incremental'], icasar_sources, displacement_r2['mask'] = update_mask_sources_ifgs(icasar_mask, icasar_sources, # comapres the mask for the ICs and the mask for the current ifgs and finds a set of pixels that are present in both displacement_r2['mask'], displacement_r2['incremental']) # the new mask overwrites the mask in displacement_r2 @@ -151,29 +164,34 @@ def append_licsbas_date_to_file(licsalert_dir, region, volcano, licsbas_json_cre for processing_date in LiCSAlert_status['to_process']: # print(f"Running LiCSAlert for {processing_date}") ifg_n = tbaseline_info['acq_dates'].index(processing_date) # instead of working in dates, switch this to ifg_n in the sorted interferograms. + create_licsalert_outdir(volcano_dir / processing_date) # Create a folder (YYYYMMDD) for the outputs. - record_mask_changes(icasar_mask, licsbas_mask, displacement_r2['mask'], tbaseline_info['acq_dates'][-1], volcano_dir / processing_date) # create a figure showing the masks (licsbas, icasar, and combined) + plot_mask_changes(icasar_mask, licsbas_mask, displacement_r2['mask'], tbaseline_info['acq_dates'][-1], volcano_dir / processing_date, + figure_type = LiCSAlert_settings['figure_type']) # create a figure showing the masks (licsbas, icasar, and combined) # 6c: LiCSAlert - displacement_r2_current = shorten_LiCSAlert_data(displacement_r2, n_end=ifg_n + 1) # get the ifgs available for this loop (ie one more is added each time the loop progresses), + 1 as indexing and want to include this data - cumulative_baselines_current = tbaseline_info['baselines_cumulative'][:ifg_n + 1] # also get current time values. +1 as indexing and want to include this data - + displacement_r2_current = shorten_LiCSAlert_data(displacement_r2, n_end=ifg_n ) # get the ifgs available for this loop (ie one more is added each time the loop progresses), + 1 as indexing and want to include this data + cumulative_baselines_current = tbaseline_info['baselines_cumulative'][:ifg_n ] # also get current time values. +1 as indexing and want to include this data + sources_tcs_baseline, residual_tcs_baseline, reconstructions, residuals = LiCSAlert(icasar_sources, cumulative_baselines_current, # the LiCSAlert algoirthm, using the sources with the combined mask (sources_mask_combined) - ifgs_baseline = displacement_r2_current['incremental'][:(LiCSAlert_settings['baseline_end_ifg_n']+1),], # baseline ifgs - ifgs_monitoring = displacement_r2_current['incremental'][(LiCSAlert_settings['baseline_end_ifg_n']+1):,], # monitoring ifgs + ifgs_baseline = displacement_r2_current['incremental'][:(LiCSAlert_settings['baseline_end_ifg_n']),], # baseline ifgs + ifgs_monitoring = displacement_r2_current['incremental'][(LiCSAlert_settings['baseline_end_ifg_n']):,], # monitoring ifgs mask = displacement_r2_current['mask'], t_recalculate=10, verbose=False) # recalculate lines of best fit every 10 acquisitions - # 6d LiCAlert figure - # LiCSAlert_figure(sources_tcs_baseline, residual_tcs_baseline, icasar_sources, displacement_r2_current, LiCSAlert_settings['baseline_end_ifg_n'], # creat the LiCSAlert figure - # cumulative_baselines_current, figure_type = figure_type, figure_out_dir = volcano_dir / processing_date, day0_date = tbaseline_info['acq_dates'][0]) + + + # 6d LiCAlert figure + LiCSAlert_figure(sources_tcs_baseline, residual_tcs_baseline, icasar_sources, displacement_r2_current, LiCSAlert_settings['baseline_end_ifg_n'], # creat the LiCSAlert figure + cumulative_baselines_current, figure_type = LiCSAlert_settings['figure_type'], figure_out_dir = volcano_dir / processing_date, day0_date = tbaseline_info['acq_dates'][0]) - LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, - figure_type = figure_type, figure_out_dir = volcano_dir / processing_date) # plot the zoom in figures for last cumulative ifg, incremetnal ifg, incremental reconstrution and incremental residual - - if processing_date == LiCSAlert_status['to_process'][-1]: # if it's the last date possible.... - save_licsalert_products(displacement_r2['dem'], sources_tcs_baseline, residual_tcs_baseline, volcano_dir / processing_date, # save some useful outputs, - remove_others = True, acq_dates = tbaseline_info['acq_dates'] ) # and clean up by removing this file from other dates (as we only need the last one) - + LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, tbaseline_info, # create the figures of the zoomed in parts of the LiCSAlert figure + figure_type = LiCSAlert_settings['figure_type'], figure_out_dir = volcano_dir / processing_date) + + write_volcano_status(sources_tcs_baseline, residual_tcs_baseline, ics_labels, volcano_dir / processing_date) # write the change in def / new def text file. + if processing_date == LiCSAlert_status['to_process'][-1]: # if it's the last date possible.... + save_licsalert_products(displacement_r2['dem'], sources_tcs_baseline, residual_tcs_baseline, volcano_dir / processing_date, # save some useful outputs, + remove_others = True, acq_dates = tbaseline_info['acq_dates'] ) # and clean up by removing this file from other dates (as we only need the last one) + # if the last figure, also plot the aux figures. aux_fig_dir = volcano_dir / "aux_figures" aux_fig_dir.mkdir(parents=True, exist_ok=True) @@ -686,7 +704,7 @@ def get_LiCSAlert_required_dates(LiCSAR_dates, date_baseline_end): run_ICASAR = True # The folder exisits, but the important file doesn't, so ICASAR still needs to be run # 5: Determine which dates have been processed, processed with errors, or processing is pending. - for unneeded_folder in ['LiCSBAS', 'ICASAR_results']: # these folders get caught in the dates list, but aren't dates so need to be deleted. + for unneeded_folder in ['LiCSBAS', 'ICASAR_results', 'aux_figures']: # these folders get caught in the dates list, but aren't dates so need to be deleted. try: LiCSAlert_dates.remove(unneeded_folder) # note that the LiCSBAS folder also gets caught by this, and needs removing as it's not a date. except: @@ -767,6 +785,16 @@ def read_config_file(config_file): LiCSAlert_settings['downsample_run'] = float(config.get('LiCSAlert', 'downsample_run')) # 3 LiCSAlert settings LiCSAlert_settings['downsample_plot'] = float(config.get('LiCSAlert', 'downsample_plot')) LiCSAlert_settings['baseline_end'] = str(config.get('LiCSAlert', 'baseline_end')) + status_string = config.get('LiCSAlert', 'figure_intermediate') + if status_string == 'True': + LiCSAlert_settings['figure_intermediate'] = True + elif status_string == ' False': + LiCSAlert_settings['figure_intermediate'] = True + else: + print(f"The LiCSAlert setting figure_intermediate was not understood in the config file, so setting it to True. ") + LiCSAlert_settings['figure_intermediate'] = True + LiCSAlert_settings['figure_type'] = config.get('LiCSAlert', 'figure_type') + ICASAR_settings['n_comp'] = int(config.get('ICASAR', 'n_comp')) # 4: ICASAR settings n_bootstrapped = int(config.get('ICASAR', 'n_bootstrapped')) @@ -785,14 +813,9 @@ def read_config_file(config_file): ica_max_iterations = int(config.get('ICASAR', 'ica_max_iterations')) ICASAR_settings['ica_param'] = (ica_tolerance, ica_max_iterations) - status_string = config.get('ICASAR', 'create_all_ifgs_flag') - if status_string == 'True': - ICASAR_settings['create_all_ifgs_flag'] = True - elif status_string == ' False': - ICASAR_settings['create_all_ifgs_flag'] = True - else: - print(f"create_all_ifgs_flag was not understood, so setting it to True. ") - ICASAR_settings['create_all_ifgs_flag'] = True + ICASAR_settings['ifgs_format'] = config.get('ICASAR', 'ifgs_format') + + return LiCSAlert_settings, ICASAR_settings @@ -813,8 +836,12 @@ def load_or_create_ICASAR_results(run_ICASAR, displacement_r2, tbaseline_info, b acq_dates | list of strings | dates of each Sentinel-1 acquisition. Returns: icasar_sources | rank 2 array | sources as row vectors + mask_sources + baseline_end_ifg_n + label_sources_output | ? | Dict of one hot encoding of labels (defo / topo correlated atmosphere / turbulent atmsophere) History: 2021_10_15 | MEG | Written. + 2023_04_03 | MEG | Add return of ICASAR label_sources_output """ from licsalert.aux import get_baseline_end_ifg_n import icasar @@ -833,9 +860,12 @@ def load_or_create_ICASAR_results(run_ICASAR, displacement_r2, tbaseline_info, b if 'dem' in displacement_r2.keys(): spatial_ICASAR_data['dem'] = displacement_r2['dem'] - sources, tcs, residual, Iq, n_clusters, S_all_info, r2_ifg_means = ICASAR(spatial_data = spatial_ICASAR_data, # Run ICASAR (slow)) - out_folder = out_dir, **ICASAR_settings, - ica_verbose = 'short') + if ICASAR_settings['figures'] == 'both': + ICASAR_settings['figures'] = 'png+window' # update licsalert name to ICASAR name. + + sources, tcs, residual, Iq, n_clusters, S_all_info, r2_ifg_means, ics_labels = ICASAR(spatial_data = spatial_ICASAR_data, # Run ICASAR (slow)) + out_folder = out_dir, **ICASAR_settings, + ica_verbose = 'short', label_sources = True) mask_sources = displacement_r2['mask'] # rename a copy of the mask else: @@ -846,9 +876,12 @@ def load_or_create_ICASAR_results(run_ICASAR, displacement_r2, tbaseline_info, b source_residuals = pickle.load(f_icasar) Iq_sorted = pickle.load(f_icasar) n_clusters = pickle.load(f_icasar) + xy_tsne = pickle.load(f_icasar) # not used + labels_hdbscan = pickle.load(f_icasar) # not used + ics_labels = pickle.load(f_icasar) f_icasar.close() - return sources, mask_sources, baseline_end_ifg_n + return sources, mask_sources, baseline_end_ifg_n, ics_labels @@ -914,43 +947,6 @@ def apply_new_mask(ifgs, mask_old, mask_new): return ifgs_new_mask, sources_new_mask, mask_both -#%% - -def record_mask_changes(icasar_mask, licsbas_mask, mask_combined, licsbas_date, current_output_dir): - """ Create a .png showing the licsbas mask, the ICASAR mask, and the current combined mask (ie the pixels in both). - - Inputs: - icasar_mask | r2 array | the mask used by ICASAR - licsbas_mask | r2 array | the mask produced by the last run of LiCSBAS - mask_combined | r2 array | the mask that removes any pixels that aren't in bothh the sources and the ifgs - licsbas_date | string | the date that LiCSAlert is being run to. - current_output_dir | Path | the folder that LiCSALert is currently outputting to - Returns: - .png figure - History: - 2020/06/25 | MEG | Written - 2020/07/01 | MEG | Major rewrite to suit directory based structure. - 2020/07/03 | MEG | continue major rewrite, and write docs. - 2021_10_20 | MEG Simplify for LiCSAlert 2.0 - """ - import matplotlib.pyplot as plt - - title = f"LiCSBAS_last_date_{licsbas_date}" - - # 1 Figure showing the masks - f1,axes = plt.subplots(1,3, figsize = (12,6)) - axes[0].imshow(icasar_mask) - axes[0].set_title('(ICASAR) sources mask') - axes[1].imshow(licsbas_mask) - axes[1].set_title('LiCSBAS mask') - axes[2].imshow(mask_combined) - axes[2].set_title('Current combined mask') - f1.suptitle(title) - - f1.canvas.manager.set_window_title(title) - f1.savefig(current_output_dir / "mask_status.png", bbox_inches='tight') - plt.close(f1) - #%% def save_licsalert_products(dem, sources_tcs_baseline, residual_tcs_baseline, outdir, remove_others = True, acq_dates = None): diff --git a/licsalert/plotting.py b/licsalert/plotting.py index 81e0a559..ef95496a 100644 --- a/licsalert/plotting.py +++ b/licsalert/plotting.py @@ -33,7 +33,6 @@ def LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, t import matplotlib.pyplot as plt from licsalert.aux import col_to_ma - # 0 Check matplotlib backend is set correctly if figure_type == 'png': plt.switch_backend('Agg') # works when there is no X11 forwarding, and when displaying plots during creation would be annoying. @@ -55,14 +54,15 @@ def LiCSAlert_aux_figures(displacement_r2_current, reconstructions, residuals, t plot_1_image(residuals[:, -1], displacement_r2_current['mask'], f"04_residual_{inc_ifg_date}", figure_type, figure_out_dir) - if plt.get_backend() != 'Qt5Agg': # check if we need to reset the backend (to interactive window) - plt.switch_backend('Qt5Agg') + # if plt.get_backend() != 'Qt5Agg': # check if we need to reset the backend (to interactive window) + # plt.switch_backend('Qt5Agg') #%% def plot_1_image(im_r1, mask, title, figure_type, figure_out_dir, figsize = (18,9)): - """ + """Plot a single image (column or row vector) when also given its mask. + """ import matplotlib.pyplot as plt from licsalert.aux import col_to_ma @@ -76,5 +76,51 @@ def plot_1_image(im_r1, mask, title, figure_type, figure_out_dir, figsize = (18, if (figure_type == 'png') or (figure_type == 'both'): f.savefig(figure_out_dir / f"{title}.png", bbox_inches='tight') + # if figure_type == 'png': + # plt.close(f) + + +#%% + + +def plot_mask_changes(icasar_mask, licsbas_mask, mask_combined, licsbas_date, current_output_dir, figure_type): + """ Create a .png showing the licsbas mask, the ICASAR mask, and the current combined mask (ie the pixels in both). + + Inputs: + icasar_mask | r2 array | the mask used by ICASAR + licsbas_mask | r2 array | the mask produced by the last run of LiCSBAS + mask_combined | r2 array | the mask that removes any pixels that aren't in bothh the sources and the ifgs + licsbas_date | string | the date that LiCSAlert is being run to. + current_output_dir | Path | the folder that LiCSALert is currently outputting to + Returns: + .png figure + History: + 2020/06/25 | MEG | Written + 2020/07/01 | MEG | Major rewrite to suit directory based structure. + 2020/07/03 | MEG | continue major rewrite, and write docs. + 2021_10_20 | MEG Simplify for LiCSAlert 2.0 + """ + import matplotlib.pyplot as plt + + # 0 Check matplotlib backend is set correctly if figure_type == 'png': - plt.close(f) \ No newline at end of file + plt.switch_backend('Agg') # works when there is no X11 forwarding, and when displaying plots during creation would be annoying. + else: + if plt.get_backend() != 'Qt5Agg': # check what the backend is + plt.switch_backend('Qt5Agg') # and switch to interactive if it wasn't already. + + title = f"LiCSBAS_last_date_{licsbas_date}" + + # 1 Figure showing the masks + f1,axes = plt.subplots(1,3, figsize = (12,6)) + axes[0].imshow(icasar_mask) + axes[0].set_title('(ICASAR) sources mask') + axes[1].imshow(licsbas_mask) + axes[1].set_title('LiCSBAS mask') + axes[2].imshow(mask_combined) + axes[2].set_title('Current combined mask') + f1.suptitle(title) + + f1.canvas.manager.set_window_title(title) + if (figure_type == 'png') or (figure_type == 'both'): + f1.savefig(current_output_dir / "mask_status.png", bbox_inches='tight')